Enum Class BootErrorType

java.lang.Object
java.lang.Enum<BootErrorType>
de.simonsator.partyandfriends.main.startup.error.BootErrorType
All Implemented Interfaces:
Serializable, Comparable<BootErrorType>, Constable

public enum BootErrorType extends Enum<BootErrorType>
  • Enum Constant Details

    • MYSQL_CONNECTION_PROBLEM

      public static final BootErrorType MYSQL_CONNECTION_PROBLEM
    • TOO_OLD_VERSION

      public static final BootErrorType TOO_OLD_VERSION
    • SHA_ENCRYPTED_PASSWORD

      public static final BootErrorType SHA_ENCRYPTED_PASSWORD
    • MISSING_PERMISSION_REFERENCE_COMMAND

      public static final BootErrorType MISSING_PERMISSION_REFERENCE_COMMAND
  • Method Details

    • values

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