Class ChainedLookup<K,​V>

  • All Implemented Interfaces:
    ILookup<K,​V>

    public class ChainedLookup<K,​V>
    extends java.lang.Object
    implements ILookup<K,​V>
    • Field Summary

      Fields 
      Modifier and Type Field Description
      ILookup<K,​V>[] lookups  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      V valAt​(K key)  
      • Methods inherited from class java.lang.Object

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

      • lookups

        public final ILookup<K,​V>[] lookups
    • Constructor Detail

      • ChainedLookup

        public ChainedLookup​(ILookup<K,​V>... lookups)
    • Method Detail

      • valAt

        public V valAt​(K key)
        Specified by:
        valAt in interface ILookup<K,​V>