Package com.luciad.shape
Enum Class ILcdTimeBounds.Boundedness
- All Implemented Interfaces:
Serializable
,Comparable<ILcdTimeBounds.Boundedness>
,Constable
- Enclosing interface:
ILcdTimeBounds
Describes the boundedness of an object:
-
BOUNDED
denotes that the object is bounded: it has a time setting; -
UNBOUNDED
denotes that the object is unbounded: it has always existed, or it will always exist; -
UNDEFINED
denotes that the object is undefined: it has no time setting, or it is not (yet) initialized.
- Since:
- 9.1
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic ILcdTimeBounds.Boundedness
Returns the enum constant of this class with the specified name.static ILcdTimeBounds.Boundedness[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BOUNDED
Denotes that the object is bounded: it has a time setting. -
UNBOUNDED
Denotes that the object is unbounded: it has always existed, or it will always exist. -
UNDEFINED
Denotes that the object is undefined: it has no time setting, or it is not (yet) initialized.
-
-
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
-