public enum OutputFileUploadCondition extends Enum<OutputFileUploadCondition>
Enum Constant and Description |
---|
TASK_COMPLETION
Enum value taskCompletion.
|
TASK_FAILURE
Enum value taskFailure.
|
TASK_SUCCESS
Enum value taskSuccess.
|
Modifier and Type | Method and Description |
---|---|
static OutputFileUploadCondition |
fromString(String value)
Parses a serialized value to a OutputFileUploadCondition instance.
|
String |
toString() |
static OutputFileUploadCondition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OutputFileUploadCondition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputFileUploadCondition TASK_SUCCESS
public static final OutputFileUploadCondition TASK_FAILURE
public static final OutputFileUploadCondition TASK_COMPLETION
public static OutputFileUploadCondition[] values()
for (OutputFileUploadCondition c : OutputFileUploadCondition.values()) System.out.println(c);
public static OutputFileUploadCondition 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 nullpublic static OutputFileUploadCondition fromString(String value)
value
- the serialized value to parse.public String toString()
toString
in class Enum<OutputFileUploadCondition>
Copyright © 2019. All rights reserved.