public enum LintSeverity extends java.lang.Enum<LintSeverity>
Modifier and Type | Method and Description |
---|---|
static LintSeverity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LintSeverity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LintSeverity low
public static final LintSeverity medium
public static final LintSeverity high
public static final LintSeverity critical
public static LintSeverity[] values()
for (LintSeverity c : LintSeverity.values()) System.out.println(c);
public static LintSeverity 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 © 2000-2019 Sualeh Fatehi. All rights reserved.