Enum CameraAnimation

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      Easing
      부드럽게 가감속되는 애니메이션.
      Fly
      플라잉 애니메이션.
      Linear
      선형 애니메이션.
      None
      애니메이션 없음.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static CameraAnimation valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static CameraAnimation[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • Linear

        public static final CameraAnimation Linear
        선형 애니메이션.
      • Easing

        public static final CameraAnimation Easing
        부드럽게 가감속되는 애니메이션.
      • Fly

        public static final CameraAnimation Fly
        플라잉 애니메이션. 가속과 함께 축소됐다가 감속과 함께 확대됩니다.
    • Method Detail

      • values

        public static CameraAnimation[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (CameraAnimation c : CameraAnimation.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static CameraAnimation valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null