public enum FkMutatedRule extends Enum<FkMutatedRule>
| 枚举常量和说明 |
|---|
importedKeyCascade |
importedKeyNoAction |
importedKeyRestrict |
importedKeySetDefault |
importedKeySetNull |
| 限定符和类型 | 方法和说明 |
|---|---|
int |
getCode() |
String |
getKeywords() |
static FkMutatedRule |
ofCode(int code) |
void |
setKeywords(String keywords) |
static FkMutatedRule |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static FkMutatedRule[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final FkMutatedRule importedKeyCascade
public static final FkMutatedRule importedKeyRestrict
public static final FkMutatedRule importedKeySetNull
public static final FkMutatedRule importedKeyNoAction
public static final FkMutatedRule importedKeySetDefault
public static FkMutatedRule[] values()
for (FkMutatedRule c : FkMutatedRule.values()) System.out.println(c);
public static FkMutatedRule valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public int getCode()
public static FkMutatedRule ofCode(int code)
public String getKeywords()
public void setKeywords(String keywords)
Copyright © 2020. All rights reserved.