Lines Matching defs:Description
4 * A description of a Matcher. A Matcher will describe itself to a description
7 * @see Matcher#describeTo(Description)
9 public interface Description {
12 * Appends some plain text to the description.
14 Description appendText(String text);
17 * Appends the description of a {@link SelfDescribing} value to this description.
19 Description appendDescriptionOf(SelfDescribing value);
22 * Appends an arbitary value to the description.
24 Description appendValue(Object value);
27 * Appends a list of values to the description.
29 <T> Description appendValueList(String start, String separator, String end,
33 * Appends a list of values to the description.
35 <T> Description appendValueList(String start, String separator, String end,
40 * to the description.
42 Description appendList(String start, String separator, String end,