public static enum CDBRange.Interval extends Enum<CDBRange.Interval>
Enum Constant and Description |
---|
LEFT_OPEN |
OPEN |
RIGHT_OPEN |
Modifier and Type | Method and Description |
---|---|
static CDBRange.Interval |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CDBRange.Interval[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CDBRange.Interval OPEN
public static final CDBRange.Interval LEFT_OPEN
public static final CDBRange.Interval RIGHT_OPEN
public static CDBRange.Interval[] values()
for (CDBRange.Interval c : CDBRange.Interval.values()) System.out.println(c);
public static CDBRange.Interval 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 © 2018. All rights reserved.