public static enum RelationProperty.ReferentiaIntegrity extends Enum<RelationProperty.ReferentiaIntegrity>
| Enum Constant and Description |
|---|
onDeleteCascade
When the source Vertex is deleted also the target Vertex is always
deleted
|
onDeleteCascadeWhenOrphan
When the source Vertex is deleted also the target Vertex is deleted if
there are no other incoming edge.
|
onDeleteKeep
When the source Vertex is deleted also the target Vertex is keep.
|
| Modifier and Type | Method and Description |
|---|---|
static RelationProperty.ReferentiaIntegrity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RelationProperty.ReferentiaIntegrity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RelationProperty.ReferentiaIntegrity onDeleteCascadeWhenOrphan
public static final RelationProperty.ReferentiaIntegrity onDeleteCascade
public static final RelationProperty.ReferentiaIntegrity onDeleteKeep
public static RelationProperty.ReferentiaIntegrity[] values()
for (RelationProperty.ReferentiaIntegrity c : RelationProperty.ReferentiaIntegrity.values()) System.out.println(c);
public static RelationProperty.ReferentiaIntegrity 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 © 2016. All Rights Reserved.