| java.lang.Object com.sun.tools.javac.code.Kinds
Kinds | public class Kinds (Code) | | Internal symbol kinds, which distinguish between elements of
different subclasses of Symbol. Symbol kinds are organized so they can be
or'ed to sets.
This is NOT part of any API supported by Sun Microsystems. If
you write code that depends on this, you do so at your own risk.
This code and its internal interfaces are subject to change or
deletion without notice.
|
Field Summary | |
final public static int | ABSENT_MTH | final public static int | ABSENT_TYP | final public static int | ABSENT_VAR | final public static int | AMBIGUOUS | final public static int | AllKinds The set of all kinds. | final public static int | ERR The error kind, which includes all other kinds. | final public static int | ERRONEOUS | final public static int | HIDDEN | final public static int | MTH The kind of methods. | final public static int | NIL The empty set of kinds. | final public static int | PCK The kind of package symbols. | final public static int | STATICERR | final public static int | TYP The kind of type symbols (classes, interfaces and type variables). | final public static int | VAL The kind of values (variables or non-variable expressions), includes VAR. | final public static int | VAR The kind of variable symbols. | final public static int | WRONG_MTH | final public static int | WRONG_MTHS |
ABSENT_MTH | final public static int ABSENT_MTH(Code) | | |
ABSENT_TYP | final public static int ABSENT_TYP(Code) | | |
ABSENT_VAR | final public static int ABSENT_VAR(Code) | | |
AMBIGUOUS | final public static int AMBIGUOUS(Code) | | |
AllKinds | final public static int AllKinds(Code) | | The set of all kinds.
|
ERR | final public static int ERR(Code) | | The error kind, which includes all other kinds.
|
ERRONEOUS | final public static int ERRONEOUS(Code) | | Kinds for erroneous symbols that complement the above
|
HIDDEN | final public static int HIDDEN(Code) | | |
MTH | final public static int MTH(Code) | | The kind of methods.
|
NIL | final public static int NIL(Code) | | The empty set of kinds.
|
PCK | final public static int PCK(Code) | | The kind of package symbols.
|
STATICERR | final public static int STATICERR(Code) | | |
TYP | final public static int TYP(Code) | | The kind of type symbols (classes, interfaces and type variables).
|
VAL | final public static int VAL(Code) | | The kind of values (variables or non-variable expressions), includes VAR.
|
VAR | final public static int VAR(Code) | | The kind of variable symbols.
|
WRONG_MTH | final public static int WRONG_MTH(Code) | | |
WRONG_MTHS | final public static int WRONG_MTHS(Code) | | |
|
|