Interface AnnotatedTypeFormatter
-
- All Known Implementing Classes:
DefaultAnnotatedTypeFormatter
,NullnessNoInitAnnotatedTypeFormatter
,UnitsAnnotatedTypeFormatter
public interface AnnotatedTypeFormatter
Converts an AnnotatedTypeMirror mirror into a formatted string. For converting AnnotationMirrors:- See Also:
AnnotationFormatter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
format(AnnotatedTypeMirror type)
Formats type into a String.java.lang.String
format(AnnotatedTypeMirror type, boolean printVerbose)
Formats type into a String.
-
-
-
Method Detail
-
format
@SideEffectFree java.lang.String format(AnnotatedTypeMirror type)
Formats type into a String. Uses an implementation specific default for printing "invisible annotations"- Parameters:
type
- the type to be converted- Returns:
- a string representation of type
- See Also:
InvisibleQualifier
-
format
@SideEffectFree java.lang.String format(AnnotatedTypeMirror type, boolean printVerbose)
Formats type into a String.- Parameters:
type
- the type to be convertedprintVerbose
- whether or not to print verbosely- Returns:
- a string representation of type
- See Also:
InvisibleQualifier
-
-