Uses of Class
org.openjdk.asmtools.jcoder.JcodTokens.Token
-
Packages that use JcodTokens.Token Package Description org.openjdk.asmtools.jcoder -
-
Uses of JcodTokens.Token in org.openjdk.asmtools.jcoder
Fields in org.openjdk.asmtools.jcoder declared as JcodTokens.Token Modifier and Type Field Description protected JcodTokens.Token
Scanner. token
Current tokenFields in org.openjdk.asmtools.jcoder with type parameters of type JcodTokens.Token Modifier and Type Field Description private static java.util.HashMap<java.lang.String,JcodTokens.Token>
JcodTokens. ParsekeyToKeywords
private static java.util.HashMap<java.lang.String,JcodTokens.Token>
JcodTokens. ParsekeyToTokens
private static java.util.HashMap<java.lang.String,JcodTokens.Token>
JcodTokens. SymbolToKeywords
private static java.util.HashMap<java.lang.String,JcodTokens.Token>
JcodTokens. SymbolToTokens
private static java.util.HashMap<java.lang.Integer,JcodTokens.Token>
JcodTokens. TagToKeywords
private static java.util.HashMap<java.lang.Integer,JcodTokens.Token>
JcodTokens. TagToTokens
Methods in org.openjdk.asmtools.jcoder that return JcodTokens.Token Modifier and Type Method Description static JcodTokens.Token
JcodTokens. keyword_token(int tk)
static JcodTokens.Token
JcodTokens. keyword_token(java.lang.String parsekey)
static JcodTokens.Token
JcodTokens. keyword_token_ID(java.lang.String ID)
static JcodTokens.Token
JcodTokens. keyword_token_ident(java.lang.String idValue)
static JcodTokens.Token
JcodTokens. token(int tk)
static JcodTokens.Token
JcodTokens. token(java.lang.String parsekey)
static JcodTokens.Token
JcodTokens. token_ID(java.lang.String ID)
static JcodTokens.Token
JcodTokens.Token. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static JcodTokens.Token[]
JcodTokens.Token. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.openjdk.asmtools.jcoder with parameters of type JcodTokens.Token Modifier and Type Method Description private void
Jcoder. expect(JcodTokens.Token t)
Expect a token, return its value, scan the next token or throw an exception.protected void
Scanner. match(JcodTokens.Token open, JcodTokens.Token close)
Scan to a matching '}', ']' or ')'.private void
Jcoder. parseClass(JcodTokens.Token prev)
Parse a class or interface declaration.private static void
JcodTokens. registerToken(JcodTokens.Token tk)
-