📄 lucene.net.xml
字号:
<member name="M:SupportClass.Single.Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider)">
<summary>
</summary>
<param name="s"></param>
<param name="style"></param>
<param name="provider"></param>
<returns></returns>
</member>
<member name="M:SupportClass.Single.Parse(System.String,System.IFormatProvider)">
<summary>
</summary>
<param name="s"></param>
<param name="provider"></param>
<returns></returns>
</member>
<member name="M:SupportClass.Single.Parse(System.String,System.Globalization.NumberStyles)">
<summary>
</summary>
<param name="s"></param>
<param name="style"></param>
<returns></returns>
</member>
<member name="M:SupportClass.Single.Parse(System.String)">
<summary>
</summary>
<param name="s"></param>
<returns></returns>
</member>
<member name="T:SupportClass.AppSettings">
<summary>
</summary>
</member>
<member name="M:SupportClass.AppSettings.Get(System.String,System.Int32)">
<summary>
</summary>
<param name="key"></param>
<param name="defValue"></param>
<returns></returns>
</member>
<member name="M:SupportClass.AppSettings.Get(System.String,System.Int64)">
<summary>
</summary>
<param name="key"></param>
<param name="defValue"></param>
<returns></returns>
</member>
<member name="M:SupportClass.AppSettings.Get(System.String,System.String)">
<summary>
</summary>
<param name="key"></param>
<param name="defValue"></param>
<returns></returns>
</member>
<member name="T:SupportClass.CompressionSupport">
<summary>
Use for .NET 1.1 Framework only.
</summary>
</member>
<member name="T:Lucene.Net.QueryParsers.CharStream">
<summary> This interface describes a character stream that maintains line and
column number positions of the characters. It also has the capability
to backup the stream to some extent. An implementation of this
interface is used in the TokenManager implementation generated by
JavaCCParser.
All the methods except backup can be implemented in any fashion. backup
needs to be implemented correctly for the correct operation of the lexer.
Rest of the methods are all used to get information like line number,
column number and the String that constitutes a token and are not used
by the lexer. Hence their implementation won't affect the generated lexer's
operation.
</summary>
</member>
<member name="M:Lucene.Net.QueryParsers.CharStream.ReadChar">
<summary> Returns the next character from the selected input. The method
of selecting the input is the responsibility of the class
implementing this interface. Can throw any java.io.IOException.
</summary>
</member>
<member name="M:Lucene.Net.QueryParsers.CharStream.GetColumn">
<summary> Returns the column position of the character last read.</summary>
<deprecated>
</deprecated>
<seealso cref="!:#getEndColumn">
</seealso>
</member>
<member name="M:Lucene.Net.QueryParsers.CharStream.GetLine">
<summary> Returns the line number of the character last read.</summary>
<deprecated>
</deprecated>
<seealso cref="!:#getEndLine">
</seealso>
</member>
<member name="M:Lucene.Net.QueryParsers.CharStream.GetEndColumn">
<summary> Returns the column number of the last character for current token (being
matched after the last call to BeginTOken).
</summary>
</member>
<member name="M:Lucene.Net.QueryParsers.CharStream.GetEndLine">
<summary> Returns the line number of the last character for current token (being
matched after the last call to BeginTOken).
</summary>
</member>
<member name="M:Lucene.Net.QueryParsers.CharStream.GetBeginColumn">
<summary> Returns the column number of the first character for current token (being
matched after the last call to BeginTOken).
</summary>
</member>
<member name="M:Lucene.Net.QueryParsers.CharStream.GetBeginLine">
<summary> Returns the line number of the first character for current token (being
matched after the last call to BeginTOken).
</summary>
</member>
<member name="M:Lucene.Net.QueryParsers.CharStream.Backup(System.Int32)">
<summary> Backs up the input stream by amount steps. Lexer calls this method if it
had already read some characters, but could not use them to match a
(longer) token. So, they will be used again as the prefix of the next
token and it is the implemetation's responsibility to do this right.
</summary>
</member>
<member name="M:Lucene.Net.QueryParsers.CharStream.BeginToken">
<summary> Returns the next character that marks the beginning of the next token.
All characters must remain in the buffer between two successive calls
to this method to implement backup correctly.
</summary>
</member>
<member name="M:Lucene.Net.QueryParsers.CharStream.GetImage">
<summary> Returns a string made up of characters from the marked token beginning
to the current buffer position. Implementations have the choice of returning
anything that they want to. For example, for efficiency, one might decide
to just return null, which is a valid implementation.
</summary>
</member>
<member name="M:Lucene.Net.QueryParsers.CharStream.GetSuffix(System.Int32)">
<summary> Returns an array of characters that make up the suffix of length 'len' for
the currently matched token. This is used to build up the matched string
for use in actions in the case of MORE. A simple and inefficient
implementation of this is as follows :
{
String t = GetImage();
return t.substring(t.length() - len, t.length()).toCharArray();
}
</summary>
</member>
<member name="M:Lucene.Net.QueryParsers.CharStream.Done">
<summary> The lexer calls this function to indicate that it is done with the stream
and hence implementations can free any resources held by this class.
Again, the body of this function can be just empty and it will not
affect the lexer's operation.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "T:Lucene.Net.Index.TermInfosWriter" -->
<member name="F:Lucene.Net.Index.TermInfosWriter.FORMAT">
<summary>The file format version, a negative number. </summary>
</member>
<member name="F:Lucene.Net.Index.TermInfosWriter.indexInterval">
<summary>Expert: The fraction of terms in the "dictionary" which should be stored
in RAM. Smaller values use more memory, but make searching slightly
faster, while larger values use less memory and make searching slightly
slower. Searching is typically not dominated by dictionary lookup, so
tweaking this is rarely useful.
</summary>
</member>
<member name="F:Lucene.Net.Index.TermInfosWriter.skipInterval">
<summary>Expert: The fraction of {@link TermDocs} entries stored in skip tables,
used to accellerate {@link TermDocs#SkipTo(int)}. Larger values result in
smaller indexes, greater acceleration, but fewer accelerable cases, while
smaller values result in bigger indexes, less acceleration and more
accelerable cases. More detailed experiments would be useful here.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "M:Lucene.Net.Index.TermInfosWriter.Add(Lucene.Net.Index.Term,Lucene.Net.Index.TermInfo)" -->
<member name="M:Lucene.Net.Index.TermInfosWriter.Close">
<summary>Called to complete TermInfos creation. </summary>
</member>
<!-- Badly formed XML comment ignored for member "T:Lucene.Net.Index.TermInfosReader" -->
<member name="M:Lucene.Net.Index.TermInfosReader.Size">
<summary>Returns the number of term/value pairs in the set. </summary>
</member>
<member name="M:Lucene.Net.Index.TermInfosReader.GetIndexOffset(Lucene.Net.Index.Term)">
<summary>Returns the offset of the greatest index entry which is less than or equal to term.</summary>
</member>
<member name="M:Lucene.Net.Index.TermInfosReader.Get(Lucene.Net.Index.Term)">
<summary>Returns the TermInfo for a Term in the set, or null. </summary>
</member>
<member name="M:Lucene.Net.Index.TermInfosReader.ScanEnum(Lucene.Net.Index.Term)">
<summary>Scans within block for matching term. </summary>
</member>
<member name="M:Lucene.Net.Index.TermInfosReader.Get(System.Int32)">
<summary>Returns the nth term in the set. </summary>
</member>
<member name="M:Lucene.Net.Index.TermInfosReader.GetPosition(Lucene.Net.Index.Term)">
<summary>Returns the position of a Term in the set or -1. </summary>
</member>
<member name="M:Lucene.Net.Index.TermInfosReader.Terms">
<summary>Returns an enumeration of all the Terms and TermInfos in the set. </summary>
</member>
<member name="M:Lucene.Net.Index.TermInfosReader.Terms(Lucene.Net.Index.Term)">
<summary>Returns an enumeration of terms starting at or after the named term. </summary>
</member>
<!-- Badly formed XML comment ignored for member "T:Lucene.Net.Index.TermEnum" -->
<member name="M:Lucene.Net.Index.TermEnum.Next">
<summary>Increments the enumeration to the next element. True if one exists.</summary>
</member>
<member name="M:Lucene.Net.Index.TermEnum.Term">
<summary>Returns the current Term in the enumeration.</summary>
</member>
<member name="M:Lucene.Net.Index.TermEnum.DocFreq">
<summary>Returns the docFreq of the current Term in the enumeration.</summary>
</member>
<member name="M:Lucene.Net.Index.TermEnum.Close">
<summary>Closes the enumeration to further activity, freeing resources. </summary>
</member>
<!-- Badly formed XML comment ignored for member "M:Lucene.Net.Index.TermEnum.SkipTo(Lucene.Net.Index.Term)" -->
<member name="M:Lucene.Net.Index.SegmentTermEnum.Next">
<summary>Increments the enumeration to the next element. True if one exists.</summary>
</member>
<member name="M:Lucene.Net.Index.SegmentTermEnum.ScanTo(Lucene.Net.Index.Term)">
<summary>Optimized scan, without allocating new terms. </summary>
</member>
<member name="M:Lucene.Net.Index.SegmentTermEnum.Term">
<summary>Returns the current Term in the enumeration.
Initially invalid, valid after next() called for the first time.
</summary>
</member>
<member name="M:Lucene.Net.Index.SegmentTermEnum.Prev">
<summary>Returns the previous Term enumerated. Initially null.</summary>
</member>
<member name="M:Lucene.Net.Index.SegmentTermEnum.TermInfo">
<summary>Returns the current TermInfo in the enumeration.
Initially invalid, valid after next() called for the first time.
</summary>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -