public static enum RangeNode.IntervalBoundary extends Enum<RangeNode.IntervalBoundary>
Modifier and Type | Method and Description |
---|---|
static RangeNode.IntervalBoundary |
high(String input) |
static RangeNode.IntervalBoundary |
low(String input) |
static RangeNode.IntervalBoundary |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RangeNode.IntervalBoundary[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RangeNode.IntervalBoundary OPEN
public static final RangeNode.IntervalBoundary CLOSED
public static RangeNode.IntervalBoundary[] values()
for (RangeNode.IntervalBoundary c : RangeNode.IntervalBoundary.values()) System.out.println(c);
public static RangeNode.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 nullpublic static RangeNode.IntervalBoundary low(String input)
public static RangeNode.IntervalBoundary high(String input)
Copyright © 2001–2019 JBoss by Red Hat. All rights reserved.