public enum LinkConstraintFailureMode extends Enum<LinkConstraintFailureMode>
| Enum Constant and Description | 
|---|
IGNORE
If the link constraint cannot be honoured, ignore and continue. 
 | 
THROW_EXCEPTION
If the link constraint cannot be honoured, throw an exception. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static LinkConstraintFailureMode | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static LinkConstraintFailureMode[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final LinkConstraintFailureMode THROW_EXCEPTION
public static final LinkConstraintFailureMode IGNORE
public static LinkConstraintFailureMode[] values()
for (LinkConstraintFailureMode c : LinkConstraintFailureMode.values()) System.out.println(c);
public static LinkConstraintFailureMode 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 © 2021. All rights reserved.