public static enum KinesisAnalyticsInputPreprocessingResponse.Result extends Enum<KinesisAnalyticsInputPreprocessingResponse.Result>
Enum Constant and Description |
---|
Dropped
Indicates that this item should be silently dropped
|
Ok
Indicates that processing of this item succeeded.
|
ProcessingFailed
Indicate that the processing of this item failed
|
Modifier and Type | Method and Description |
---|---|
static KinesisAnalyticsInputPreprocessingResponse.Result |
valueOf(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.
|
public static final KinesisAnalyticsInputPreprocessingResponse.Result Ok
public static final KinesisAnalyticsInputPreprocessingResponse.Result ProcessingFailed
public static final KinesisAnalyticsInputPreprocessingResponse.Result Dropped
public static KinesisAnalyticsInputPreprocessingResponse.Result[] values()
for (KinesisAnalyticsInputPreprocessingResponse.Result c : KinesisAnalyticsInputPreprocessingResponse.Result.values()) System.out.println(c);
public static KinesisAnalyticsInputPreprocessingResponse.Result 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 nullCopyright © 2018. All rights reserved.