Lucene.Net.Analysis.TestGraphTokenizers.Token C# (CSharp) Method

Token() private static method

private static Token ( string term, int posInc, int posLength ) : Lucene.Net.Analysis.Token
term string
posInc int
posLength int
return Lucene.Net.Analysis.Token
        private static Token Token(string term, int posInc, int posLength)
        {
            Token t = new Token(term, 0, 0);
            t.PositionIncrement = posInc;
            t.PositionLength = posLength;
            return t;
        }

Same methods

TestGraphTokenizers::Token ( string term, int posInc, int posLength, int startOffset, int endOffset ) : Lucene.Net.Analysis.Token