Example #1
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
//ORIGINAL LINE: @Override public boolean seekExact(util.BytesRef text) throws java.io.IOException
            public override bool seekExact(BytesRef text)
            {
                //System.out.println("te.seekExact text=" + field.name + ":" + text.utf8ToString() + " this=" + this);
                current   = fstEnum.seekExact(text);
                didDecode = false;
                return(current != null);
            }
Example #2
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
//ORIGINAL LINE: @Override public boolean seekExact(util.BytesRef target) throws java.io.IOException
                public override bool seekExact(BytesRef target)
                {
                    updateEnum(fstEnum.seekExact(target));
                    return(term_Renamed != null);
                }