public enum BoundingMode extends Enum<BoundingMode>
| Enum Constant and Description |
|---|
EXCLUSIVE_BOUNDS |
INCLUSIVE_BOUNDS |
INCLUSIVE_END_BOUND_ONLY |
INCLUSIVE_START_BOUND_ONLY |
| Modifier and Type | Method and Description |
|---|---|
static BoundingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BoundingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoundingMode INCLUSIVE_BOUNDS
public static final BoundingMode EXCLUSIVE_BOUNDS
public static final BoundingMode INCLUSIVE_START_BOUND_ONLY
public static final BoundingMode INCLUSIVE_END_BOUND_ONLY
public static BoundingMode[] values()
for (BoundingMode c : BoundingMode.values()) System.out.println(c);
public static BoundingMode 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 © 2012-2014. All Rights Reserved.