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