Enum Class SafetyLevel

java.lang.Object
java.lang.Enum<SafetyLevel>
de.caluga.morphium.annotations.SafetyLevel
All Implemented Interfaces:
Serializable, Comparable<SafetyLevel>, java.lang.constant.Constable

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 Details

    • 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 Details

    • values

      public static SafetyLevel[] 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

      public static SafetyLevel valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • getValue

      public int getValue()