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