C# 클래스 Summer.Batch.Extra.Sort.Legacy.Parser.Lexer

파일 보기 프로젝트 열기: SummerBatch/SummerBatch 1 사용 예제들

공개 메소드들

메소드 설명
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

비공개 메소드들

메소드 설명
ParseNext ( ) : string

Parses the next token

ParseString ( ) : string

Parses a string literal

메소드 상세

Lexer() 공개 메소드

Default constructor.
public Lexer ( string configuration ) : System
configuration string the configuration string to parse
리턴 System

MoveNext() 공개 메소드

Advances the lexer to the next token.
public MoveNext ( ) : bool
리턴 bool

Parse() 공개 메소드

Parse - move to next token.
public Parse ( ) : string
리턴 string

Parse() 공개 메소드

Parse given token
public Parse ( string token ) : void
token string
리턴 void

ParseInt() 공개 메소드

Try parsing current as int
public ParseInt ( ) : int
리턴 int

SubString() 공개 메소드

Substring facility
public SubString ( int start, int length ) : string
start int
length int
리턴 string