public enum ArtemisMode extends java.lang.Enum<ArtemisMode>
| Enum Constant and Description |
|---|
EMBEDDED
Embed (i.e.
|
NATIVE
Connect to a broker using the native Artemis protocol (i.e.
|
| Modifier and Type | Method and Description |
|---|---|
static ArtemisMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ArtemisMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArtemisMode NATIVE
public static final ArtemisMode EMBEDDED
public static ArtemisMode[] values()
for (ArtemisMode c : ArtemisMode.values()) System.out.println(c);
public static ArtemisMode 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