C# Class Summer.Batch.Extra.Sort.Legacy.Parser.Lexer

Afficher le fichier Open project: SummerBatch/SummerBatch Class Usage Examples

Méthodes publiques

Méthode Description
Lexer ( string configuration ) : System

Default constructor.

MoveNext ( ) : bool

Advances the lexer to the next token.

Parse ( ) : string

Parse - move to next token.

Parse ( string token ) : void

Parse given token

ParseInt ( ) : int

Try parsing current as int

SubString ( int start, int length ) : string

Substring facility

Private Methods

Méthode Description
ParseNext ( ) : string

Parses the next token

ParseString ( ) : string

Parses a string literal

Method Details

Lexer() public méthode

Default constructor.
public Lexer ( string configuration ) : System
configuration string the configuration string to parse
Résultat System

MoveNext() public méthode

Advances the lexer to the next token.
public MoveNext ( ) : bool
Résultat bool

Parse() public méthode

Parse - move to next token.
public Parse ( ) : string
Résultat string

Parse() public méthode

Parse given token
public Parse ( string token ) : void
token string
Résultat void

ParseInt() public méthode

Try parsing current as int
public ParseInt ( ) : int
Résultat int

SubString() public méthode

Substring facility
public SubString ( int start, int length ) : string
start int
length int
Résultat string