Uses of Class
org.apache.lucene.util.fst.FST.BytesReader

Packages that use FST.BytesReader
org.apache.lucene.analysis.ja.dict Kuromoji dictionary implementation. 
org.apache.lucene.util.fst Finite state transducers 
 

Uses of FST.BytesReader in org.apache.lucene.analysis.ja.dict
 

Methods in org.apache.lucene.analysis.ja.dict that return FST.BytesReader
 FST.BytesReader TokenInfoFST.getBytesReader(int pos)
           
 

Methods in org.apache.lucene.analysis.ja.dict with parameters of type FST.BytesReader
 FST.Arc<Long> TokenInfoFST.findTargetArc(int ch, FST.Arc<Long> follow, FST.Arc<Long> arc, boolean useCache, FST.BytesReader fstReader)
           
 

Uses of FST.BytesReader in org.apache.lucene.util.fst
 

Methods in org.apache.lucene.util.fst that return FST.BytesReader
 FST.BytesReader FST.getBytesReader(int pos)
           
 

Methods in org.apache.lucene.util.fst with parameters of type FST.BytesReader
 FST.Arc<T> FST.findTargetArc(int labelToMatch, FST.Arc<T> follow, FST.Arc<T> arc, FST.BytesReader in)
          Finds an arc leaving the incoming arc, replacing the arc in place.
 FST.Arc<T> FST.readFirstRealTargetArc(int node, FST.Arc<T> arc, FST.BytesReader in)
           
 FST.Arc<T> FST.readNextRealArc(FST.Arc<T> arc, FST.BytesReader in)
          Never returns null, but you should never call this if arc.isLast() is true.