package retrofit2; import java.lang.annotation.Annotation; import java.lang.reflect.ParameterizedType; import java.lang.reflect.Type; /* loaded from: classes.dex */ public interface CallAdapter { T adapt(Call call); Type responseType(); /* loaded from: classes.dex */ public static abstract class Factory { public abstract CallAdapter get(Type type, Annotation[] annotationArr, Retrofit retrofit); /* JADX INFO: Access modifiers changed from: protected */ public static Type getParameterUpperBound(int i, ParameterizedType parameterizedType) { return Utils.getParameterUpperBound(i, parameterizedType); } public static Class getRawType(Type type) { return Utils.getRawType(type); } } }