public static enum Entity.ValidationLevel extends Enum<Entity.ValidationLevel>
| Modifier and Type | Method and Description |
|---|---|
static Entity.ValidationLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Entity.ValidationLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Entity.ValidationLevel off
public static final Entity.ValidationLevel strict
public static final Entity.ValidationLevel moderate
public static Entity.ValidationLevel[] values()
for (Entity.ValidationLevel c : Entity.ValidationLevel.values()) System.out.println(c);
public static Entity.ValidationLevel 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.