Package com.tangosol.coherence.rest
Interface KeyConverter
-
- All Known Implementing Classes:
DefaultKeyConverter
public interface KeyConverter
An interface that must be implemented by key converters.Key converters are used to convert cache entry keys to string and string representations of the keys that are used in RESTful URLs into appropriate object instance that can be used to access cache entries.
- Author:
- as 2011.06.08
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Object
fromString(String sKey)
Convert a string representation of a key into its object form.String
toString(Object oKey)
Convert an object representation of a key into its string form.
-