org.jetbrains.kotlin.types
Class ErrorUtils.UninferredParameterTypeConstructor

java.lang.Object
  extended by org.jetbrains.kotlin.types.ErrorUtils.UninferredParameterTypeConstructor
All Implemented Interfaces:
Annotated, TypeConstructor
Enclosing class:
ErrorUtils

public static class ErrorUtils.UninferredParameterTypeConstructor
extends java.lang.Object
implements TypeConstructor


Method Summary
 Annotations getAnnotations()
           
 KotlinBuiltIns getBuiltIns()
           
 ClassifierDescriptor getDeclarationDescriptor()
           
 java.util.List<TypeParameterDescriptor> getParameters()
          It may differ from ClassDescriptor.declaredParameters if the class is inner, in such case it also contains additional parameters from outer declarations.
 java.util.Collection<KotlinType> getSupertypes()
           
 TypeParameterDescriptor getTypeParameterDescriptor()
           
 boolean isDenotable()
          If the type is non-denotable, it can't be written in code directly, it only can appear internally inside a type checker.
 boolean isFinal()
          Cannot have subtypes.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getTypeParameterDescriptor

@NotNull
public TypeParameterDescriptor getTypeParameterDescriptor()

getParameters

@NotNull
public java.util.List<TypeParameterDescriptor> getParameters()
Description copied from interface: TypeConstructor
It may differ from ClassDescriptor.declaredParameters if the class is inner, in such case it also contains additional parameters from outer declarations.

Specified by:
getParameters in interface TypeConstructor
Returns:
list of parameters for type constructor, both from current declaration and the outer one

getSupertypes

@NotNull
public java.util.Collection<KotlinType> getSupertypes()
Specified by:
getSupertypes in interface TypeConstructor

isFinal

public boolean isFinal()
Description copied from interface: TypeConstructor
Cannot have subtypes.

Specified by:
isFinal in interface TypeConstructor

isDenotable

public boolean isDenotable()
Description copied from interface: TypeConstructor
If the type is non-denotable, it can't be written in code directly, it only can appear internally inside a type checker. Examples: intersection type or number value type.

Specified by:
isDenotable in interface TypeConstructor

getDeclarationDescriptor

@Nullable
public ClassifierDescriptor getDeclarationDescriptor()
Specified by:
getDeclarationDescriptor in interface TypeConstructor

getAnnotations

@NotNull
public Annotations getAnnotations()
Specified by:
getAnnotations in interface Annotated

getBuiltIns

@NotNull
public KotlinBuiltIns getBuiltIns()
Specified by:
getBuiltIns in interface TypeConstructor