Class StringInternerImpl
java.lang.Object
org.apache.tapestry5.commons.internal.services.StringInternerImpl
- All Implemented Interfaces:
StringInterner
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionFormats a string (usingString.format(String, Object[])
) and returns the interned result.Interns a string.void
-
Constructor Details
-
StringInternerImpl
public StringInternerImpl()
-
-
Method Details
-
setupInvalidation
-
intern
Description copied from interface:StringInterner
Interns a string.- Specified by:
intern
in interfaceStringInterner
- Parameters:
string
- the string to intern- Returns:
- the input string, or another string instance with the same content
-
format
Description copied from interface:StringInterner
Formats a string (usingString.format(String, Object[])
) and returns the interned result.- Specified by:
format
in interfaceStringInterner
- Parameters:
format
- string formatarguments
- used inside the format- Returns:
- formatted and interned string
-