Class PathMap.MappedEntry<O>

  • All Implemented Interfaces:
    java.util.Map.Entry<java.lang.String,​O>
    Enclosing class:
    PathMap<O>

    public static class PathMap.MappedEntry<O>
    extends java.lang.Object
    implements java.util.Map.Entry<java.lang.String,​O>
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.lang.String key  
      private java.lang.String mapped  
      private O value  
    • Constructor Summary

      Constructors 
      Constructor Description
      MappedEntry​(java.lang.String key, O value)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getKey()  
      java.lang.String getMapped()  
      O getValue()  
      (package private) void setMapped​(java.lang.String mapped)  
      O setValue​(O o)  
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

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

        equals, hashCode
    • Field Detail

      • key

        private final java.lang.String key
      • value

        private final O value
      • mapped

        private java.lang.String mapped
    • Constructor Detail

      • MappedEntry

        MappedEntry​(java.lang.String key,
                    O value)
    • Method Detail

      • getKey

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

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

        public O setValue​(O o)
        Specified by:
        setValue in interface java.util.Map.Entry<java.lang.String,​O>
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • getMapped

        public java.lang.String getMapped()
      • setMapped

        void setMapped​(java.lang.String mapped)