| Interface | Description |
|---|---|
| AnnotationArgumentFormatter<T extends java.lang.annotation.Annotation> |
Interface for defining a formatter for a custom annotation using the
AnnotationFormat annotation. |
| ArgumentFormatter<T> |
Interface for defining custom argument formatter using the
Format annotation. |
| Formatter<T> |
Interface for defining a global argument formatter.
|
| Class | Description |
|---|---|
| BooleanFormatter |
General formatter to format boolean values.
|
| DefaultFormatter<T> |
A default formatter that merely use
String.valueOf(Object),
except for arrays where Arrays.deepToString(Object[]) is used. |
| NotFormatter |
Translates
false to the word "not" and true to the empty word "". |
| PrintfAnnotationFormatter |
AnnotationArgumentFormatter that is used by the Formatf
annotation |
| PrintfFormatter |
Formatter to use a Java format string to format arguments.
|
| TableFormatter |
Special formatter that will format arguments as a table.
|