public static enum Symbol.Kind extends Enum<Symbol.Kind>
| Enum Constant and Description |
|---|
BUILT_IN |
REGISTERED |
REGULAR |
| Modifier and Type | Method and Description |
|---|---|
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 REGULAR
public static final Symbol.Kind BUILT_IN
public static final Symbol.Kind REGISTERED
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 nullCopyright © 2025 HtmlUnit. All rights reserved.