Class StringInternerImpl
- java.lang.Object
-
- org.apache.tapestry5.commons.internal.services.StringInternerImpl
-
- All Implemented Interfaces:
StringInterner
public class StringInternerImpl extends Object implements StringInterner
-
-
Constructor Summary
Constructors Constructor Description StringInternerImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
format(String format, Object... arguments)
Formats a string (usingString.format(String, Object[])
) and returns the interned result.String
intern(String string)
Interns a string.void
setupInvalidation(InvalidationEventHub hub)
-
-
-
Constructor Detail
-
StringInternerImpl
public StringInternerImpl()
-
-
Method Detail
-
setupInvalidation
@PostInjection public void setupInvalidation(@ComponentClasses InvalidationEventHub hub)
-
intern
public String intern(String string)
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
public String format(String format, Object... arguments)
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
-
-