IQuoteState

Defines an interface for tokenizer state that processes quoted strings.

Extends: ITokenizerState

Description

The IQuoteState interface is used for tokenizer states that process quoted strings.

Instance methods

decodeString

Decodes a string value.

String? decodeString(String? value, int quoteSymbol)

  • value: String? - string value to be decoded.
  • quoteSymbol: int - string quote character.
  • returns: String? - decoded string.

encodeString

Encodes a string value.

String? encodeString(String? value, int quoteSymbol)

  • value: String? - string value to be encoded.
  • quoteSymbol: int - string quote character.
  • returns: String? - encoded string.