Package org.teamapps.data.value.filter
Enum NumericRangeFilter.Comparator
- java.lang.Object
-
- java.lang.Enum<NumericRangeFilter.Comparator>
-
- org.teamapps.data.value.filter.NumericRangeFilter.Comparator
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<NumericRangeFilter.Comparator>
- Enclosing class:
- NumericRangeFilter
public static enum NumericRangeFilter.Comparator extends java.lang.Enum<NumericRangeFilter.Comparator>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BETWEENBETWEEN_INCLUSIVEOUTSIDEOUTSIDE_INCLUSIVE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static NumericRangeFilter.ComparatorvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static NumericRangeFilter.Comparator[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BETWEEN
public static final NumericRangeFilter.Comparator BETWEEN
-
BETWEEN_INCLUSIVE
public static final NumericRangeFilter.Comparator BETWEEN_INCLUSIVE
-
OUTSIDE
public static final NumericRangeFilter.Comparator OUTSIDE
-
OUTSIDE_INCLUSIVE
public static final NumericRangeFilter.Comparator OUTSIDE_INCLUSIVE
-
-
Method Detail
-
values
public static NumericRangeFilter.Comparator[] 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 (NumericRangeFilter.Comparator c : NumericRangeFilter.Comparator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NumericRangeFilter.Comparator 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
-
-