Uses of Interface
org.hamcrest.Description

Packages that use Description
org.hamcrest The stable API defining Matcher and its associated interfaces and classes. 
org.hamcrest.core Fundamental matchers of objects and values, and composite matchers. 
org.hamcrest.internal   
org.junit.internal   
org.junit.internal.matchers   
 

Uses of Description in org.hamcrest
 

Classes in org.hamcrest that implement Description
 class BaseDescription
          A Description that is stored as a string.
 class StringDescription
          A Description that is stored as a string.
 

Methods in org.hamcrest that return Description
 Description Description.appendDescriptionOf(SelfDescribing value)
          Appends the description of a SelfDescribing value to this description.
 Description BaseDescription.appendDescriptionOf(SelfDescribing value)
           
 Description Description.appendList(String start, String separator, String end, Iterable<? extends SelfDescribing> values)
          Appends a list of SelfDescribing objects to the description.
 Description BaseDescription.appendList(String start, String separator, String end, Iterable<? extends SelfDescribing> values)
           
 Description Description.appendText(String text)
          Appends some plain text to the description.
 Description BaseDescription.appendText(String text)
           
 Description Description.appendValue(Object value)
          Appends an arbitary value to the description.
 Description BaseDescription.appendValue(Object value)
           
<T> Description
Description.appendValueList(String start, String separator, String end, Iterable<T> values)
          Appends a list of values to the description.
<T> Description
BaseDescription.appendValueList(String start, String separator, String end, Iterable<T> values)
           
<T> Description
Description.appendValueList(String start, String separator, String end, T... values)
          Appends a list of values to the description.
<T> Description
BaseDescription.appendValueList(String start, String separator, String end, T... values)
           
 

Methods in org.hamcrest with parameters of type Description
 void SelfDescribing.describeTo(Description description)
          Generates a description of the object.
 

Uses of Description in org.hamcrest.core
 

Methods in org.hamcrest.core with parameters of type Description
 void IsSame.describeTo(Description description)
           
 void IsNull.describeTo(Description description)
           
 void IsNot.describeTo(Description description)
           
 void IsInstanceOf.describeTo(Description description)
           
 void IsEqual.describeTo(Description description)
           
 void IsAnything.describeTo(Description description)
           
 void Is.describeTo(Description description)
           
 void DescribedAs.describeTo(Description description)
           
 void AnyOf.describeTo(Description description)
           
 void AllOf.describeTo(Description description)
           
 

Uses of Description in org.hamcrest.internal
 

Methods in org.hamcrest.internal with parameters of type Description
 void SelfDescribingValue.describeTo(Description description)
           
 

Uses of Description in org.junit.internal
 

Methods in org.junit.internal with parameters of type Description
 void AssumptionViolatedException.describeTo(Description description)
           
 

Uses of Description in org.junit.internal.matchers
 

Methods in org.junit.internal.matchers with parameters of type Description
 void SubstringMatcher.describeTo(Description description)
           
 void IsCollectionContaining.describeTo(Description description)
           
 void CombinableMatcher.describeTo(Description description)