org.jetbrains.kotlin.descriptors.ClassDescriptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-compiler-embeddable Show documentation
Show all versions of kotlin-compiler-embeddable Show documentation
the Kotlin compiler embeddable
/*
* Copyright 2000-2018 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.descriptors;
import kotlin.annotations.jvm.ReadOnly;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.jetbrains.kotlin.mpp.RegularClassSymbolMarker;
import org.jetbrains.kotlin.resolve.scopes.MemberScope;
import org.jetbrains.kotlin.types.SimpleType;
import org.jetbrains.kotlin.types.TypeProjection;
import org.jetbrains.kotlin.types.TypeSubstitution;
import java.util.Collection;
import java.util.List;
public interface ClassDescriptor extends ClassifierDescriptorWithTypeParameters, ClassOrPackageFragmentDescriptor,
RegularClassSymbolMarker {
@NotNull
MemberScope getMemberScope(@NotNull List extends TypeProjection> typeArguments);
@NotNull
MemberScope getMemberScope(@NotNull TypeSubstitution typeSubstitution);
@NotNull
MemberScope getUnsubstitutedMemberScope();
@NotNull
MemberScope getUnsubstitutedInnerClassesScope();
@NotNull
MemberScope getStaticScope();
@NotNull
@ReadOnly
Collection getConstructors();
@Override
@NotNull
DeclarationDescriptor getContainingDeclaration();
/**
* @return type A<T> for the class A<T>
*/
@NotNull
@Override
SimpleType getDefaultType();
/**
* @return nested object declared as 'companion' if one is present.
*/
@Nullable
ClassDescriptor getCompanionObjectDescriptor();
@NotNull
ClassKind getKind();
@Override
@NotNull
Modality getModality();
@Override
@NotNull
DescriptorVisibility getVisibility();
boolean isCompanionObject();
boolean isData();
boolean isInline();
boolean isFun();
boolean isValue();
@NotNull
ReceiverParameterDescriptor getThisAsReceiverParameter();
@NotNull
@ReadOnly
List getContextReceivers();
@Nullable
ClassConstructorDescriptor getUnsubstitutedPrimaryConstructor();
/**
* It may differ from 'typeConstructor.parameters' in current class is inner, 'typeConstructor.parameters' contains
* captured parameters from outer declaration.
* @return list of type parameters actually declared type parameters in current class
*/
@Override
@ReadOnly
@NotNull
List getDeclaredTypeParameters();
/**
* @return direct subclasses of this class if it's a sealed class, empty list otherwise
*/
@ReadOnly
@NotNull
Collection getSealedSubclasses();
@Nullable
ValueClassRepresentation getValueClassRepresentation();
@NotNull
@Override
ClassDescriptor getOriginal();
// Use SingleAbstractMethodUtils.getFunctionTypeForSamInterface() where possible. This is only a fallback
@Nullable
SimpleType getDefaultFunctionTypeForSamInterface();
/**
* May return false even in case when the class is not SAM interface, but returns true only if it's definitely not a SAM.
* But it should work much faster than the exact check.
*/
boolean isDefinitelyNotSamInterface();
}