Class CacheEntry

  • All Implemented Interfaces:

    
    public final class CacheEntry<K, V>
    
                        

    A read-only helper class used as the return value of getEntry.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
      public K key
      public V value
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      K getKey() Returns the key of this entry.
      V getValue() Returns the value of this entry.
      • Methods inherited from class java.lang.Object

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

    • Method Detail

      • getKey

        @NonNull() K getKey()

        Returns the key of this entry.

      • getValue

        @NonNull() V getValue()

        Returns the value of this entry.