package lombok.core; import java.util.Collection; /* loaded from: com.discord-118108.apk:lombok/core/ImportList.SCL.lombok */ public interface ImportList { String getFullyQualifiedNameForSimpleName(String str); String getFullyQualifiedNameForSimpleNameNoAliasing(String str); boolean hasStarImport(String str); Collection applyNameToStarImports(String str, String str2); String applyUnqualifiedNameToPackage(String str); }