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