public enum ProgressExecutionMode extends java.lang.Enum<ProgressExecutionMode>
Enum Constant and Description |
---|
IN_BACKGROUND_ASYNC
Perform asynchronously using background mode
|
MODAL_SYNC
Perform synchronously using modal window without option to sent to background
|
NO_PROGRESS_ASYNC
Perform asynchronously w/o progress indicator
|
NO_PROGRESS_SYNC
Perform synchronously w/o progress indicator
|
START_IN_FOREGROUND_ASYNC
Perform asynchronously using foreground window with option to sent to background
|
Modifier and Type | Method and Description |
---|---|
static ProgressExecutionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProgressExecutionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProgressExecutionMode NO_PROGRESS_SYNC
public static final ProgressExecutionMode MODAL_SYNC
public static final ProgressExecutionMode NO_PROGRESS_ASYNC
public static final ProgressExecutionMode IN_BACKGROUND_ASYNC
public static final ProgressExecutionMode START_IN_FOREGROUND_ASYNC
public static ProgressExecutionMode[] values()
for (ProgressExecutionMode c : ProgressExecutionMode.values()) System.out.println(c);
public static ProgressExecutionMode 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