Enum Class ILcdTimeBounds.Boundedness

java.lang.Object
java.lang.Enum<ILcdTimeBounds.Boundedness>
com.luciad.shape.ILcdTimeBounds.Boundedness
All Implemented Interfaces:
Serializable, Comparable<ILcdTimeBounds.Boundedness>, Constable
Enclosing interface:
ILcdTimeBounds

public static enum ILcdTimeBounds.Boundedness extends Enum<ILcdTimeBounds.Boundedness>
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
  • Enum Constant Details

    • BOUNDED

      public static final ILcdTimeBounds.Boundedness BOUNDED
      Denotes that the object is bounded: it has a time setting.
    • UNBOUNDED

      public static final ILcdTimeBounds.Boundedness UNBOUNDED
      Denotes that the object is unbounded: it has always existed, or it will always exist.
    • UNDEFINED

      public static final ILcdTimeBounds.Boundedness UNDEFINED
      Denotes that the object is undefined: it has no time setting, or it is not (yet) initialized.
  • Method Details

    • values

      public static ILcdTimeBounds.Boundedness[] 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

      public static ILcdTimeBounds.Boundedness valueOf(String name)
      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 name
      NullPointerException - if the argument is null