public static enum UserServiceTransaction.DeletedObjectOutcome extends Enum<UserServiceTransaction.DeletedObjectOutcome>
| Enum Constant and Description | 
|---|
FAIL
The transaction will fail. 
 | 
IGNORE
The transaction will proceed with no warnings. 
 | 
WARNING
The user interface will automatically report a warning. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static UserServiceTransaction.DeletedObjectOutcome | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static UserServiceTransaction.DeletedObjectOutcome[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final UserServiceTransaction.DeletedObjectOutcome IGNORE
public static final UserServiceTransaction.DeletedObjectOutcome WARNING
public static final UserServiceTransaction.DeletedObjectOutcome FAIL
public static UserServiceTransaction.DeletedObjectOutcome[] values()
for (UserServiceTransaction.DeletedObjectOutcome c : UserServiceTransaction.DeletedObjectOutcome.values()) System.out.println(c);
public static UserServiceTransaction.DeletedObjectOutcome 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 null