Home | History | Annotate | Download | only in reflect

Lines Matching refs:subtype

356    * Returns the set of interfaces and classes that this type is or is a subtype of. The returned
360 * necessarily a subtype of all the types following. Order between types without subtype
394 * Returns subtype of {@code this} with {@code subclass} as the raw class.
400 "Cannot get subtype of type variable <%s>", this);
411 TypeToken<? extends T> subtype = (TypeToken<? extends T>)
413 return subtype;
544 * The set of interfaces and classes that {@code T} is or is a subtype of. {@link Object} is not
1013 // array is covariant. component type is subtype, so is the array type.
1016 @SuppressWarnings("unchecked") // component type is subtype, so is array type.
1030 // Base<String, Integer>.subtype(Sub.class):