Enum Constant and Description |
---|
FINAL |
INSTANCE |
INTERFACE |
INTERNAL |
METAONLY |
MODULE |
OVERRIDE |
READONLY |
SYSTEM |
Modifier and Type | Method and Description |
---|---|
static Qual |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Qual[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Qual FINAL
public static final Qual INSTANCE
public static final Qual INTERFACE
public static final Qual INTERNAL
public static final Qual METAONLY
public static final Qual MODULE
public static final Qual OVERRIDE
public static final Qual READONLY
public static final Qual SYSTEM
public static Qual[] values()
for (Qual c : Qual.values()) System.out.println(c);
public static Qual 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 null