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