Package org.kie.dmn.feel.lang.ast
Enum RangeNode.IntervalBoundary
- java.lang.Object
-
- java.lang.Enum<RangeNode.IntervalBoundary>
-
- org.kie.dmn.feel.lang.ast.RangeNode.IntervalBoundary
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<RangeNode.IntervalBoundary>
- Enclosing class:
- RangeNode
public static enum RangeNode.IntervalBoundary extends java.lang.Enum<RangeNode.IntervalBoundary>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RangeNode.IntervalBoundaryhigh(java.lang.String input)static RangeNode.IntervalBoundarylow(java.lang.String input)static RangeNode.IntervalBoundaryvalueOf(java.lang.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.
-
-
-
Enum Constant Detail
-
OPEN
public static final RangeNode.IntervalBoundary OPEN
-
CLOSED
public static final RangeNode.IntervalBoundary CLOSED
-
-
Method Detail
-
values
public static RangeNode.IntervalBoundary[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RangeNode.IntervalBoundary c : RangeNode.IntervalBoundary.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RangeNode.IntervalBoundary valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
low
public static RangeNode.IntervalBoundary low(java.lang.String input)
-
high
public static RangeNode.IntervalBoundary high(java.lang.String input)
-
-