com.ibm.datapower.wamt.clientAPI
Enum DeploymentPolicyType
java.lang.Object
java.lang.Enum<DeploymentPolicyType>
com.ibm.datapower.wamt.clientAPI.DeploymentPolicyType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<DeploymentPolicyType>
public enum DeploymentPolicyType
- extends java.lang.Enum<DeploymentPolicyType>
DeploymentPolicyType is an enum used to determine the type
of deployment policy to be used during a configuration deploy.
Internal use only. The deployment policy type determined internally and
should not be set directly by client code.
Method Summary |
static DeploymentPolicyType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static DeploymentPolicyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
EXPORT
public static final DeploymentPolicyType EXPORT
XML
public static final DeploymentPolicyType XML
NONE
public static final DeploymentPolicyType NONE
values
public static DeploymentPolicyType[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (DeploymentPolicyType c : DeploymentPolicyType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static DeploymentPolicyType valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
© Copyright IBM Corp. 2006, 2010 All Rights Reserved.