public static enum GoloCompilationException.Problem.Type extends java.lang.Enum<GoloCompilationException.Problem.Type>
Modifier and Type | Method and Description |
---|---|
static GoloCompilationException.Problem.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GoloCompilationException.Problem.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GoloCompilationException.Problem.Type PARSING
public static final GoloCompilationException.Problem.Type AUGMENT_FUNCTION_NO_ARGS
public static final GoloCompilationException.Problem.Type UNDECLARED_REFERENCE
public static final GoloCompilationException.Problem.Type ASSIGN_CONSTANT
public static final GoloCompilationException.Problem.Type BREAK_OR_CONTINUE_OUTSIDE_LOOP
public static final GoloCompilationException.Problem.Type REFERENCE_ALREADY_DECLARED_IN_BLOCK
public static final GoloCompilationException.Problem.Type UNINITIALIZED_REFERENCE_ACCESS
public static final GoloCompilationException.Problem.Type INVALID_ENCODING
public static final GoloCompilationException.Problem.Type INCOMPLETE_NAMED_ARGUMENTS_USAGE
public static final GoloCompilationException.Problem.Type AMBIGUOUS_DECLARATION
public static final GoloCompilationException.Problem.Type UNKNOWN_MACRO
public static final GoloCompilationException.Problem.Type MACRO_EXPANSION
public static GoloCompilationException.Problem.Type[] values()
for (GoloCompilationException.Problem.Type c : GoloCompilationException.Problem.Type.values()) System.out.println(c);
public static GoloCompilationException.Problem.Type 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