public enum ViolationLevel extends Enum<ViolationLevel>
| Enum Constant and Description |
|---|
CRITICAL
This level is for not permissible violations
Stops propagation
|
ERROR
This level is for not permissible violations
Chain not affected
|
NOTICE
This level is for info messages
Chain not affected
|
PERMISSIBLE
This level is for permissible violations
Chain not affected
|
| Modifier and Type | Method and Description |
|---|---|
static ViolationLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ViolationLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ViolationLevel NOTICE
public static final ViolationLevel PERMISSIBLE
public static final ViolationLevel ERROR
public static final ViolationLevel CRITICAL
public static ViolationLevel[] values()
for (ViolationLevel c : ViolationLevel.values()) System.out.println(c);
public static ViolationLevel 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 © 2015. All Rights Reserved.