@StableMinor(version="12.3", sinceVersion="10.2") public enum PreferencesLevel extends Enum<PreferencesLevel>
Enum Constant and Description |
---|
SHARED
Preferences stored at shared level are shared among all users.
|
STRUCTURE
Preferences stored at structure level are affected by import/export structure operations.
|
USER
Preferences stored at user level are only visible to the corresponding user.
|
Modifier and Type | Method and Description |
---|---|
static PreferencesLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PreferencesLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PreferencesLevel STRUCTURE
public static final PreferencesLevel SHARED
public static final PreferencesLevel USER
public static PreferencesLevel[] values()
for (PreferencesLevel c : PreferencesLevel.values()) System.out.println(c);
public static PreferencesLevel valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullLumisXP 12.3.0.200408 - Copyright © 2006–2020 Lumis EIP Tecnologia da Informação LTDA. All Rights Reserved.