Package nbbrd.io.xml
Interface Xml.Formatter<T>
-
- All Superinterfaces:
FileFormatter<T>,TextFormatter<T>
- All Known Implementing Classes:
Stax.EventFormatter,Stax.StreamFormatter
- Enclosing class:
- Xml
public static interface Xml.Formatter<T> extends FileFormatter<T>, TextFormatter<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default <V> @NonNull Xml.Formatter<V>compose(@NonNull Function<? super V,? extends T> before)@NonNull CharsetgetDefaultEncoding()booleanisFormatted()-
Methods inherited from interface nbbrd.io.FileFormatter
formatFile, formatPath, formatStream, formatStream
-
Methods inherited from interface nbbrd.io.text.TextFormatter
formatChars, formatFile, formatPath, formatStream, formatStream, formatToString, formatWriter, formatWriter
-
-
-
-
Method Detail
-
isFormatted
boolean isFormatted()
-
getDefaultEncoding
@NonNull Charset getDefaultEncoding()
-
compose
default <V> @NonNull Xml.Formatter<V> compose(@NonNull Function<? super V,? extends T> before)
- Specified by:
composein interfaceFileFormatter<T>- Specified by:
composein interfaceTextFormatter<T>
-
-