public static enum Invocable.InvocationType extends java.lang.Enum<Invocable.InvocationType>
| Enum Constant | Description |
|---|---|
BLOCKING |
|
EITHER |
|
NON_BLOCKING |
| Modifier and Type | Method | Description |
|---|---|---|
static Invocable.InvocationType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static Invocable.InvocationType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Invocable.InvocationType BLOCKING
public static final Invocable.InvocationType NON_BLOCKING
public static final Invocable.InvocationType EITHER
public static Invocable.InvocationType[] values()
for (Invocable.InvocationType c : Invocable.InvocationType.values()) System.out.println(c);
public static Invocable.InvocationType 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 nullCopyright © 1995–2017 Webtide. All rights reserved.