Enum Ddb2StreamConfiguration.StreamIteratorType
- java.lang.Object
-
- java.lang.Enum<Ddb2StreamConfiguration.StreamIteratorType>
-
- org.apache.camel.component.aws2.ddbstream.Ddb2StreamConfiguration.StreamIteratorType
-
- All Implemented Interfaces:
Serializable,Comparable<Ddb2StreamConfiguration.StreamIteratorType>
- Enclosing class:
- Ddb2StreamConfiguration
public static enum Ddb2StreamConfiguration.StreamIteratorType extends Enum<Ddb2StreamConfiguration.StreamIteratorType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FROM_LATESTFROM_START
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Ddb2StreamConfiguration.StreamIteratorTypevalueOf(String name)Returns the enum constant of this type with the specified name.static Ddb2StreamConfiguration.StreamIteratorType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FROM_LATEST
public static final Ddb2StreamConfiguration.StreamIteratorType FROM_LATEST
-
FROM_START
public static final Ddb2StreamConfiguration.StreamIteratorType FROM_START
-
-
Method Detail
-
values
public static Ddb2StreamConfiguration.StreamIteratorType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Ddb2StreamConfiguration.StreamIteratorType c : Ddb2StreamConfiguration.StreamIteratorType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Ddb2StreamConfiguration.StreamIteratorType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-