public enum ReturnAction extends Enum<ReturnAction>
IWarningCallback.Warning(WarningInfo) method.| Enum Constant and Description |
|---|
Abort
Used for abort flow.
|
Continue
Used for continue flow.
|
| Modifier and Type | Method and Description |
|---|---|
static ReturnAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReturnAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReturnAction Continue
public static final ReturnAction Abort
public static ReturnAction[] values()
for (ReturnAction c : ReturnAction.values()) System.out.println(c);
public static ReturnAction 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 © 2025 Aspose. All Rights Reserved.