public enum SenderKind extends java.lang.Enum<SenderKind>
Enum Constant and Description |
---|
EMITTER
Code generation logic (MicroTESK).
|
LEXER
The lexer class (generated by ANTLR).
|
PARSER
The parser class (generated by ANTLR).
|
SEMANTIC
The semantic analyzer built on top of the tree parser (MicroTESK).
|
SYNTACTIC
The syntactic analyzer built on top of the parser (MicroTESK)
|
TREEWALKER
The tree parser class (generated by ANTLR).
|
Modifier and Type | Method and Description |
---|---|
static SenderKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SenderKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SenderKind LEXER
public static final SenderKind PARSER
public static final SenderKind SYNTACTIC
public static final SenderKind TREEWALKER
public static final SenderKind SEMANTIC
public static final SenderKind EMITTER
public static SenderKind[] values()
for (SenderKind c : SenderKind.values()) System.out.println(c);
public static SenderKind 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