public static enum ValidationReport.IssueLevel extends Enum<ValidationReport.IssueLevel>
Modifier and Type | Method and Description |
---|---|
static ValidationReport.IssueLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValidationReport.IssueLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValidationReport.IssueLevel error
public static final ValidationReport.IssueLevel warning
public static final ValidationReport.IssueLevel info
public static ValidationReport.IssueLevel[] values()
for (ValidationReport.IssueLevel c : ValidationReport.IssueLevel.values()) System.out.println(c);
public static ValidationReport.IssueLevel 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 © 2010-2013 The Apache Software Foundation. All Rights Reserved.