public enum RoamingType extends java.lang.Enum<RoamingType>
Enum Constant and Description |
---|
DEFAULT
Default, shared.
|
DISABLED
Stored only locally, not shared and not exportable (Export Settings dialog)
|
PER_OS
Stored per operating system (Mac OS X, Linux, FreeBSD, Unix, Windows)
|
PER_PLATFORM
Deprecated.
Use
PER_OS instead |
Modifier and Type | Method and Description |
---|---|
static RoamingType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RoamingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RoamingType DISABLED
public static final RoamingType PER_OS
public static final RoamingType DEFAULT
@Deprecated public static final RoamingType PER_PLATFORM
PER_OS
insteadpublic static RoamingType[] values()
for (RoamingType c : RoamingType.values()) System.out.println(c);
public static RoamingType 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