Class SingletonTransformer<S,​T>

  • Type Parameters:
    S - the key type
    T - the value type
    All Implemented Interfaces:
    Function<S,​T>

    public class SingletonTransformer<S,​T>
    extends Object
    implements Function<S,​T>
    Transform the key of type S to a value of type T. If the transform has been accessed before, return that cached result.
    • Constructor Detail

      • SingletonTransformer

        public SingletonTransformer​(Function<S,​T> transformFunction)
    • Method Detail

      • apply

        public T apply​(S s)
        Specified by:
        apply in interface Function<S,​T>
      • getTransformedMap

        public Map<S,​T> getTransformedMap()