@GwtCompatible public enum BoundType extends Enum<BoundType>
Indicates whether an endpoint of some range is contained in the range itself (“closed”) or not (“open”). If a range is unbounded on a side, it is neither open nor closed on that side; the bound simply does not exist.
| Enum Constant and Description |
|---|
CLOSED
The endpoint value is considered part of the set ("inclusive").
|
OPEN
The endpoint value is not considered part of the set ("exclusive").
|
| Modifier and Type | Method and Description |
|---|---|
static BoundType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BoundType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoundType OPEN
public static final BoundType CLOSED
public static BoundType[] values()
for (BoundType c : BoundType.values()) System.out.println(c);
public static BoundType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null