public static enum QueryVariable.QueryVariableOperation extends Enum<QueryVariable.QueryVariableOperation>
Enum Constant and Description |
---|
EQUALS |
EQUALS_IGNORE_CASE |
GREATER_THAN |
GREATER_THAN_OR_EQUALS |
LESS_THAN |
LESS_THAN_OR_EQUALS |
LIKE |
LIKE_IGNORE_CASE |
NOT_EQUALS |
NOT_EQUALS_IGNORE_CASE |
Modifier and Type | Method and Description |
---|---|
static QueryVariable.QueryVariableOperation |
forFriendlyName(String friendlyName) |
String |
getFriendlyName() |
static QueryVariable.QueryVariableOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryVariable.QueryVariableOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryVariable.QueryVariableOperation EQUALS
public static final QueryVariable.QueryVariableOperation NOT_EQUALS
public static final QueryVariable.QueryVariableOperation EQUALS_IGNORE_CASE
public static final QueryVariable.QueryVariableOperation NOT_EQUALS_IGNORE_CASE
public static final QueryVariable.QueryVariableOperation LIKE
public static final QueryVariable.QueryVariableOperation LIKE_IGNORE_CASE
public static final QueryVariable.QueryVariableOperation GREATER_THAN
public static final QueryVariable.QueryVariableOperation GREATER_THAN_OR_EQUALS
public static final QueryVariable.QueryVariableOperation LESS_THAN
public static final QueryVariable.QueryVariableOperation LESS_THAN_OR_EQUALS
public static QueryVariable.QueryVariableOperation[] values()
for (QueryVariable.QueryVariableOperation c : QueryVariable.QueryVariableOperation.values()) System.out.println(c);
public static QueryVariable.QueryVariableOperation 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 String getFriendlyName()
public static QueryVariable.QueryVariableOperation forFriendlyName(String friendlyName)
Copyright © 2016 Alfresco. All rights reserved.