public static enum IntegrityCheckReport.Severity extends java.lang.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(java.lang.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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2004-2007 Dmitry Olshansky. All Rights Reserved.