Package de.caluga.morphium.annotations
Enum SafetyLevel
- java.lang.Object
-
- java.lang.Enum<SafetyLevel>
-
- de.caluga.morphium.annotations.SafetyLevel
-
- All Implemented Interfaces:
Serializable,Comparable<SafetyLevel>
public enum SafetyLevel extends Enum<SafetyLevel>
User: Stephan Bösebeck Date: 26.05.12 Time: 16:35 Define the type of Write safety.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BASICMAJORITYNORMALWAIT_FOR_ALL_SLAVESWAIT_FOR_SLAVE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetValue()static SafetyLevelvalueOf(String name)Returns the enum constant of this type with the specified name.static SafetyLevel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NORMAL
public static final SafetyLevel NORMAL
-
BASIC
public static final SafetyLevel BASIC
-
WAIT_FOR_SLAVE
public static final SafetyLevel WAIT_FOR_SLAVE
-
WAIT_FOR_ALL_SLAVES
public static final SafetyLevel WAIT_FOR_ALL_SLAVES
-
MAJORITY
public static final SafetyLevel MAJORITY
-
-
Method Detail
-
values
public static SafetyLevel[] 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 (SafetyLevel c : SafetyLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SafetyLevel 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
-
getValue
public int getValue()
-
-