public enum KeyConditions extends Enum<KeyConditions>
Enum Constant and Description |
---|
BEGINS_WITH |
BETWEEN |
EQ |
GE |
GT |
LE |
LT |
Modifier and Type | Method and Description |
---|---|
ComparisonOperator |
toComparisonOperator() |
static KeyConditions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KeyConditions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyConditions EQ
public static final KeyConditions LE
public static final KeyConditions LT
public static final KeyConditions GE
public static final KeyConditions GT
public static final KeyConditions BEGINS_WITH
public static final KeyConditions BETWEEN
public static KeyConditions[] values()
for (KeyConditions c : KeyConditions.values()) System.out.println(c);
public static KeyConditions 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 ComparisonOperator toComparisonOperator()
Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.