public static enum Invocation.Kind extends Enum<Invocation.Kind>
| Enum Constant and Description |
|---|
BUSINESS |
DISPOSER |
OBSERVER |
PRODUCER |
| Modifier and Type | Method and Description |
|---|---|
static Invocation.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Invocation.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Invocation.Kind BUSINESS
public static final Invocation.Kind PRODUCER
public static final Invocation.Kind DISPOSER
public static final Invocation.Kind OBSERVER
public static Invocation.Kind[] values()
for (Invocation.Kind c : Invocation.Kind.values()) System.out.println(c);
public static Invocation.Kind 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 © 2021 JBoss by Red Hat. All rights reserved.