Class LazilyFormattedString
- java.lang.Object
-
- net.shibboleth.utilities.java.support.primitive.LazilyFormattedString
-
@Deprecated(since="8.3.0", forRemoval=true) public class LazilyFormattedString extends Object
Deprecated, for removal: This API element is subject to removal in a future version.An object that represents a string containing aFormatterstring and a set of values. WhentoString()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
Fields Modifier and Type Field Description private Object[]argumentsDeprecated, for removal: This API element is subject to removal in a future version.The values that are filled in to the template string.private StringtemplateDeprecated, for removal: This API element is subject to removal in a future version.The template that is filled in with the values.
-
Constructor Summary
Constructors Constructor Description LazilyFormattedString(String stringTemplate, Object... templateArguments)Deprecated, for removal: This API element is subject to removal in a future version.Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description StringtoString()Deprecated, for removal: This API element is subject to removal in a future version.
-
-
-
Field Detail
-
template
private final String 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
private final Object[] 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 Detail
-
LazilyFormattedString
public LazilyFormattedString(@Nonnull String stringTemplate, @Nullable Object... templateArguments)Deprecated, for removal: This API element is subject to removal in a future version.Constructor.- Parameters:
stringTemplate- theFormattertemplate stringtemplateArguments- the arguments to the template
-
-