Enum Class SqliteType

java.lang.Object
java.lang.Enum<SqliteType>
net.anwiba.database.sqlite.SqliteType
All Implemented Interfaces:
Serializable, Comparable<SqliteType>, Constable, net.anwiba.commons.jdbc.metadata.IDatabaseType

public enum SqliteType extends Enum<SqliteType> implements net.anwiba.commons.jdbc.metadata.IDatabaseType
  • Enum Constant Details

  • Method Details

    • values

      public static SqliteType[] 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 SqliteType 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
    • getName

      public String getName()
      Specified by:
      getName in interface net.anwiba.commons.jdbc.metadata.IDatabaseType
    • getByName

      public static SqliteType getByName(String name)
    • getByTypeCode

      public static SqliteType getByTypeCode(int code)
    • getCode

      public int getCode()
      Specified by:
      getCode in interface net.anwiba.commons.jdbc.metadata.IDatabaseType
    • accept

      public abstract <T, E extends Exception> T accept(ISqliteTypeVisitor<T,E> visitor) throws E
      Throws:
      E extends Exception