public enum WarningHandlingLevel extends Enum<WarningHandlingLevel>
| Modifier and Type | Method and Description |
|---|---|
static WarningHandlingLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WarningHandlingLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WarningHandlingLevel SUPPRESS
public static final WarningHandlingLevel NORMAL
public static final WarningHandlingLevel AS_ERROR
public static WarningHandlingLevel[] values()
for (WarningHandlingLevel c : WarningHandlingLevel.values()) System.out.println(c);
public static WarningHandlingLevel 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 © 2012–2022. All rights reserved.