public enum ConstraintTarget extends Enum<ConstraintTarget>
Enum Constant and Description |
---|
IMPLICIT |
PARAMETERS |
RETURN_VALUE |
Modifier and Type | Method and Description |
---|---|
static ConstraintTarget |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConstraintTarget[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConstraintTarget IMPLICIT
public static final ConstraintTarget RETURN_VALUE
public static final ConstraintTarget PARAMETERS
public static ConstraintTarget[] values()
for (ConstraintTarget c : ConstraintTarget.values()) System.out.println(c);
public static ConstraintTarget 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 © 2017. All rights reserved.