public enum JsonOperatorEnum extends Enum<JsonOperatorEnum> implements NamedEnum
Modifier and Type | Method and Description |
---|---|
String |
getName() |
String |
getValue() |
static JsonOperatorEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JsonOperatorEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JsonOperatorEnum LT
public static final JsonOperatorEnum LE
public static final JsonOperatorEnum GT
public static final JsonOperatorEnum GE
public static final JsonOperatorEnum EQ
public static final JsonOperatorEnum NE
public static JsonOperatorEnum[] values()
for (JsonOperatorEnum c : JsonOperatorEnum.values()) System.out.println(c);
public static JsonOperatorEnum valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic final String getValue()
Copyright © 2017. All rights reserved.