Enum Class Keywords
- All Implemented Interfaces:
Serializable
,Comparable<Keywords>
,Constable
The JavaScript keywords.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic Keywords
static Keywords
static TokenType
getTokenType
(String value) static boolean
static boolean
static boolean
isStrictKeyword
(TokenType token) Returns true iftoken
is a "future reserved word" which can be used as a variable identifier, but only in non-strict mode.toString()
static Keywords
Returns the enum constant of this class with the specified name.static Keywords[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BREAK
-
CASE
-
CATCH
-
CONTINUE
-
DEBUGGER
-
DEFAULT
-
DELETE
-
DO
-
ELSE
-
FINALLY
-
FOR
-
FUNCTION
-
IF
-
IN
-
INSTANCEOF
-
NEW
-
RETURN
-
SWITCH
-
THIS
-
THROW
-
TRY
-
TYPEOF
-
VAR
-
VOID
-
WHILE
-
WITH
-
CLASS
-
CONST
-
ENUM
-
EXPORT
-
EXTENDS
-
IMPORT
-
SUPER
-
IMPLEMENTS
-
INTERFACE
-
LET
-
PACKAGE
-
PRIVATE
-
PROTECTED
-
PUBLIC
-
STATIC
-
YIELD
-
NULL
-
TRUE
-
FALSE
-
-
Field Details
-
value
-
type
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
-
isKeyword
-
isKeyword
-
isStrictKeyword
Returns true iftoken
is a "future reserved word" which can be used as a variable identifier, but only in non-strict mode. -
getTokenType
-
get
-
get
-