Interface XAttributeMap

  • All Superinterfaces:
    java.lang.Cloneable, java.util.Map<java.lang.String,​XAttribute>
    All Known Implementing Classes:
    XAbstractAttributeMapBufferedImpl, XAttributeMapBufferedImpl, XAttributeMapImpl, XAttributeMapLazyImpl

    public interface XAttributeMap
    extends java.util.Map<java.lang.String,​XAttribute>, java.lang.Cloneable
    An attribute map is used to hold a set of attributes, indexed by their key strings, for event log hierarchy elements. It is required to be cloneable, so that it can be replicated efficiently and reliably.
    Author:
    Christian W. Guenther (christian@deckfour.org)
    • Nested Class Summary

      • Nested classes/interfaces inherited from interface java.util.Map

        java.util.Map.Entry<K extends java.lang.Object,​V extends java.lang.Object>
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.Object clone()
      Creates an identical clone of the attribute map (deep copy).
      • Methods inherited from interface java.util.Map

        clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
    • Method Detail

      • clone

        java.lang.Object clone()
        Creates an identical clone of the attribute map (deep copy).
        Returns:
        An identical clone of the attribute map.