public static enum PropertyConditional.DefaultOperators extends Enum<PropertyConditional.DefaultOperators>
Enum Constant and Description |
---|
CONTAINS |
CONTAINS_IGNORE_CASE |
EQUALS |
EXISTS |
GREATER_THAN |
GREATER_THAN_OR_EQUAL_TO |
LESS_THAN |
LESS_THAN_OR_EQUAL_TO |
NONE
Opposite of
EXISTS |
NOT_BLANK |
NOT_CONTAINS |
NOT_CONTAINS_IGNORE_CASE |
NOT_EQUALS |
Modifier and Type | Method and Description |
---|---|
static PropertyConditional.DefaultOperators |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropertyConditional.DefaultOperators[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyConditional.DefaultOperators EQUALS
public static final PropertyConditional.DefaultOperators NOT_EQUALS
public static final PropertyConditional.DefaultOperators EXISTS
public static final PropertyConditional.DefaultOperators NOT_BLANK
public static final PropertyConditional.DefaultOperators NONE
EXISTS
public static final PropertyConditional.DefaultOperators GREATER_THAN
public static final PropertyConditional.DefaultOperators LESS_THAN
public static final PropertyConditional.DefaultOperators GREATER_THAN_OR_EQUAL_TO
public static final PropertyConditional.DefaultOperators LESS_THAN_OR_EQUAL_TO
public static final PropertyConditional.DefaultOperators CONTAINS
public static final PropertyConditional.DefaultOperators CONTAINS_IGNORE_CASE
public static final PropertyConditional.DefaultOperators NOT_CONTAINS
public static final PropertyConditional.DefaultOperators NOT_CONTAINS_IGNORE_CASE
public static PropertyConditional.DefaultOperators[] values()
for (PropertyConditional.DefaultOperators c : PropertyConditional.DefaultOperators.values()) System.out.println(c);
public static PropertyConditional.DefaultOperators 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 nullCopyright © 2021. All rights reserved.