public enum ArtemisMode extends 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(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(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 null