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