Uses of Class
eu.bandm.tools.format.spi.FormatServer
Packages that use FormatServer
Package
Description
Text layout and pretty printing, 
  see the user documentation.
An implementation-agnostic API for pretty-printing format objects.
Toolkit for the dynamic construction of lexical analyzers.
- 
Uses of FormatServer in eu.bandm.tools.format
Methods in eu.bandm.tools.format that return FormatServer - 
Uses of FormatServer in eu.bandm.tools.format.spi
Methods in eu.bandm.tools.format.spi with parameters of type FormatServerModifier and TypeMethodDescription<F> FFormatClient.format(FormatServer<F> server) Represent this or the underlying object in a human-readable, pretty-printable way. - 
Uses of FormatServer in eu.bandm.tools.lexic
Methods in eu.bandm.tools.lexic with parameters of type FormatServerModifier and TypeMethodDescription(package private) static <A,F> F Formats.collectionFormat(FormatServer<F> server, @Opt Collection<A> collection, Function<? super A, ? extends F> onElem, F open, F close) Returns a pretty-printable representation of a collection.(package private) static <K,V, F> F Formats.entryFormat(FormatServer<F> server, Map.Entry<K, V> entry, Function<? super K, ? extends F> onKey, Function<? super V, ? extends F> onValue) Returns a pretty-printable representation of a map entry.<F> FAutomaton.State.format(FormatServer<F> server) Returns a pretty-printable representation of this state.<F> FBehavior.format(FormatServer<F> server) Returns a pretty-printable representation of this behavior.(package private) <F> FBehavior.format(FormatServer<F> server, Function<? super L, ? extends F> onLabel, Function<? super T, ? extends F> onTransition) Returns a pretty-printable representation of this behavior.<F> FCodePointMap.format(FormatServer<F> server) Returns a human-readable representation of this map.<F> FCodePointMap.format(FormatServer<F> server, Function<? super V, ? extends F> onValue) Returns a human-readable representation of this map.<F> FDAutomaton.format(FormatServer<F> server) Returns a pretty-printable representation of this automaton.<F> FDAutomaton.format(FormatServer<F> server, Function<? super V, ? extends F> onValue) Returns a pretty-printable representation of this automaton.<F> FNAutomaton.format(FormatServer<F> server) Represent this or the underlying object in a human-readable, pretty-printable way.<F> FNAutomaton.format(FormatServer<F> server, Function<? super V, ? extends F> onValue) Returns a pretty-printable representation of this automaton.<F> FTokenFragment.format(FormatServer<F> server) Represent this or the underlying object in a human-readable, pretty-printable way.(package private) static <F> FFormats.listFormat(FormatServer<F> server, @Opt List<?> list) Returns a pretty-printable representation of a list.(package private) static <A,F> F Formats.listFormat(FormatServer<F> server, @Opt List<A> list, Function<? super A, ? extends F> onElem) Returns a pretty-printable representation of a list.(package private) static <K,V, F> F Formats.mapFormat(FormatServer<F> server, @Opt Map<K, V> map) Returns a pretty-printable representation of a map.(package private) static <K,V, F> F Formats.mapFormat(FormatServer<F> server, @Opt Map<K, V> map, Function<? super K, ? extends F> onKey, Function<? super V, ? extends F> onValue) Returns a pretty-printable representation of a map.(package private) static <F> FFormats.setFormat(FormatServer<F> server, @Opt Set<?> set) Returns a pretty-printable representation of a set.(package private) static <A,F> F Formats.setFormat(FormatServer<F> server, @Opt Set<A> set, Function<? super A, ? extends F> onElem) Returns a pretty-printable representation of a set.