public enum SoyBackendKind extends Enum<SoyBackendKind>
| Enum Constant and Description |
|---|
JBC_SRC |
JS_SRC |
PYTHON_SRC |
TOFU |
| Modifier and Type | Method and Description |
|---|---|
static SoyBackendKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SoyBackendKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SoyBackendKind TOFU
public static final SoyBackendKind JBC_SRC
public static final SoyBackendKind JS_SRC
public static final SoyBackendKind PYTHON_SRC
public static SoyBackendKind[] values()
for (SoyBackendKind c : SoyBackendKind.values()) System.out.println(c);
public static SoyBackendKind 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 null