public static enum UserStorageProvider.EditMode extends Enum<UserStorageProvider.EditMode>
Enum Constant and Description |
---|
READ_ONLY
user storage is read-only
|
UNSYNCED
updates to user are stored locally and not synced with user storage.
|
WRITABLE
user storage is writable
|
Modifier and Type | Method and Description |
---|---|
static UserStorageProvider.EditMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserStorageProvider.EditMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserStorageProvider.EditMode READ_ONLY
public static final UserStorageProvider.EditMode WRITABLE
public static final UserStorageProvider.EditMode UNSYNCED
public static UserStorageProvider.EditMode[] values()
for (UserStorageProvider.EditMode c : UserStorageProvider.EditMode.values()) System.out.println(c);
public static UserStorageProvider.EditMode 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 nullCopyright © 2019 JBoss by Red Hat. All rights reserved.