public static enum ATInternet.EncryptionMode extends java.lang.Enum<ATInternet.EncryptionMode>
Enum Constant and Description |
---|
force
/!
|
ifCompatible
encryption stored data enabled if device is compatible
|
none
No encryption stored data
|
Modifier and Type | Method and Description |
---|---|
static ATInternet.EncryptionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ATInternet.EncryptionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ATInternet.EncryptionMode none
public static final ATInternet.EncryptionMode ifCompatible
public static final ATInternet.EncryptionMode force
public static ATInternet.EncryptionMode[] values()
for (ATInternet.EncryptionMode c : ATInternet.EncryptionMode.values()) System.out.println(c);
public static ATInternet.EncryptionMode 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 null