public static enum Deployment.VALID_PROTOCOLS extends Enum<Deployment.VALID_PROTOCOLS>
Enum Constant and Description |
---|
jms
The jms.
|
Modifier and Type | Method and Description |
---|---|
static Deployment.VALID_PROTOCOLS |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Deployment.VALID_PROTOCOLS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Deployment.VALID_PROTOCOLS jms
public static Deployment.VALID_PROTOCOLS[] values()
for (Deployment.VALID_PROTOCOLS c : Deployment.VALID_PROTOCOLS.values()) System.out.println(c);
public static Deployment.VALID_PROTOCOLS 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 © 2006–2016 The Apache Software Foundation. All rights reserved.