public static enum VisualFormatter.PersistenceType extends java.lang.Enum<VisualFormatter.PersistenceType>
VisualFormatter.PersistenceType is an enumeration representing the
persistence type of the installed visual formatter configuration.| Enum Constant and Description |
|---|
ENTERPRISE_RESET_PERSISTENT
The visual formatter configuration is persistent to enterprise reset.
|
FACTORY_RESET_PERSISTENT
The visual formatter configuration is persistent to factory reset.
|
REBOOT_PERSISTENT
The visual formatter configuration is persistent to device reboots.
|
| Modifier and Type | Method and Description |
|---|---|
static VisualFormatter.PersistenceType |
fromInt(int value)
Retrieves the corresponding PersistenceType value from a valid integer.
|
int |
toInt()
Converts the PersistenceType to its integer corresponding value.
|
static VisualFormatter.PersistenceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VisualFormatter.PersistenceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VisualFormatter.PersistenceType REBOOT_PERSISTENT
public static final VisualFormatter.PersistenceType ENTERPRISE_RESET_PERSISTENT
public static final VisualFormatter.PersistenceType FACTORY_RESET_PERSISTENT
public static VisualFormatter.PersistenceType[] values()
for (VisualFormatter.PersistenceType c : VisualFormatter.PersistenceType.values()) System.out.println(c);
public static VisualFormatter.PersistenceType 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 toInt()
public static VisualFormatter.PersistenceType fromInt(int value)
value - Integer to use as input in the conversion.