public enum InvokeAfterUpdateMode extends java.lang.Enum<InvokeAfterUpdateMode>
Enum Constant and Description |
---|
BACKGROUND_CANCELLABLE |
BACKGROUND_NOT_CANCELLABLE |
SILENT |
SILENT_CALLBACK_POOLED |
SYNCHRONOUS_CANCELLABLE |
SYNCHRONOUS_NOT_CANCELLABLE |
Modifier and Type | Method and Description |
---|---|
boolean |
isCallbackOnAwt() |
boolean |
isCancellable() |
boolean |
isSilent() |
boolean |
isSynchronous() |
static InvokeAfterUpdateMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InvokeAfterUpdateMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InvokeAfterUpdateMode SILENT
public static final InvokeAfterUpdateMode BACKGROUND_CANCELLABLE
public static final InvokeAfterUpdateMode BACKGROUND_NOT_CANCELLABLE
public static final InvokeAfterUpdateMode SYNCHRONOUS_CANCELLABLE
public static final InvokeAfterUpdateMode SYNCHRONOUS_NOT_CANCELLABLE
public static final InvokeAfterUpdateMode SILENT_CALLBACK_POOLED
public static InvokeAfterUpdateMode[] values()
for (InvokeAfterUpdateMode c : InvokeAfterUpdateMode.values()) System.out.println(c);
public static InvokeAfterUpdateMode 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 nullpublic boolean isCancellable()
public boolean isSilent()
public boolean isSynchronous()
public boolean isCallbackOnAwt()