Package io.aws.lambda.events.kinesis
Enum KinesisAnalyticsInputPreprocessingResponse.Result
- java.lang.Object
-
- java.lang.Enum<KinesisAnalyticsInputPreprocessingResponse.Result>
-
- io.aws.lambda.events.kinesis.KinesisAnalyticsInputPreprocessingResponse.Result
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<KinesisAnalyticsInputPreprocessingResponse.Result>
- Enclosing class:
- KinesisAnalyticsInputPreprocessingResponse
public static enum KinesisAnalyticsInputPreprocessingResponse.Result extends java.lang.Enum<KinesisAnalyticsInputPreprocessingResponse.Result>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DroppedIndicates that this item should be silently droppedOkIndicates that processing of this item succeeded.ProcessingFailedIndicate that the processing of this item failed
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static KinesisAnalyticsInputPreprocessingResponse.ResultvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static KinesisAnalyticsInputPreprocessingResponse.Result[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Ok
public static final KinesisAnalyticsInputPreprocessingResponse.Result Ok
Indicates that processing of this item succeeded.
-
ProcessingFailed
public static final KinesisAnalyticsInputPreprocessingResponse.Result ProcessingFailed
Indicate that the processing of this item failed
-
Dropped
public static final KinesisAnalyticsInputPreprocessingResponse.Result Dropped
Indicates that this item should be silently dropped
-
-
Method Detail
-
values
public static KinesisAnalyticsInputPreprocessingResponse.Result[] 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 (KinesisAnalyticsInputPreprocessingResponse.Result c : KinesisAnalyticsInputPreprocessingResponse.Result.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static KinesisAnalyticsInputPreprocessingResponse.Result valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-