Class Attributes.Lazy
java.lang.Object
org.eclipse.jetty.util.Attributes.Lazy
- All Implemented Interfaces:
Attributes, Dumpable
- Direct Known Subclasses:
HttpConversation
- Enclosing interface:
Attributes
An
Attributes implementation that lazily creates a backing map iff it is actually needed.-
Nested Class Summary
Nested classes/interfaces inherited from interface Attributes
Attributes.Layer, Attributes.Lazy, Attributes.Mapped, Attributes.Synthetic, Attributes.WrapperNested classes/interfaces inherited from interface Dumpable
Dumpable.DumpableContainer -
Field Summary
Fields inherited from interface Attributes
NULL -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddAll(Attributes attributes) voidClear all attribute namesdump()voiddump(Appendable out, String indent) Dump this object (and children) into an Appendable using the provided indent after any new lines.booleangetAttribute(String name) Get an attributeGet the immutable set of attribute names.inthashCode()removeAttribute(String name) Remove an attributesetAttribute(String name, Object attribute) Set an attributeintsize()toString()
-
Constructor Details
-
Lazy
public Lazy()
-
-
Method Details
-
asAttributeMap
- Specified by:
asAttributeMapin interfaceAttributes
-
removeAttribute
Description copied from interface:AttributesRemove an attribute- Specified by:
removeAttributein interfaceAttributes- Parameters:
name- the attribute to remove- Returns:
- the value of the attribute if removed, else
null
-
setAttribute
Description copied from interface:AttributesSet an attribute- Specified by:
setAttributein interfaceAttributes- Parameters:
name- the attribute to setattribute- 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
Description copied from interface:AttributesGet an attribute- Specified by:
getAttributein interfaceAttributes- Parameters:
name- the attribute to get- Returns:
- the value of the attribute, or
nullif no such attribute exists
-
getAttributeNameSet
Description copied from interface:AttributesGet the immutable set of attribute names.- Specified by:
getAttributeNameSetin interfaceAttributes- Returns:
- Set of attribute names, or an empty set if there are no attributes.
-
clearAttributes
public void clearAttributes()Description copied from interface:AttributesClear all attribute names- Specified by:
clearAttributesin interfaceAttributes
-
size
public int size() -
toString
-
addAll
-
dump
-
dump
Description copied from interface:DumpableDump this object (and children) into an Appendable using the provided indent after any new lines. The indent should not be applied to the first object dumped.- Specified by:
dumpin interfaceDumpable- Parameters:
out- The appendable to dump toindent- The indent to apply after any new lines.- Throws:
IOException- if unable to write to Appendable
-
hashCode
public int hashCode()- Specified by:
hashCodein interfaceAttributes- Overrides:
hashCodein classObject
-
equals
- Specified by:
equalsin interfaceAttributes- Overrides:
equalsin classObject
-