MCPcopy Create free account
hub / github.com/apache/groovy / getName

Method getName

src/main/java/org/codehaus/groovy/ast/GenericsType.java:180–182  ·  view source on GitHub ↗

Returns the name of this generic type. For wildcard types, returns "?"; otherwise returns the type name. @return the type name

()

Source from the content-addressed store, hash-verified

178 * @return the type name
179 */
180 public String getName() {
181 return (isWildcard() ? "?" : name);
182 }
183
184 /**
185 * Sets the name of this generic type.

Callers 13

genericsBoundsMethod · 0.95
isCompatibleWithMethod · 0.95
areEqualWithGenericsMethod · 0.95
alignGenericTypesMethod · 0.95
extractPlaceholdersMethod · 0.95
fullyResolveTypeMethod · 0.95

Calls 1

isWildcardMethod · 0.95

Tested by

no test coverage detected