@GwtCompatible public enum BoundType extends Enum<BoundType>
Enum Constant and Description |
---|
CLOSED |
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 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 nullCopyright © 2010–2018. All rights reserved.