Package core.apiCore.helpers
Enum DataHelper.JSON_COMMAND
- java.lang.Object
-
- java.lang.Enum<DataHelper.JSON_COMMAND>
-
- core.apiCore.helpers.DataHelper.JSON_COMMAND
-
- All Implemented Interfaces:
Serializable,Comparable<DataHelper.JSON_COMMAND>
- Enclosing class:
- DataHelper
public static enum DataHelper.JSON_COMMAND extends Enum<DataHelper.JSON_COMMAND>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DataHelper.JSON_COMMANDvalueOf(String name)Returns the enum constant of this type with the specified name.static DataHelper.JSON_COMMAND[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
hasItems
public static final DataHelper.JSON_COMMAND hasItems
-
notHaveItems
public static final DataHelper.JSON_COMMAND notHaveItems
-
notEqualTo
public static final DataHelper.JSON_COMMAND notEqualTo
-
equalTo
public static final DataHelper.JSON_COMMAND equalTo
-
notContain
public static final DataHelper.JSON_COMMAND notContain
-
contains
public static final DataHelper.JSON_COMMAND contains
-
containsInAnyOrder
public static final DataHelper.JSON_COMMAND containsInAnyOrder
-
integerGreaterThan
public static final DataHelper.JSON_COMMAND integerGreaterThan
-
integerLessThan
public static final DataHelper.JSON_COMMAND integerLessThan
-
integerEqual
public static final DataHelper.JSON_COMMAND integerEqual
-
integerNotEqual
public static final DataHelper.JSON_COMMAND integerNotEqual
-
nodeSizeGreaterThan
public static final DataHelper.JSON_COMMAND nodeSizeGreaterThan
-
nodeSizeExact
public static final DataHelper.JSON_COMMAND nodeSizeExact
-
sequence
public static final DataHelper.JSON_COMMAND sequence
-
jsonbody
public static final DataHelper.JSON_COMMAND jsonbody
-
isNotEmpty
public static final DataHelper.JSON_COMMAND isNotEmpty
-
isEmpty
public static final DataHelper.JSON_COMMAND isEmpty
-
nodeSizeLessThan
public static final DataHelper.JSON_COMMAND nodeSizeLessThan
-
isBetweenDate
public static final DataHelper.JSON_COMMAND isBetweenDate
-
allValuesEqualTo
public static final DataHelper.JSON_COMMAND allValuesEqualTo
-
countGreaterThan
public static final DataHelper.JSON_COMMAND countGreaterThan
-
countLessThan
public static final DataHelper.JSON_COMMAND countLessThan
-
countExact
public static final DataHelper.JSON_COMMAND countExact
-
command
public static final DataHelper.JSON_COMMAND command
-
notContains
public static final DataHelper.JSON_COMMAND notContains
-
contain
public static final DataHelper.JSON_COMMAND contain
-
isDateAfter
public static final DataHelper.JSON_COMMAND isDateAfter
-
isDateBefore
public static final DataHelper.JSON_COMMAND isDateBefore
-
isDateEqual
public static final DataHelper.JSON_COMMAND isDateEqual
-
isDateNotEqual
public static final DataHelper.JSON_COMMAND isDateNotEqual
-
-
Method Detail
-
values
public static DataHelper.JSON_COMMAND[] 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 (DataHelper.JSON_COMMAND c : DataHelper.JSON_COMMAND.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataHelper.JSON_COMMAND 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
-
-