public static enum Symbol.Kind extends Enum<Symbol.Kind>
| Enum Constant and Description |
|---|
CLASS |
FUNCTION |
PARAMETER |
VARIABLE |
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static Symbol.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Symbol.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Symbol.Kind VARIABLE
public static final Symbol.Kind FUNCTION
public static final Symbol.Kind PARAMETER
public static final Symbol.Kind CLASS
public static Symbol.Kind[] values()
for (Symbol.Kind c : Symbol.Kind.values()) System.out.println(c);
public static Symbol.Kind valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getValue()
Copyright © 2011–2015 SonarSource and Eriks Nukis. All rights reserved.