Class Attributes.Wrapper

java.lang.Object
org.eclipse.jetty.util.Attributes.Wrapper
All Implemented Interfaces:
Attributes
Direct Known Subclasses:
Attributes.Layer, Attributes.Synthetic, ConnectionMetaData.Wrapper
Enclosing interface:
Attributes

public static class Attributes.Wrapper extends Object implements Attributes
A Wrapper of attributes
  • Constructor Details

  • Method Details

    • getWrapped

      public Attributes getWrapped()
    • removeAttribute

      public Object removeAttribute(String name)
      Description copied from interface: Attributes
      Remove an attribute
      Specified by:
      removeAttribute in interface Attributes
      Parameters:
      name - the attribute to remove
      Returns:
      the value of the attribute if removed, else null
    • setAttribute

      public Object setAttribute(String name, Object attribute)
      Description copied from interface: Attributes
      Set an attribute
      Specified by:
      setAttribute in interface Attributes
      Parameters:
      name - the attribute to set
      attribute - the value to set. A null value is equivalent to removing the attribute.
      Returns:
      the previous value of the attribute if set, else null
    • getAttribute

      public Object getAttribute(String name)
      Description copied from interface: Attributes
      Get an attribute
      Specified by:
      getAttribute in interface Attributes
      Parameters:
      name - the attribute to get
      Returns:
      the value of the attribute
    • getAttributeNameSet

      public Set<String> getAttributeNameSet()
      Description copied from interface: Attributes
      Get the immutable set of attribute names.
      Specified by:
      getAttributeNameSet in interface Attributes
      Returns:
      Set of attribute names
    • clearAttributes

      public void clearAttributes()
      Description copied from interface: Attributes
      Clear all attribute names
      Specified by:
      clearAttributes in interface Attributes
    • hashCode

      public int hashCode()
      Specified by:
      hashCode in interface Attributes
      Overrides:
      hashCode in class Object
    • equals

      public boolean equals(Object o)
      Specified by:
      equals in interface Attributes
      Overrides:
      equals in class Object