public static enum ActionStatus.CompletionStatus extends Enum<ActionStatus.CompletionStatus>
Enum Constant and Description |
---|
ERROR
The action did not complete successfully.
|
INFO
The action completed successfully.
|
WARN
The action completed successfully but there was a warning.
|
Modifier and Type | Method and Description |
---|---|
static ActionStatus.CompletionStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActionStatus.CompletionStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionStatus.CompletionStatus INFO
public static final ActionStatus.CompletionStatus WARN
public static final ActionStatus.CompletionStatus ERROR
public static ActionStatus.CompletionStatus[] values()
for (ActionStatus.CompletionStatus c : ActionStatus.CompletionStatus.values()) System.out.println(c);
public static ActionStatus.CompletionStatus 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 null<i>Copyright (c) 2022, SAS Institute Inc., Cary, NC, USA</i>