Class LazyField.LazyEntry<K>

  • All Implemented Interfaces:
    java.util.Map.Entry<K,​java.lang.Object>
    Enclosing class:
    LazyField

    static class LazyField.LazyEntry<K>
    extends java.lang.Object
    implements java.util.Map.Entry<K,​java.lang.Object>
    LazyEntry and LazyIterator are used to encapsulate the LazyField, when users iterate all fields from FieldSet.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.util.Map.Entry<K,​LazyField> entry  
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private LazyEntry​(java.util.Map.Entry<K,​LazyField> entry)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      LazyField getField()  
      K getKey()  
      java.lang.Object getValue()  
      java.lang.Object setValue​(java.lang.Object value)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface java.util.Map.Entry

        equals, hashCode
    • Field Detail

      • entry

        private java.util.Map.Entry<K,​LazyField> entry
    • Constructor Detail

      • LazyEntry

        private LazyEntry​(java.util.Map.Entry<K,​LazyField> entry)
    • Method Detail

      • getKey

        public K getKey()
        Specified by:
        getKey in interface java.util.Map.Entry<K,​java.lang.Object>
      • getValue

        public java.lang.Object getValue()
        Specified by:
        getValue in interface java.util.Map.Entry<K,​java.lang.Object>
      • setValue

        public java.lang.Object setValue​(java.lang.Object value)
        Specified by:
        setValue in interface java.util.Map.Entry<K,​java.lang.Object>