Enum Class TLspCompositeCurveEditor.CurveConnectMode
java.lang.Object
java.lang.Enum<TLspCompositeCurveEditor.CurveConnectMode>
com.luciad.view.lightspeed.editor.TLspCompositeCurveEditor.CurveConnectMode
- All Implemented Interfaces:
Serializable
,Comparable<TLspCompositeCurveEditor.CurveConnectMode>
,Constable
- Enclosing class:
TLspCompositeCurveEditor
public static enum TLspCompositeCurveEditor.CurveConnectMode
extends Enum<TLspCompositeCurveEditor.CurveConnectMode>
Defines the various values used by the
CURVE_CONNECT
property key.
The values define how the editor should interact with its curve connector provider
.- 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 that the curve should be connected globally.Indicates that the curve should be connected locally.Indicates that the curve should not be connected. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
GLOBAL_CONNECT
Indicates that the curve should be connected globally. This will reconnect the entire curve, in both left and right directions, starting at a specific index. The specific index is defined separately.- See Also:
-
LOCAL_CONNECT
Indicates that the curve should be connected locally. This value will reconnect only a specific index with its previous curve. The specific index is defined separately.
This curve connect mode is used primarily for composite curve creation.- See Also:
-
NO_CONNECT
Indicates that the curve should not be connected. The curve connector will not be invoked.
-
-
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
-