public static enum Directive.Kind extends java.lang.Enum<Directive.Kind>
Modifier and Type | Method and Description |
---|---|
static Directive.Kind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Directive.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Directive.Kind ALIGN
public static final Directive.Kind ORIGIN
public static final Directive.Kind LABEL
public static final Directive.Kind DATA
public static final Directive.Kind TEXT
public static Directive.Kind[] values()
for (Directive.Kind c : Directive.Kind.values()) System.out.println(c);
public static Directive.Kind 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