| Interface | Description |
|---|---|
| IFormatableObject |
Basic interface for special objects having a certain string representation.
|
| IFormatter |
A simple formatter interface that may be used to format arbitrary objects to
a string.
|
| IHasFormatter |
If a class implements this interface, it claims that its value can be
formatted using an
IFormatter object. |
| Class | Description |
|---|---|
| AbstractFormatterString |
Base implementation class of the
IFormatter interface that provides
the common functionality. |
| FormatableObject |
This class represents a single object with an additional formatter.
|
| FormatterBracket |
Format objects by surrounding them with brackets: [...]
|
| FormatterMinLengthAddLeading |
A string formatter that ensures that a string has a minimum length by filling
the remaining chars with a custom character at front (leading).
|
| FormatterMinLengthAddTrailing |
A string formatter that ensures that a string has a minimum length by filling
the remaining chars with a custom character at the end (trailing).
|
| FormatterStringPrefix |
A formatter that adds a prefix to a string.
|
| FormatterStringPrefixAndSuffix |
A formatter that adds a prefix and/or a suffix to a string.
|
| FormatterStringSkipPrefix |
A formatter that skips a prefix from a string.
|
| FormatterStringSkipPrefixAndSuffix |
A formatter that skip a prefix and/or a suffix to a string.
|
| FormatterStringSkipSuffix |
A formatter that skips a suffix from a string.
|
| FormatterStringSuffix |
A formatter that adds a suffix to a string.
|
Copyright © 2014–2016 Philip Helger. All rights reserved.