Enum JSTypeRegistry.ResolveMode
java.lang.Object
java.lang.Enum<JSTypeRegistry.ResolveMode>
com.google.javascript.rhino.jstype.JSTypeRegistry.ResolveMode
- All Implemented Interfaces:
Serializable
,Comparable<JSTypeRegistry.ResolveMode>
,java.lang.constant.Constable
- Enclosing class:
- JSTypeRegistry
The type registry has three modes, which control how type ASTs are
converted to types in
JSTypeRegistry.createFromTypeNodes(com.google.javascript.rhino.Node, java.lang.String, com.google.javascript.rhino.jstype.StaticScope<com.google.javascript.rhino.jstype.JSType>)
.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionExpressions and type names are evaluated aggressively.Expressions are converted into Unknown blobs that can be resolved into complex types.Expressions are evaluated. -
Method Summary
Modifier and TypeMethodDescriptionstatic JSTypeRegistry.ResolveMode
Returns the enum constant of this type with the specified name.static JSTypeRegistry.ResolveMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
LAZY_EXPRESSIONS
Expressions are converted into Unknown blobs that can be resolved into complex types. -
LAZY_NAMES
Expressions are evaluated. If any names in the expression point to unknown types, then we create a proxyNamedType
structure until the type can be resolved. This is the legacy way of resolving ways, and may not exist in the future. -
IMMEDIATE
Expressions and type names are evaluated aggressively. A warning will be emitted if a type name fails to resolve to a real type.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-