public static enum CompareQueryCondition.CompareType extends Enum<CompareQueryCondition.CompareType>
Enum Constant and Description |
---|
EQUALS
The property value is equals to the passed value.
|
GREATER
The property value is greater than the passed value.
|
GREATER_OR_EQUALS
The property value is greater or equals to the passed value.
|
LESS
The property value is lower than the passed value.
|
LESS_OR_EQUALS
The property value is lower or equals to the passed value.
|
Modifier and Type | Method and Description |
---|---|
static CompareQueryCondition.CompareType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompareQueryCondition.CompareType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompareQueryCondition.CompareType GREATER
public static final CompareQueryCondition.CompareType LESS
public static final CompareQueryCondition.CompareType GREATER_OR_EQUALS
public static final CompareQueryCondition.CompareType LESS_OR_EQUALS
public static final CompareQueryCondition.CompareType EQUALS
public static CompareQueryCondition.CompareType[] values()
for (CompareQueryCondition.CompareType c : CompareQueryCondition.CompareType.values()) System.out.println(c);
public static CompareQueryCondition.CompareType 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 © 2004–2021 XWiki. All rights reserved.