public static enum IntervalConstraint.IntervalBoundary extends Enum<IntervalConstraint.IntervalBoundary>
Enum Constant and Description |
---|
CLOSE
Closed interval boundary
|
OPEN
Open interval boundary
|
Modifier and Type | Method and Description |
---|---|
static IntervalConstraint.IntervalBoundary |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IntervalConstraint.IntervalBoundary[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IntervalConstraint.IntervalBoundary OPEN
public static final IntervalConstraint.IntervalBoundary CLOSE
public static IntervalConstraint.IntervalBoundary[] values()
for (IntervalConstraint.IntervalBoundary c : IntervalConstraint.IntervalBoundary.values()) System.out.println(c);
public static IntervalConstraint.IntervalBoundary 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 null