Enum Class Range.BoundType

java.lang.Object
java.lang.Enum<Range.BoundType>
com.landawn.abacus.util.Range.BoundType
All Implemented Interfaces:
Serializable, Comparable<Range.BoundType>, Constable
Enclosing class:
Range<T extends Comparable<? super T>>

public static enum Range.BoundType extends Enum<Range.BoundType>
The Enum BoundType.
  • Enum Constant Details

    • OPEN_OPEN

      public static final Range.BoundType OPEN_OPEN
      The open open.
    • OPEN_CLOSED

      public static final Range.BoundType OPEN_CLOSED
      The open closed.
    • CLOSED_OPEN

      public static final Range.BoundType CLOSED_OPEN
      The closed open.
    • CLOSED_CLOSED

      public static final Range.BoundType CLOSED_CLOSED
      The closed closed.
  • Method Details

    • values

      public static Range.BoundType[] 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 Range.BoundType 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