Enum Class ServerStatus
- All Implemented Interfaces:
Serializable
,Comparable<ServerStatus>
,Constable
The status of the server.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic ServerStatus
of
(boolean writable, boolean replicating) Returns theServerStatus
instance with the specified properties.boolean
Returns whether the server is replicating.static ServerStatus
Returns the enum constant of this class with the specified name.static ServerStatus[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.boolean
writable()
Returns whether the server is writable.
-
Enum Constant Details
-
READ_ONLY
-
REPLICATION_ONLY
-
WRITABLE
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
of
Returns theServerStatus
instance with the specified properties. -
writable
public boolean writable()Returns whether the server is writable. -
replicating
public boolean replicating()Returns whether the server is replicating.
-