MCPcopy Create free account
hub / github.com/dreamhead/moco / text

Method text

moco-core/src/main/java/com/github/dreamhead/moco/Moco.java:285–288  ·  view source on GitHub ↗
(final String text)

Source from the content-addressed store, hash-verified

283 }
284
285 public static ContentResource text(final String text) {
286 checkNotNull(text, "Text should not be null");
287 return text((request) -> text);
288 }
289
290 public static ContentResource text(final Function<Request, String> function) {
291 return textResource(checkNotNull(function, "Text function should not be null"));

Callers 15

byMethod · 0.95
eqMethod · 0.95
matchMethod · 0.95
startsWithMethod · 0.95
endsWithMethod · 0.95
containMethod · 0.95
withMethod · 0.95
headerMethod · 0.95
cookieMethod · 0.95
xmlMethod · 0.95
jsonMethod · 0.95
fileMethod · 0.95

Calls 1

textResourceMethod · 0.45