com.supermap.mapping.dyn
Enum DynamicAlignment
- java.lang.Object
-
- java.lang.Enum<DynamicAlignment>
-
- com.supermap.mapping.dyn.DynamicAlignment
-
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<DynamicAlignment>
public enum DynamicAlignment extends java.lang.Enum<DynamicAlignment>
The Dynamic Object Alignment
-
-
Enum Constant Summary
Enum Constants Enum Constant and Description BOTTOM
BottomCENTER
CenterLEFT
LeftLEFT_BOTTOM
Bottom LeftLEFT_TOP
Top LeftRIGHT
RightRIGHT_BOTTOM
Bottom RightRIGHT_TOP
Top RightTOP
Top
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method and Description static DynamicAlignment
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DynamicAlignment[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LEFT_TOP
public static final DynamicAlignment LEFT_TOP
Top Left
-
TOP
public static final DynamicAlignment TOP
Top
-
RIGHT_TOP
public static final DynamicAlignment RIGHT_TOP
Top Right
-
LEFT
public static final DynamicAlignment LEFT
Left
-
RIGHT
public static final DynamicAlignment RIGHT
Right
-
LEFT_BOTTOM
public static final DynamicAlignment LEFT_BOTTOM
Bottom Left
-
BOTTOM
public static final DynamicAlignment BOTTOM
Bottom
-
RIGHT_BOTTOM
public static final DynamicAlignment RIGHT_BOTTOM
Bottom Right
-
CENTER
public static final DynamicAlignment CENTER
Center
-
-
Method Detail
-
values
public static DynamicAlignment[] 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 (DynamicAlignment c : DynamicAlignment.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DynamicAlignment 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
-
-