Package org.apache.any23.extractor
Enum IssueReport.IssueLevel
- java.lang.Object
-
- java.lang.Enum<IssueReport.IssueLevel>
-
- org.apache.any23.extractor.IssueReport.IssueLevel
-
- All Implemented Interfaces:
Serializable
,Comparable<IssueReport.IssueLevel>
- Enclosing interface:
- IssueReport
public static enum IssueReport.IssueLevel extends Enum<IssueReport.IssueLevel>
Possible issue levels.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
WARNING
public static final IssueReport.IssueLevel WARNING
-
ERROR
public static final IssueReport.IssueLevel ERROR
-
FATAL
public static final IssueReport.IssueLevel FATAL
-
-
Method Detail
-
values
public static IssueReport.IssueLevel[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IssueReport.IssueLevel c : IssueReport.IssueLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IssueReport.IssueLevel valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-