public enum SqlJetForeignKeyUpdate extends java.lang.Enum<SqlJetForeignKeyUpdate>
Enum Constant and Description |
---|
CASCADE |
RESTRICT |
SET_DEFAULT |
SET_NULL |
Modifier and Type | Method and Description |
---|---|
static SqlJetForeignKeyUpdate |
decode(java.lang.String s) |
java.lang.String |
toString() |
static SqlJetForeignKeyUpdate |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SqlJetForeignKeyUpdate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlJetForeignKeyUpdate SET_NULL
public static final SqlJetForeignKeyUpdate SET_DEFAULT
public static final SqlJetForeignKeyUpdate CASCADE
public static final SqlJetForeignKeyUpdate RESTRICT
public static SqlJetForeignKeyUpdate[] values()
for (SqlJetForeignKeyUpdate c : SqlJetForeignKeyUpdate.values()) System.out.println(c);
public static SqlJetForeignKeyUpdate valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static SqlJetForeignKeyUpdate decode(java.lang.String s)
public java.lang.String toString()
toString
in class java.lang.Enum<SqlJetForeignKeyUpdate>
Copyright © 2009-2010 TMate Software Ltd. All Rights Reserved.