public enum BoundaryType extends java.lang.Enum<BoundaryType>
Enum Constant and Description |
---|
EXCLUSIVE
Range boundary is exclusive
|
INCLUSIVE
Range boundary is inclusive
|
OPEN
Range boundary is open
|
Modifier and Type | Method and Description |
---|---|
static BoundaryType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BoundaryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoundaryType OPEN
public static final BoundaryType INCLUSIVE
public static final BoundaryType EXCLUSIVE
public static BoundaryType[] values()
for (BoundaryType c : BoundaryType.values()) System.out.println(c);
public static BoundaryType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2006-2013 Amazon Technologies, Inc.. All Rights Reserved.