Searched refs:boundedType (Results 1 – 4 of 4) sorted by relevance
43 private ResolvedType boundedType; field in ResolvedWildcard45 private ResolvedWildcard(BoundType type, ResolvedType boundedType) { in ResolvedWildcard() argument46 if (type == null && boundedType != null) { in ResolvedWildcard()49 if (type != null && boundedType == null) { in ResolvedWildcard()53 this.boundedType = boundedType; in ResolvedWildcard()68 ", boundedType=" + boundedType + in toString()87 …if (boundedType != null ? !boundedType.equals(that.boundedType) : that.boundedType != null) return… in equals()96 result = 31 * result + (boundedType != null ? boundedType.hashCode() : 0); in hashCode()105 return "? super " + boundedType.describe(); in describe()107 return "? extends " + boundedType.describe(); in describe()[all …]
37 private Type boundedType; field in Wildcard39 private Wildcard(BoundType type, Type boundedType) { in Wildcard() argument40 if (type == null && boundedType != null) { in Wildcard()43 if (type != null && boundedType == null) { in Wildcard()47 this.boundedType = boundedType; in Wildcard()62 ", boundedType=" + boundedType + in toString()81 …if (boundedType != null ? !boundedType.equals(that.boundedType) : that.boundedType != null) return… in equals()90 result = 31 * result + (boundedType != null ? boundedType.hashCode() : 0); in hashCode()99 return "? super " + boundedType.describe(); in describe()101 return "? extends " + boundedType.describe(); in describe()[all …]
1 Line 81) boundedType.equals(that.boundedType) ==> java.lang.Object.equals(java.lang.Object)3 Line 90) boundedType.hashCode() ==> java.lang.Object.hashCode()4 …Line 99) boundedType.describe() ==> com.github.javaparser.symbolsolver.model.typesystem.Type.descr…5 …Line 101) boundedType.describe() ==> com.github.javaparser.symbolsolver.model.typesystem.Type.desc…8 …Line 132) boundedType.isAssignableBy(other) ==> com.github.javaparser.symbolsolver.model.typesyste…9 …Line 148) boundedType.replaceTypeVariables(tpToReplace, replaced, inferredTypes) ==> com.github.ja…
176 …GenericMetadataSupport.BoundedType boundedType = (GenericMetadataSupport.BoundedType) typeVariable… in paramType_with_wildcard_return_type_of____returning_wildcard_with_class_lower_bound____resolved_to_List_and_type_argument_to_Integer() local177 assertThat(boundedType.firstBound()).isEqualTo(Integer.class); in paramType_with_wildcard_return_type_of____returning_wildcard_with_class_lower_bound____resolved_to_List_and_type_argument_to_Integer()178 assertThat(boundedType.interfaceBounds()).isEmpty(); in paramType_with_wildcard_return_type_of____returning_wildcard_with_class_lower_bound____resolved_to_List_and_type_argument_to_Integer()186 …GenericMetadataSupport.BoundedType boundedType = (GenericMetadataSupport.BoundedType) typeVariable… in paramType_with_wildcard_return_type_of____returning_wildcard_with_typeVar_lower_bound____resolved_to_List_and_type_argument_to_Integer() local188 assertThat(inferFrom(boundedType.firstBound()).rawType()).isEqualTo(Comparable.class); in paramType_with_wildcard_return_type_of____returning_wildcard_with_typeVar_lower_bound____resolved_to_List_and_type_argument_to_Integer()189 assertThat(boundedType.interfaceBounds()).contains(Cloneable.class); } in paramType_with_wildcard_return_type_of____returning_wildcard_with_typeVar_lower_bound____resolved_to_List_and_type_argument_to_Integer()196 …GenericMetadataSupport.BoundedType boundedType = (GenericMetadataSupport.BoundedType) typeVariable… in paramType_with_wildcard_return_type_of____returning_wildcard_with_typeVar_upper_bound____resolved_to_List_and_type_argument_to_Integer() local198 assertThat(inferFrom(boundedType.firstBound()).rawType()).isEqualTo(Comparable.class); in paramType_with_wildcard_return_type_of____returning_wildcard_with_typeVar_upper_bound____resolved_to_List_and_type_argument_to_Integer()199 assertThat(boundedType.interfaceBounds()).contains(Cloneable.class); in paramType_with_wildcard_return_type_of____returning_wildcard_with_typeVar_upper_bound____resolved_to_List_and_type_argument_to_Integer()