Enum Class TLspArcBandEditor.HandleIdentifier
java.lang.Object
java.lang.Enum<TLspArcBandEditor.HandleIdentifier>
com.luciad.view.lightspeed.editor.TLspArcBandEditor.HandleIdentifier
- All Implemented Interfaces:
Serializable
,Comparable<TLspArcBandEditor.HandleIdentifier>
,Constable
- Enclosing class:
TLspArcBandEditor
public static enum TLspArcBandEditor.HandleIdentifier
extends Enum<TLspArcBandEditor.HandleIdentifier>
Describes a control point of an arc-by-3-points shape.
- 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 ConstantDescriptionIndicates the center of the arcband.Identifies the corner point at maximum radius and the end angle.Identifies the corner point at maximum radius and the start angle.Identifies the corner point at minimum radius and the end angle.Identifies the corner point at minimum radius and the start angle. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static TLspArcBandEditor.HandleIdentifier[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
MIN_RADIUS_START_CORNER
Identifies the corner point at minimum radius and the start angle. -
MAX_RADIUS_START_CORNER
Identifies the corner point at maximum radius and the start angle. -
MIN_RADIUS_END_CORNER
Identifies the corner point at minimum radius and the end angle. -
MAX_RADIUS_END_CORNER
Identifies the corner point at maximum radius and the end angle. -
CENTER_POINT
Indicates the center of the arcband.
-
-
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
-