public enum ClawDirective extends java.lang.Enum<ClawDirective>
Enum Constant and Description |
---|
ARRAY_TO_CALL |
ARRAY_TRANSFORM |
DEFINE |
IF_EXTRACT |
IGNORE |
KCACHE |
LOOP_EXTRACT |
LOOP_FUSION |
LOOP_HOIST |
LOOP_INTERCHANGE |
NO_DEP |
PARALLELIZE |
PRIMITIVE |
REMOVE |
VERBATIM |
Modifier and Type | Method and Description |
---|---|
static ClawDirective |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ClawDirective[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClawDirective ARRAY_TRANSFORM
public static final ClawDirective ARRAY_TO_CALL
public static final ClawDirective DEFINE
public static final ClawDirective IGNORE
public static final ClawDirective IF_EXTRACT
public static final ClawDirective KCACHE
public static final ClawDirective LOOP_FUSION
public static final ClawDirective LOOP_INTERCHANGE
public static final ClawDirective LOOP_HOIST
public static final ClawDirective LOOP_EXTRACT
public static final ClawDirective NO_DEP
public static final ClawDirective PRIMITIVE
public static final ClawDirective PARALLELIZE
public static final ClawDirective REMOVE
public static final ClawDirective VERBATIM
public static ClawDirective[] values()
for (ClawDirective c : ClawDirective.values()) System.out.println(c);
public static ClawDirective 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