Class LazilyFormattedString
java.lang.Object
net.shibboleth.utilities.java.support.primitive.LazilyFormattedString
Deprecated, for removal: This API element is subject to removal in a future version.
An object that represents a string containing a
Formatter string and a set of values. When
toString() is called the format string is filled in with the given values. This allows for lazy evaluation
of the value objects formatting function which may be expensive.-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Object[]Deprecated, for removal: This API element is subject to removal in a future version.The values that are filled in to the template string.private final StringDeprecated, for removal: This API element is subject to removal in a future version.The template that is filled in with the values. -
Constructor Summary
ConstructorsConstructorDescriptionLazilyFormattedString(String stringTemplate, Object... templateArguments) Deprecated, for removal: This API element is subject to removal in a future version.Constructor. -
Method Summary
-
Field Details
-
template
Deprecated, for removal: This API element is subject to removal in a future version.The template that is filled in with the values. -
arguments
Deprecated, for removal: This API element is subject to removal in a future version.The values that are filled in to the template string.
-
-
Constructor Details
-
LazilyFormattedString
Deprecated, for removal: This API element is subject to removal in a future version.Constructor.- Parameters:
stringTemplate- theFormattertemplate stringtemplateArguments- the arguments to the template
-
-
Method Details