MCPcopy Index your code
hub / github.com/google/dagger / apply

Method apply

java/dagger/internal/codegen/Formatter.java:45–50  ·  view source on GitHub ↗

Performs the transformation of an object into a string representation in conformity with the Function contract, delegating to #format(Object). @deprecated Call #format(Object) instead. This method exists to make formatters easy to use when functions ar

(T object)

Source from the content-addressed store, hash-verified

43 * use when functions are required, but shouldn't be called directly.
44 */
45 @SuppressWarnings("javadoc")
46 @Deprecated
47 @Override
48 public final String apply(T object) {
49 return format(object);
50 }
51
52 /**
53 * Formats {@code items}, one per line. Stops after {@code limit} items.

Callers 7

findMethodDescriptorsMethod · 0.45
toImmutableMapMethod · 0.45
tryAdvanceMethod · 0.45

Calls 1

formatMethod · 0.95

Tested by

no test coverage detected