Package com.luciad.symbology.app6a.model
Enum Class TLcdEditableAPP6AObject.TextModifierType
java.lang.Object
java.lang.Enum<TLcdEditableAPP6AObject.TextModifierType>
com.luciad.symbology.app6a.model.TLcdEditableAPP6AObject.TextModifierType
- All Implemented Interfaces:
Serializable
,Comparable<TLcdEditableAPP6AObject.TextModifierType>
,Constable
- Enclosing class:
TLcdEditableAPP6AObject
public static enum TLcdEditableAPP6AObject.TextModifierType
extends Enum<TLcdEditableAPP6AObject.TextModifierType>
Describes the constraints of a modifier value.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionDenotes that any string is allowed.Denotes that the values "true" or "false" are allowed.Denotes that the value must be in the military symbology date format.Denotes that any double value is allowedDenotes that the value must be one of the values inTLcdEditableAPP6AObject.TextModifier.getPossibleValues()
Denotes that any integral number equal to or greater than zero is allowed. -
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
-
STRING_ANY
Denotes that any string is allowed. -
STRING_POSITIVE_INTEGER
Denotes that any integral number equal to or greater than zero is allowed. -
STRING_DOUBLE
Denotes that any double value is allowed- Since:
- 2018.2
-
STRING_BOOLEAN
Denotes that the values "true" or "false" are allowed. -
STRING_ENUM
Denotes that the value must be one of the values inTLcdEditableAPP6AObject.TextModifier.getPossibleValues()
-
STRING_DATE_TIME
Denotes that the value must be in the military symbology date format.- See Also:
-
-
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
-