Package org.hippoecm.repository.api
Interface StringCodec
-
- All Known Implementing Classes:
StringCodecFactory.IdentEncoding
,StringCodecFactory.ISO9075Helper
,StringCodecFactory.NameEncoding
,StringCodecFactory.UriEncoding
public interface StringCodec
Strategy interface for encoding and decoding strings. StringCodec objects should not retain state between calls and are therefore reusable. Encoding and decoding should also be thread-safe.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
decode(String encoded)
Decodes a string of characters.String
encode(String plain)
Encodes a string of characters.
-