Package org.openjdk.asmtools.jasm
Class JasmTokens
- java.lang.Object
-
- org.openjdk.asmtools.jasm.JasmTokens
-
public class JasmTokens extends java.lang.Object
JasmTokens This class contains tokens specific to parsing JASM syntax. The classes in JasmTokens are following a Singleton Pattern. These classes are Enums, and they are contained in private hash maps (lookup tables and reverse lookup tables). These hash maps all have public accessors, which clients use to look-up enums. Tokens in this table carry no external state, and are typically treated as constants. They do not need to be reset.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
JasmTokens.AnnotationType
static class
JasmTokens.KeywordType
static class
JasmTokens.Token
Scanner Tokens (Definitive List)static class
JasmTokens.TokenType
-
Constructor Summary
Constructors Constructor Description JasmTokens()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JasmTokens.Token
keyword_token_ident(java.lang.String idValue)
-
-
-
Method Detail
-
keyword_token_ident
public static JasmTokens.Token keyword_token_ident(java.lang.String idValue)
-
-