public enum ProgressState extends java.lang.Enum<ProgressState>
Enum Constant and Description |
---|
deleteFilteredMessage
Report progress when deleting a filtered out message from SQS queue.
|
deleteMessage
Report progress when deleting a message from SQS queue.
|
downloadLog
Report progress when downloading log file.
|
parseMessage
Report progress when parsing a message from SQS queue.
|
pollQueue
Report progress when polling messages from SQS queue.
|
processLog
Report progress when processing log file.
|
processSource
Report progress when processing source.
|
uncaughtException
Report progress when uncaught exception happened.
|
Modifier and Type | Method and Description |
---|---|
static ProgressState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProgressState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProgressState pollQueue
public static final ProgressState parseMessage
public static final ProgressState deleteMessage
public static final ProgressState deleteFilteredMessage
public static final ProgressState processSource
public static final ProgressState downloadLog
public static final ProgressState processLog
public static final ProgressState uncaughtException
public static ProgressState[] values()
for (ProgressState c : ProgressState.values()) System.out.println(c);
public static ProgressState valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null