Package com.tngtech.jgiven.format
-
Interface Summary Interface Description AnnotationArgumentFormatter<T extends java.lang.annotation.Annotation> Interface for defining a formatter for a custom annotation using theAnnotationFormat
annotation.ArgumentFormatter<T> Interface for defining custom argument formatter using theFormat
annotation.Formatter<T> Interface for defining a global argument formatter.ObjectFormatter<T> General interface to format Objects to Strings -
Class Summary Class Description BooleanFormatter General formatter to format boolean values.DateFormatter General formatter to formatDate
values.DefaultFormatter<T> A default formatter that merely useString.valueOf(Object)
, except for arrays whereArrays.deepToString(Object[])
is used.DefaultObjectFormatter A default formatter forObject
typesNotFormatter Translatesfalse
to the word "not" andtrue
to the empty word "".POJOAnnotationFormatter AnnotationArgumentFormatter
that is used by thePOJOFormat
annotationPrintfAnnotationFormatter AnnotationArgumentFormatter
that is used by theFormatf
annotationPrintfFormatter Formatter to use a Java format string to format arguments.