Enum Class SqliteMessage

java.lang.Object
java.lang.Enum<SqliteMessage>
com.winterhavenmc.lodestar.adapters.datastore.sqlite.SqliteMessage
All Implemented Interfaces:
Serializable, Comparable<SqliteMessage>, Constable

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

    • DATASTORE_INITIALIZED_NOTICE

      public static final SqliteMessage DATASTORE_INITIALIZED_NOTICE
    • DATASTORE_INITIALIZED_ERROR

      public static final SqliteMessage DATASTORE_INITIALIZED_ERROR
    • DATASTORE_CLOSE_ERROR

      public static final SqliteMessage DATASTORE_CLOSE_ERROR
    • DATASTORE_CLOSED_NOTICE

      public static final SqliteMessage DATASTORE_CLOSED_NOTICE
    • SELECT_ALL_KEYS_ERROR

      public static final SqliteMessage SELECT_ALL_KEYS_ERROR
    • SELECT_ALL_RECORDS_ERROR

      public static final SqliteMessage SELECT_ALL_RECORDS_ERROR
    • SELECT_RECORD_ERROR

      public static final SqliteMessage SELECT_RECORD_ERROR
    • INSERT_RECORD_ERROR

      public static final SqliteMessage INSERT_RECORD_ERROR
    • DELETE_RECORD_ERROR

      public static final SqliteMessage DELETE_RECORD_ERROR
  • Method Details

    • values

      public static SqliteMessage[] 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 SqliteMessage 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
    • getDefaultMessage

      public String getDefaultMessage()
    • getLocalizedMessage

      public String getLocalizedMessage(Locale locale)
    • getLocalizedMessage

      public String getLocalizedMessage(Locale locale, Object... objects)
    • toString

      public String toString()
      Overrides:
      toString in class Enum<SqliteMessage>