public enum CsdlOnDeleteAction extends Enum<CsdlOnDeleteAction>
Enum Constant and Description |
---|
Cascade
The Cascade.
|
None
The None.
|
SetDefault
The SetDefault.
|
SetNull
The SetNull.
|
Modifier and Type | Method and Description |
---|---|
static CsdlOnDeleteAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CsdlOnDeleteAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CsdlOnDeleteAction Cascade
public static final CsdlOnDeleteAction None
public static final CsdlOnDeleteAction SetNull
public static final CsdlOnDeleteAction SetDefault
public static CsdlOnDeleteAction[] values()
for (CsdlOnDeleteAction c : CsdlOnDeleteAction.values()) System.out.println(c);
public static CsdlOnDeleteAction valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2013–2018 The Apache Software Foundation. All rights reserved.