Converter which modifies a string by changing the input text into upper case, lower case, capitalized. The
input string can be optionally trimmed and truncated at some max length. Ellipses (...) can be added to a
truncated string.
Provides runtime modification of a string. Uses Apache Lang StringUtils and WordUtils
to peform operations.
Attributes |
Name | Required | Request-time | Type | Description |
format | false | false | java.lang.String | Specifies the output case of the string. One of uppercase | lowercase | capitalize |
maxLength | false | false | java.lang.String | Integer value for the maximum length of the rendered string.
Strings longer than maxValue will be truncated at (maxValue - 3)
and an ellipsis '...' will be appended. |
appendEllipsesDuringOutput | false | false | java.lang.String | Boolean value determining if data should be truncated with ellipses
during output conversion. Default = false |
appendEllipsesDuringInput | false | false | java.lang.String | Boolean value determining if data should be truncated with ellipses
during input conversion. Default = false |
trim | false | false | java.lang.String | Boolean value determining is the string should be trimmed before any
other formatting takes place. Default = false |