Enum Class RefAct

java.lang.Object
java.lang.Enum<RefAct>
org.sqlite.parser.ast.RefAct
All Implemented Interfaces:
Serializable, Comparable<RefAct>, java.lang.constant.Constable, ToSql

public enum RefAct extends Enum<RefAct> implements ToSql
  • Enum Constant Details

    • SetNull

      public static final RefAct SetNull
    • SetDefault

      public static final RefAct SetDefault
    • Cascade

      public static final RefAct Cascade
    • Restrict

      public static final RefAct Restrict
    • NoAction

      public static final RefAct NoAction
  • Method Details

    • values

      public static RefAct[] 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 RefAct 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
    • toSql

      public void toSql(Appendable a) throws IOException
      Specified by:
      toSql in interface ToSql
      Throws:
      IOException
    • getRule

      public int getRule()
      Returns:
      invalid @link
      DatabaseMetaData.importedKeyNoAction
      , ...