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

Method rawTypes

output/java_guava/1.4.19/TypeToken.java:718–723  ·  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

716
717
718 public Set<Class<? super T>> rawTypes() {
719 // Java has no way to express ? super T when we parameterize TypeToken vs. Class.
720 @SuppressWarnings({"unchecked", "rawtypes"})
721 ImmutableList<Class<? super T>> collectedTypes = (ImmutableList) TypeCollector.FOR_RAW_TYPE.collectTypes(getRawTypes());
722 return ImmutableSet.copyOf(collectedTypes);
723 }
724
725
726 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