public static enum MSKFirehoseResponse.Result extends Enum<MSKFirehoseResponse.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 MSKFirehoseResponse.Result |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MSKFirehoseResponse.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MSKFirehoseResponse.Result Ok
public static final MSKFirehoseResponse.Result ProcessingFailed
public static final MSKFirehoseResponse.Result Dropped
public static MSKFirehoseResponse.Result[] values()
for (MSKFirehoseResponse.Result c : MSKFirehoseResponse.Result.values()) System.out.println(c);
public static MSKFirehoseResponse.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 © 2024. All rights reserved.