Enum Class AbstractType.Kind
java.lang.Object
java.lang.Enum<AbstractType.Kind>
org.checkerframework.framework.util.typeinference8.types.AbstractType.Kind
- All Implemented Interfaces:
Serializable
,Comparable<AbstractType.Kind>
,Constable
- Enclosing class:
- AbstractType
The kind of
AbstractType
.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionInferenceType
, a type that contains inference variables, but is not an inference variable.ProperType
,a type that contains no inference variables*UseOfVariable
, a use of an inference variable. -
Method Summary
Modifier and TypeMethodDescriptionstatic AbstractType.Kind
Returns the enum constant of this class with the specified name.static AbstractType.Kind[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PROPER
ProperType
,a type that contains no inference variables* -
USE_OF_VARIABLE
UseOfVariable
, a use of an inference variable. -
INFERENCE_TYPE
InferenceType
, a type that contains inference variables, but is not an inference variable.
-
-
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
-