类 AhoCorasickDoubleArrayTrie.Hit<V>

  • 类型参数:
    V - the value type
    封闭类:
    AhoCorasickDoubleArrayTrie<V>

    public static class AhoCorasickDoubleArrayTrie.Hit<V>
    extends java.lang.Object
    A result output
    • 字段概要

      字段 
      修饰符和类型 字段 说明
      int begin
      the beginning index, inclusive.
      int end
      the ending index, exclusive.
      V value
      the value assigned to the keyword
    • 构造器概要

      构造器 
      构造器 说明
      Hit​(int begin, int end, V value)  
    • 方法概要

      所有方法 实例方法 具体方法 
      修饰符和类型 方法 说明
      java.lang.String toString()  
      • 从类继承的方法 java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • 字段详细资料

      • begin

        public final int begin
        the beginning index, inclusive.
      • end

        public final int end
        the ending index, exclusive.
      • value

        public final V value
        the value assigned to the keyword
    • 构造器详细资料

      • Hit

        public Hit​(int begin,
                   int end,
                   V value)
    • 方法详细资料

      • toString

        public java.lang.String toString()
        覆盖:
        toString 在类中 java.lang.Object