Class StringInternerImpl

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String format​(java.lang.String format, java.lang.Object... arguments)
      Formats a string (using String.format(String, Object[])) and returns the interned result.
      java.lang.String intern​(java.lang.String string)
      Interns a string.
      void setupInvalidation​(InvalidationEventHub hub)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • intern

        public java.lang.String intern​(java.lang.String string)
        Description copied from interface: StringInterner
        Interns a string.
        Specified by:
        intern in interface StringInterner
        Parameters:
        string - the string to intern
        Returns:
        the input string, or another string instance with the same content
      • format

        public java.lang.String format​(java.lang.String format,
                                       java.lang.Object... arguments)
        Description copied from interface: StringInterner
        Formats a string (using String.format(String, Object[])) and returns the interned result.
        Specified by:
        format in interface StringInterner
        Parameters:
        format - string format
        arguments - used inside the format
        Returns:
        formatted and interned string