Interface StringFormat

All Superinterfaces:
Format<String>, TextFormat<String>

public interface StringFormat extends TextFormat<String>
A TextFormat specialization that produces String results.

StringFormat is a convenient marker interface for formats which transform or process input text into another string. All formatting logic is defined via the inherited TextFormat.accept(String) method and its context‑aware overloads.

See Also: