public enum DskppProvisioningProtocol extends java.lang.Enum<DskppProvisioningProtocol>
| Enum Constant and Description | 
|---|
PROVISIONING_PROTOCOL_V1
Provisioning protocol version 1. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
int | 
getVersion()
Get Version number as an integer. 
 | 
static DskppProvisioningProtocol | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static DskppProvisioningProtocol[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final DskppProvisioningProtocol PROVISIONING_PROTOCOL_V1
public static DskppProvisioningProtocol[] values()
for (DskppProvisioningProtocol c : DskppProvisioningProtocol.values()) System.out.println(c);
public static DskppProvisioningProtocol 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 nullpublic int getVersion()