Свойство | Тип | Описание | |
---|---|---|---|
builder | StringBuilder | ||
count | int | ||
off | int | ||
text | char[] |
Метод | Описание | |
---|---|---|
Acronym ( ) : bool |
This is used to extract a acronym from the source string. Once a token has been extracted the
|
|
Commit ( char text, int off, int len ) : void |
This is used to commit the provided text in to the style that is required. Committing the text to the buffer assembles the tokens resulting in a complete token.
|
|
IsDigit ( char ch ) : bool |
This is used to determine if the provided string evaluates to a digit character. This delegates to
|
|
IsLetter ( char ch ) : bool |
This is used to determine if the provided string evaluates to a letter character. This delegates to
|
|
IsSpecial ( char ch ) : bool |
This is used to determine if the provided string evaluates to a symbol character. This delegates to
|
|
IsUpper ( char ch ) : bool |
This is used to determine if the provided string evaluates to an upper case letter. This delegates to
|
|
Number ( ) : bool |
This is used to extract a number from the source string. Once a token has been extracted the
|
|
Parse ( char text, int off, int len ) : void |
This is used to parse the provided text in to the style that is required. Manipulation of the text before committing it ensures that the text adheres to the required style.
|
|
Process ( ) : String |
This is used to process the internal string and convert it in to a styled string. The styled string can then be used as an XML attribute or element providing a consistent format to the document that is being generated.
|
|
Splitter ( String source ) : System.Text |
Constructor of the
|
|
ToLower ( char ch ) : char |
This is used to convert the provided character to a lower case character. This delegates to
|
|
ToUpper ( char ch ) : char |
This is used to convert the provided character to an upper case character. This delegates to
|
|
Token ( ) : void |
This is used to extract a token from the source string. Once a token has been extracted the
|
public abstract Commit ( char text, int off, int len ) : void | ||
text | char | /// this is the text buffer to acquire the token from /// |
off | int | /// this is the offset in the buffer token starts at /// |
len | int | /// this is the length of the token to be committed /// |
Результат | void |
public IsDigit ( char ch ) : bool | ||
ch | char | /// this is the character that is to be evaluated /// |
Результат | bool |
public IsLetter ( char ch ) : bool | ||
ch | char | /// this is the character that is to be evaluated /// |
Результат | bool |
public IsSpecial ( char ch ) : bool | ||
ch | char | /// this is the character that is to be evaluated /// |
Результат | bool |
public IsUpper ( char ch ) : bool | ||
ch | char | /// this is the character that is to be evaluated /// |
Результат | bool |
public abstract Parse ( char text, int off, int len ) : void | ||
text | char | /// this is the text buffer to acquire the token from /// |
off | int | /// this is the offset in the buffer token starts at /// |
len | int | /// this is the length of the token to be parsed /// |
Результат | void |
public Splitter ( String source ) : System.Text | ||
source | String | /// this is the source that is to be split /// |
Результат | System.Text |
public ToLower ( char ch ) : char | ||
ch | char | /// this is the character that is to be converted /// |
Результат | char |
public ToUpper ( char ch ) : char | ||
ch | char | /// this is the character that is to be converted /// |
Результат | char |