public enum WarningLevel extends Enum<WarningLevel>
Modifier and Type | Method and Description |
---|---|
void |
setOptionsForWarningLevel(CompilerOptions options) |
static WarningLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WarningLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WarningLevel QUIET
public static final WarningLevel DEFAULT
public static final WarningLevel VERBOSE
public static WarningLevel[] values()
for (WarningLevel c : WarningLevel.values()) System.out.println(c);
public static WarningLevel 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 nullpublic void setOptionsForWarningLevel(CompilerOptions options)
Copyright © 2009-2016 Google. All Rights Reserved.