@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum ShardFilterType extends Enum<ShardFilterType>
Enum Constant and Description |
---|
AFTER_SHARD_ID |
AT_LATEST |
AT_TIMESTAMP |
AT_TRIM_HORIZON |
FROM_TIMESTAMP |
FROM_TRIM_HORIZON |
Modifier and Type | Method and Description |
---|---|
static ShardFilterType |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static ShardFilterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ShardFilterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ShardFilterType AFTER_SHARD_ID
public static final ShardFilterType AT_TRIM_HORIZON
public static final ShardFilterType FROM_TRIM_HORIZON
public static final ShardFilterType AT_LATEST
public static final ShardFilterType AT_TIMESTAMP
public static final ShardFilterType FROM_TIMESTAMP
public static ShardFilterType[] values()
for (ShardFilterType c : ShardFilterType.values()) System.out.println(c);
public static ShardFilterType 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 toString()
toString
in class Enum<ShardFilterType>
public static ShardFilterType fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.