Package org.eclipse.jetty.util.component
Class DumpableCollection
- java.lang.Object
-
- org.eclipse.jetty.util.component.DumpableCollection
-
- All Implemented Interfaces:
Dumpable
@Deprecated(since="2021-05-27") public class DumpableCollection extends Object implements Dumpable
Deprecated.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.component.Dumpable
Dumpable.DumpableContainer
-
-
Constructor Summary
Constructors Constructor Description DumpableCollection(String name, Collection<?> collection)Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Stringdump()Deprecated.voiddump(Appendable out, String indent)Deprecated.Dump this object (and children) into an Appendable using the provided indent after any new lines.static DumpableCollectionfrom(String name, Object... items)Deprecated.static DumpableCollectionfromArray(String name, Object[] array)Deprecated.
-
-
-
Constructor Detail
-
DumpableCollection
public DumpableCollection(String name, Collection<?> collection)
Deprecated.
-
-
Method Detail
-
fromArray
public static DumpableCollection fromArray(String name, Object[] array)
Deprecated.
-
from
public static DumpableCollection from(String name, Object... items)
Deprecated.
-
dump
public void dump(Appendable out, String indent) throws IOException
Deprecated.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
-
-