//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
//ORIGINAL LINE: @Override public util.BytesRef next() throws java.io.IOException
                public override BytesRef next()
                {
                    if (seekPending)     // previously positioned, but termOutputs not fetched
                    {
                        seekPending = false;
                        SeekStatus status = seekCeil(term_Renamed);
                        Debug.Assert(status == SeekStatus.FOUND);   // must positioned on valid term
                    }
                    updateEnum(fstEnum.next());
                    return(term_Renamed);
                }
Exemple #2
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
//ORIGINAL LINE: @Override public util.BytesRef next() throws java.io.IOException
            public override BytesRef next()
            {
                //System.out.println("te.next");
                current = fstEnum.next();
                if (current == null)
                {
                    //System.out.println("  END");
                    return(null);
                }
                didDecode = false;
                //System.out.println("  term=" + field.name + ":" + current.input.utf8ToString());
                return(current.input);
            }