Class Cache<S,​T>

  • Type Parameters:
    S - key type
    T - value type

    public abstract class Cache<S,​T>
    extends java.lang.Object
    Quick and dirty key/value cache that is subclassed to provide the logic that generates the value for a missing key.
    • Constructor Summary

      Constructors 
      Constructor Description
      Cache()  
    • Method Summary

      All Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      protected abstract T convert​(S input)  
      T get​(S input)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • get

        public T get​(S input)
      • convert

        protected abstract T convert​(S input)