public enum V8ValueSymbolType extends java.lang.Enum<V8ValueSymbolType>
| Enum Constant and Description |
|---|
BuiltIn
Built-in: ES built-in symbol type.
|
Custom
Custom: User defined symbol type.
|
None
None: Not a symbol.
|
| Modifier and Type | Method and Description |
|---|---|
static V8ValueSymbolType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static V8ValueSymbolType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final V8ValueSymbolType None
public static final V8ValueSymbolType BuiltIn
public static final V8ValueSymbolType Custom
public static V8ValueSymbolType[] values()
for (V8ValueSymbolType c : V8ValueSymbolType.values()) System.out.println(c);
public static V8ValueSymbolType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null