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