Enum Class TLspBoundsEditor.HandleIdentifier
java.lang.Object
java.lang.Enum<TLspBoundsEditor.HandleIdentifier>
com.luciad.view.lightspeed.editor.TLspBoundsEditor.HandleIdentifier
- All Implemented Interfaces:
Serializable
,Comparable<TLspBoundsEditor.HandleIdentifier>
,Constable
- Enclosing class:
TLspBoundsEditor
public static enum TLspBoundsEditor.HandleIdentifier
extends Enum<TLspBoundsEditor.HandleIdentifier>
Describes a control point of a bounds.
- Since:
- 2012.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionControl point that modifies the (minimum and maximum) height.Control point that modifies the maximum height.Control point that modifies the minimum height.The south-east control point of the bounds.The north-west control point of the bounds.The south-east control point of the bounds.The south-west control point of the bounds. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static TLspBoundsEditor.HandleIdentifier[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SOUTH_WEST
The south-west control point of the bounds. -
NORTH_WEST
The north-west control point of the bounds. -
NORTH_EAST
The south-east control point of the bounds. -
SOUTH_EAST
The south-east control point of the bounds. -
MAXIMUM_HEIGHT
Control point that modifies the maximum height. -
MINIMUM_HEIGHT
Control point that modifies the minimum height. -
HEIGHT
Control point that modifies the (minimum and maximum) height.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-