public enum LintSeverity extends Enum<LintSeverity>
| Modifier and Type | Method and Description |
|---|---|
static LintSeverity |
valueOf(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 off
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(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 © 2003–2013 Sualeh Fatehi. All rights reserved.