@ThreadSafety(level=COMPLETELY_THREADSAFE) public enum WritabilityMode extends java.lang.Enum<WritabilityMode>
| Enum Constant and Description |
|---|
DISABLED
Indicates that all write operations should be rejected.
|
ENABLED
Indicates that all write operations should be allowed.
|
INTERNAL_ONLY
Indicates that write operations from clients will be rejected,
but internal operations and updates through replication will
be allowed.
|
| Modifier and Type | Method and Description |
|---|---|
static WritabilityMode |
forName(java.lang.String modeName)
Retrieves the
WritabilityMode for the specified name. |
java.lang.String |
toString()
Retrieves a string representation of this
WritabilityMode. |
static WritabilityMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WritabilityMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WritabilityMode ENABLED
public static final WritabilityMode DISABLED
public static final WritabilityMode INTERNAL_ONLY
public static WritabilityMode[] values()
for (WritabilityMode c : WritabilityMode.values()) System.out.println(c);
public static WritabilityMode 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 static WritabilityMode forName(java.lang.String modeName)
WritabilityMode for the specified name.modeName - The name of the WritabilityMode to retrieve.WritabilityMode, or null if
the provided value is not the name of a valid mode.public java.lang.String toString()
WritabilityMode.toString in class java.lang.Enum<WritabilityMode>WritabilityMode.