Common interface for Codecs that convert between characters and characters. Examples: rot13.
no type hierarchy
Methods | |
cumulativeDecoder | Source Codeshared actual CumulativeConvert<CharacterBuffer,{Character*},Character,Character> cumulativeDecoder(Integer? inputSize, Float growthFactor, ErrorStrategy error) Decode into a new buffer as portions arrive and return the buffer when the
input is complete. |
cumulativeEncoder | Source Codeshared actual CumulativeConvert<CharacterBuffer,{Character*},Character,Character> cumulativeEncoder(Integer? inputSize, Float growthFactor, ErrorStrategy error) Encode into a new buffer as portions arrive and return the buffer when the
input is complete. |
decode | Source Codeshared actual String decode({Character*} input, ErrorStrategy error) Decode all of Refines StatelessCodec.decode |
decodeBuffer | Source Codeshared actual CharacterBuffer decodeBuffer({Character*} input, ErrorStrategy error) Decode all of Refines StatelessCodec.decodeBuffer |
encode | Source Codeshared actual String encode({Character*} input, ErrorStrategy error) Encode all of Refines StatelessCodec.encode |
encodeBuffer | Source Codeshared actual CharacterBuffer encodeBuffer({Character*} input, ErrorStrategy error) Encode all of Refines StatelessCodec.encodeBuffer |
Inherited Methods |
Methods inherited from: Object |
Methods inherited from: Codec |
Methods inherited from: IncrementalCodec<ToMutable,ToImmutable,ToSingle,FromMutable,FromImmutable,FromSingle> |
Methods inherited from: StatelessCodec<ToMutable,ToImmutable,ToSingle,FromMutable,FromImmutable,FromSingle> |