|
Did this page help you?Yes No Tell us about it... |
||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ComparisonOperator>
com.amazonaws.services.dynamodb.model.ComparisonOperator
@Deprecated public enum ComparisonOperator
Comparison Operator
Enum Constant Summary | |
---|---|
BEGINS_WITH
Deprecated. |
|
BETWEEN
Deprecated. |
|
CONTAINS
Deprecated. |
|
EQ
Deprecated. |
|
GE
Deprecated. |
|
GT
Deprecated. |
|
IN
Deprecated. |
|
LE
Deprecated. |
|
LT
Deprecated. |
|
NE
Deprecated. |
|
NOT_CONTAINS
Deprecated. |
|
NOT_NULL
Deprecated. |
|
NULL
Deprecated. |
Method Summary | |
---|---|
static ComparisonOperator |
fromValue(String value)
Deprecated. Use this in place of valueOf. |
String |
toString()
Deprecated. |
static ComparisonOperator |
valueOf(String name)
Deprecated. Returns the enum constant of this type with the specified name. |
static ComparisonOperator[] |
values()
Deprecated. 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, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ComparisonOperator EQ
public static final ComparisonOperator NE
public static final ComparisonOperator IN
public static final ComparisonOperator LE
public static final ComparisonOperator LT
public static final ComparisonOperator GE
public static final ComparisonOperator GT
public static final ComparisonOperator BETWEEN
public static final ComparisonOperator NOT_NULL
public static final ComparisonOperator NULL
public static final ComparisonOperator CONTAINS
public static final ComparisonOperator NOT_CONTAINS
public static final ComparisonOperator BEGINS_WITH
Method Detail |
---|
public static ComparisonOperator[] values()
for (ComparisonOperator c : ComparisonOperator.values()) System.out.println(c);
public static ComparisonOperator 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 toString()
toString
in class Enum<ComparisonOperator>
public static ComparisonOperator fromValue(String value)
value
- real value
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |