- Type Parameters:
V
- the value type
- Enclosing class:
- AhoCorasickDoubleArrayTrie<V>
public static class AhoCorasickDoubleArrayTrie.Hit<V>
extends Object
A result output
-
Field Summary
Fields
final int
the beginning index, inclusive.
final int
the ending index, exclusive.
the value assigned to the keyword
-
Constructor Summary
Constructors
Hit(int begin,
int end,
V value)
-
Method Summary
-
Field Details
-
begin
public final int begin
the beginning index, inclusive.
-
end
public final int end
the ending index, exclusive.
-
value
the value assigned to the keyword
-
Constructor Details
-
Hit
public Hit(int begin,
int end,
V value)
-