MCPcopy Create free account
hub / github.com/antlr/codebuff / rawTypes

Method rawTypes

output/java_guava/1.4.17/TypeToken.java:717–722  ·  view source on GitHub ↗

Returns the raw types of the types in this set, in the same order.

()

Source from the content-addressed store, hash-verified

715
716
717 public Set<Class<? super T>> rawTypes() {
718 // Java has no way to express ? super T when we parameterize TypeToken vs. Class.
719 @SuppressWarnings({"unchecked", "rawtypes"})
720 ImmutableList<Class<? super T>> collectedTypes = (ImmutableList) TypeCollector.FOR_RAW_TYPE.collectTypes(getRawTypes());
721 return ImmutableSet.copyOf(collectedTypes);
722 }
723
724
725 private static final long serialVersionUID = 0;

Callers 2

loadMethod · 0.45

Calls 3

copyOfMethod · 0.95
collectTypesMethod · 0.45
getRawTypesMethod · 0.45

Tested by

no test coverage detected