Home
last modified time | relevance | path

Searched refs:boundsOf (Results 1 – 1 of 1) sorted by relevance

/external/mockito/src/main/java/org/mockito/internal/util/reflection/
DGenericMetadataSupport.java120 … contextualActualTypeParameters.put(typeParameter, boundsOf((WildcardType) actualTypeArgument)); in registerTypeVariablesOn()
136 contextualActualTypeParameters.put(typeVariable, boundsOf(typeVariable)); in registerTypeVariableIfNotPresent()
146 private BoundedType boundsOf(TypeVariable<?> typeParameter) { in boundsOf() method in GenericMetadataSupport
148 return boundsOf((TypeVariable<?>) typeParameter.getBounds()[0]); in boundsOf()
158 private BoundedType boundsOf(WildcardType wildCard) { in boundsOf() method in GenericMetadataSupport
167 return boundsOf((TypeVariable<?>) wildCardBoundedType.firstBound()); in boundsOf()