Klasse StringInterners

java.lang.Object
opennlp.tools.util.jvm.StringInterners

public class StringInterners extends Object
Provides string interning utility methods. Interning mechanism can be configured via the system property opennlp.interner.class by specifying an implementation via its fully qualified classname. It needs to implement StringInterner.

If not specified by the user, the default interner is CHMStringInterner.

  • Konstruktorübersicht

    Konstruktoren
    Konstruktor
    Beschreibung
     
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    static String
    intern(String sample)
    Interns and returns a reference to the representative instance for any collection of string instances that are equal to each other.

    Von Klasse geerbte Methoden java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Konstruktordetails

    • StringInterners

      public StringInterners()
  • Methodendetails

    • intern

      public static String intern(String sample)
      Interns and returns a reference to the representative instance for any collection of string instances that are equal to each other.
      Parameter:
      sample - string instance to be interned
      Gibt zurück:
      reference to the interned string instance