Interface IQuoteState
- All Superinterfaces:
ITokenizerState
- All Known Implementing Classes:
CsvQuoteState
,ExpressionQuoteState
,GenericQuoteState
Defines an interface for tokenizer state that processes quoted strings.
-
Method Summary
Modifier and TypeMethodDescriptiondecodeString
(String value, int quoteSymbol) Decodes a string value.encodeString
(String value, int quoteSymbol) Encodes a string value.Methods inherited from interface org.pipservices3.expressions.tokenizers.ITokenizerState
nextToken
-
Method Details
-
encodeString
Encodes a string value.- Parameters:
value
- A string value to be encoded.quoteSymbol
- A string quote character.- Returns:
- An encoded string.
-
decodeString
Decodes a string value.- Parameters:
value
- A string value to be decoded.quoteSymbol
- A string quote character.- Returns:
- An decoded string.
-