public static enum Profiler.ConstraintHandling extends Enum<Profiler.ConstraintHandling>
Enum Constant and Description |
---|
keep
Constraints will be kept as is.
|
remove
Constraints will be removed completely.
|
removeByPropertyNameInConstraintName
A class constraint whose name contains the name of a property that is
being removed by the profiler will be removed.
|
Modifier and Type | Method and Description |
---|---|
static Profiler.ConstraintHandling |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Profiler.ConstraintHandling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Profiler.ConstraintHandling remove
public static final Profiler.ConstraintHandling keep
public static final Profiler.ConstraintHandling removeByPropertyNameInConstraintName
public static Profiler.ConstraintHandling[] values()
for (Profiler.ConstraintHandling c : Profiler.ConstraintHandling.values()) System.out.println(c);
public static Profiler.ConstraintHandling 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 © 2018. All rights reserved.