public enum ComparePropertyValueOperation extends Enum<ComparePropertyValueOperation>
Contains the operations that can be used when evaluating whether the value of a property matches the value set.
Some operations can only be used with specific types. If a mismatch is encountered an error will be raised.
Enum Constant and Description |
---|
BEGINS |
CONTAINS |
ENDS |
EQUALS |
GREATER_THAN |
GREATER_THAN_EQUAL |
LESS_THAN |
LESS_THAN_EQUAL |
Modifier and Type | Method and Description |
---|---|
static ComparePropertyValueOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComparePropertyValueOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComparePropertyValueOperation EQUALS
public static final ComparePropertyValueOperation CONTAINS
public static final ComparePropertyValueOperation BEGINS
public static final ComparePropertyValueOperation ENDS
public static final ComparePropertyValueOperation GREATER_THAN
public static final ComparePropertyValueOperation GREATER_THAN_EQUAL
public static final ComparePropertyValueOperation LESS_THAN
public static final ComparePropertyValueOperation LESS_THAN_EQUAL
public static ComparePropertyValueOperation[] values()
for (ComparePropertyValueOperation c : ComparePropertyValueOperation.values()) System.out.println(c);
public static ComparePropertyValueOperation 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 © 2005–2017 Alfresco Software. All rights reserved.