Package herddb.utils
Enum SQLRecordPredicateFunctions.CompareResult
- java.lang.Object
-
- java.lang.Enum<SQLRecordPredicateFunctions.CompareResult>
-
- herddb.utils.SQLRecordPredicateFunctions.CompareResult
-
- All Implemented Interfaces:
Serializable,Comparable<SQLRecordPredicateFunctions.CompareResult>
- Enclosing interface:
- SQLRecordPredicateFunctions
public static enum SQLRecordPredicateFunctions.CompareResult extends Enum<SQLRecordPredicateFunctions.CompareResult>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SQLRecordPredicateFunctions.CompareResultfromInt(int i)static SQLRecordPredicateFunctions.CompareResultfromLong(long i)static SQLRecordPredicateFunctions.CompareResultvalueOf(String name)Returns the enum constant of this type with the specified name.static SQLRecordPredicateFunctions.CompareResult[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GREATER
public static final SQLRecordPredicateFunctions.CompareResult GREATER
-
MINOR
public static final SQLRecordPredicateFunctions.CompareResult MINOR
-
EQUALS
public static final SQLRecordPredicateFunctions.CompareResult EQUALS
-
NULL
public static final SQLRecordPredicateFunctions.CompareResult NULL
-
-
Method Detail
-
values
public static SQLRecordPredicateFunctions.CompareResult[] 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 (SQLRecordPredicateFunctions.CompareResult c : SQLRecordPredicateFunctions.CompareResult.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SQLRecordPredicateFunctions.CompareResult 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
-
fromInt
public static SQLRecordPredicateFunctions.CompareResult fromInt(int i)
-
fromLong
public static SQLRecordPredicateFunctions.CompareResult fromLong(long i)
-
-