Method | Description | |
---|---|---|
ASCIIFoldingFilter ( TokenStream input ) : System.Diagnostics | ||
ASCIIFoldingFilter ( TokenStream input, bool preserveOriginal ) : System.Diagnostics |
Create a new ASCIIFoldingFilter.
|
|
FoldToASCII ( char input, int inputPos, char output, int outputPos, int length ) : int |
Converts characters above ASCII to their ASCII equivalents. For example, accents are removed from accented characters.
|
|
FoldToASCII ( char input, int length ) : void |
Converts characters above ASCII to their ASCII equivalents. For example, accents are removed from accented characters.
|
|
IncrementToken ( ) : bool | ||
Reset ( ) : void |
public ASCIIFoldingFilter ( TokenStream input ) : System.Diagnostics | ||
input | TokenStream | |
return | System.Diagnostics |
public ASCIIFoldingFilter ( TokenStream input, bool preserveOriginal ) : System.Diagnostics | ||
input | TokenStream | /// TokenStream to filter |
preserveOriginal | bool | /// should the original tokens be kept on the input stream with a 0 position increment /// from the folded tokens? /// |
return | System.Diagnostics |
public static FoldToASCII ( char input, int inputPos, char output, int outputPos, int length ) : int | ||
input | char | The characters to fold |
inputPos | int | Index of the first character to fold |
output | char | The result of the folding. Should be of size >= {@code length * 4}. |
outputPos | int | Index of output where to put the result of the folding |
length | int | The number of characters to fold |
return | int |
public FoldToASCII ( char input, int length ) : void | ||
input | char | The string to fold |
length | int | The number of characters in the input string |
return | void |