Enum Server.DrbdReport.DiskState
- java.lang.Object
-
- java.lang.Enum<Server.DrbdReport.DiskState>
-
- com.aoindustries.aoserv.client.linux.Server.DrbdReport.DiskState
-
- All Implemented Interfaces:
Serializable,Comparable<Server.DrbdReport.DiskState>
- Enclosing class:
- Server.DrbdReport
public static enum Server.DrbdReport.DiskState extends Enum<Server.DrbdReport.DiskState>
Obtained from http://www.drbd.org/users-guide/ch-admin.html#s-disk-states
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AttachingConsistentDisklessDUnknownFailedInconsistentNegotiatingOutdatedUnconfiguredUpToDate
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Server.DrbdReport.DiskStatevalueOf(String name)Returns the enum constant of this type with the specified name.static Server.DrbdReport.DiskState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Unconfigured
public static final Server.DrbdReport.DiskState Unconfigured
-
Diskless
public static final Server.DrbdReport.DiskState Diskless
-
Attaching
public static final Server.DrbdReport.DiskState Attaching
-
Failed
public static final Server.DrbdReport.DiskState Failed
-
Negotiating
public static final Server.DrbdReport.DiskState Negotiating
-
Inconsistent
public static final Server.DrbdReport.DiskState Inconsistent
-
Outdated
public static final Server.DrbdReport.DiskState Outdated
-
DUnknown
public static final Server.DrbdReport.DiskState DUnknown
-
Consistent
public static final Server.DrbdReport.DiskState Consistent
-
UpToDate
public static final Server.DrbdReport.DiskState UpToDate
-
-
Method Detail
-
values
public static Server.DrbdReport.DiskState[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Server.DrbdReport.DiskState c : Server.DrbdReport.DiskState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Server.DrbdReport.DiskState valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
-