Package com.kakao.vectormap.label
Enum TransformMethod
- java.lang.Object
-
- java.lang.Enum<TransformMethod>
-
- com.kakao.vectormap.label.TransformMethod
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TransformMethod>
public enum TransformMethod extends java.lang.Enum<TransformMethod>
Label
의 translation, scale, rotation 의 변환을 주고 지도가 움직일 때 Label 이 어떤 자세를 유지할지 설정할 수 있는 클래스.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AbsoluteRotation
라벨의 고유한 특정 회전 방향을 유지한다.AbsoluteRotation_Decal
AbsoluteRotation
을 속성을 갖고, 지도에 붙이서 지도를 기울이면 같이 기울어 진다.AbsoluteRotation_KeepUpright
AbsoluteRotation
을 속성을 갖고, 텍스트가 항상 스크린의 위쪽 방향을 유지한다.Default
Label 에 기본적으로 적용되어 있다.Default_Decal
Default
을 속성을 갖고, 지도에 붙이서 지도를 기울이면 같이 기울어 진다.None
Default
와 같은 속성을 갖는다.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TransformMethod
getEnum(int value)
int
getValue()
static TransformMethod
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TransformMethod[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
None
public static final TransformMethod None
Default
와 같은 속성을 갖는다.
-
AbsoluteRotation
public static final TransformMethod AbsoluteRotation
라벨의 고유한 특정 회전 방향을 유지한다.
-
Default
public static final TransformMethod Default
Label 에 기본적으로 적용되어 있다. 라벨의 회전 값이 화면 스크린의 위쪽 방향을 유지한다.
-
AbsoluteRotation_KeepUpright
public static final TransformMethod AbsoluteRotation_KeepUpright
AbsoluteRotation
을 속성을 갖고, 텍스트가 항상 스크린의 위쪽 방향을 유지한다.
-
AbsoluteRotation_Decal
public static final TransformMethod AbsoluteRotation_Decal
AbsoluteRotation
을 속성을 갖고, 지도에 붙이서 지도를 기울이면 같이 기울어 진다.
-
Default_Decal
public static final TransformMethod Default_Decal
Default
을 속성을 갖고, 지도에 붙이서 지도를 기울이면 같이 기울어 진다.
-
-
Method Detail
-
values
public static TransformMethod[] 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 (TransformMethod c : TransformMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TransformMethod 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 namejava.lang.NullPointerException
- if the argument is null
-
getValue
public int getValue()
-
getEnum
public static TransformMethod getEnum(int value)
-
-