Package org.hpccsystems.commons.ecl
Enum FieldFilterRange.Bound
- java.lang.Object
-
- java.lang.Enum<FieldFilterRange.Bound>
-
- org.hpccsystems.commons.ecl.FieldFilterRange.Bound
-
- All Implemented Interfaces:
Serializable,Comparable<FieldFilterRange.Bound>
- Enclosing class:
- FieldFilterRange
public static enum FieldFilterRange.Bound extends Enum<FieldFilterRange.Bound> implements Serializable
The Lower, Upper, Both, Unbounded are the possibilities for bounding the range.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FieldFilterRange.BoundvalueOf(String name)Returns the enum constant of this type with the specified name.static FieldFilterRange.Bound[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOWER
public static final FieldFilterRange.Bound LOWER
-
UPPER
public static final FieldFilterRange.Bound UPPER
-
BOTH
public static final FieldFilterRange.Bound BOTH
-
NONE
public static final FieldFilterRange.Bound NONE
-
-
Method Detail
-
values
public static FieldFilterRange.Bound[] 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 (FieldFilterRange.Bound c : FieldFilterRange.Bound.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FieldFilterRange.Bound valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-