public enum BoundType extends Enum<BoundType>
Enum Constant and Description |
---|
CLOSED
Represents a closed bound, which value is included in the
range.
|
OPEN
Represents an open bound, which value is not included in
the range.
|
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 © 2003–2014 The Apache Software Foundation. All rights reserved.