public static enum IntegrityCheckReport.Severity extends Enum<IntegrityCheckReport.Severity>
Enum Constant and Description |
---|
ERROR
Integrity check report item severity constant.
|
INFO
Integrity check report item severity constant.
|
WARNING
Integrity check report item severity constant.
|
Modifier and Type | Method and Description |
---|---|
static IntegrityCheckReport.Severity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IntegrityCheckReport.Severity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IntegrityCheckReport.Severity ERROR
public static final IntegrityCheckReport.Severity WARNING
public static final IntegrityCheckReport.Severity INFO
public static IntegrityCheckReport.Severity[] values()
for (IntegrityCheckReport.Severity c : IntegrityCheckReport.Severity.values()) System.out.println(c);
public static IntegrityCheckReport.Severity 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.