Interface Formatter<K>
-
- All Known Implementing Classes:
BinaryFormatter,DelimitedFormatter,SimpleFormatter
public interface Formatter<K>Formats a cache key to a string representation and back again.- Author:
- Paul Ferraro
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Stringformat(K key)Formats the specified key to a string representation.Class<K>getTargetClass()The implementation class of the target key of this format.Kparse(String value)Parses the key from the specified string.
-