Package org.apache.cassandra.service
Enum StartupChecks.StartupCheckType
- java.lang.Object
-
- java.lang.Enum<StartupChecks.StartupCheckType>
-
- org.apache.cassandra.service.StartupChecks.StartupCheckType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<StartupChecks.StartupCheckType>
- Enclosing class:
- StartupChecks
public static enum StartupChecks.StartupCheckType extends java.lang.Enum<StartupChecks.StartupCheckType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description check_data_resurrectioncheck_dccheck_filesystem_ownershipcheck_racknon_configurable_check
-
Field Summary
Fields Modifier and Type Field Description booleandisabledByDefault
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StartupChecks.StartupCheckTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static StartupChecks.StartupCheckType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
non_configurable_check
public static final StartupChecks.StartupCheckType non_configurable_check
-
check_filesystem_ownership
public static final StartupChecks.StartupCheckType check_filesystem_ownership
-
check_dc
public static final StartupChecks.StartupCheckType check_dc
-
check_rack
public static final StartupChecks.StartupCheckType check_rack
-
check_data_resurrection
public static final StartupChecks.StartupCheckType check_data_resurrection
-
-
Method Detail
-
values
public static StartupChecks.StartupCheckType[] 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 (StartupChecks.StartupCheckType c : StartupChecks.StartupCheckType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StartupChecks.StartupCheckType valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-