public enum DeleteMode extends java.lang.Enum<DeleteMode>
BaseEntity.delete
,
BaseEntity.delete
Enum Constant and Description |
---|
CheckRetainMetadata
Chooses between a hard and logical deletion based
upon the "RetainMetadata" property value of the
file plan containing the entity.
|
ForceHardDelete
Forces a hard deletion of an entity dependent on
any delete validation results.
|
ForceLogicalDelete
Forces logical deletion of an entity.
|
Modifier and Type | Method and Description |
---|---|
static DeleteMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DeleteMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeleteMode ForceHardDelete
public static final DeleteMode ForceLogicalDelete
public static final DeleteMode CheckRetainMetadata
public static DeleteMode[] values()
for (DeleteMode c : DeleteMode.values()) System.out.println(c);
public static DeleteMode 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 null© Copyright IBM Corp. 2010, 2013. All Rights Reserved.