|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<ExpressionType>
com.vmware.vcloud.sdk.constants.query.ExpressionType
public enum ExpressionType
The enum class represents the operator types.
| Enum Constant Summary | |
|---|---|
EQUALS
|
|
GREATER_THAN
Valid values can be Integer and DateTime |
|
GREATER_THAN_OR_EQUAL
Valid values can be Integer and DateTime |
|
LESSER_THAN
Valid values can be Integer and DateTime |
|
LESSER_THAN_OR_EQUAL
Valid values can be Integer and DateTime |
|
NOT_EQUALS
|
|
| Method Summary | |
|---|---|
static ExpressionType |
fromValue(String value)
|
String |
value()
|
static ExpressionType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ExpressionType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final ExpressionType EQUALS
public static final ExpressionType NOT_EQUALS
public static final ExpressionType LESSER_THAN
public static final ExpressionType LESSER_THAN_OR_EQUAL
public static final ExpressionType GREATER_THAN
public static final ExpressionType GREATER_THAN_OR_EQUAL
| Method Detail |
|---|
public static ExpressionType[] values()
for (ExpressionType c : ExpressionType.values()) System.out.println(c);
public static ExpressionType valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic String value()
public static ExpressionType fromValue(String value)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||