Class DumpableCollection

  • All Implemented Interfaces:
    Dumpable

    @Deprecated(since="2021-05-27")
    public class DumpableCollection
    extends java.lang.Object
    implements Dumpable
    Deprecated.
    • Field Summary

      • Fields inherited from interface org.eclipse.jetty.util.component.Dumpable

        KEY
    • Constructor Summary

      Constructors 
      Constructor Description
      DumpableCollection​(java.lang.String name, java.util.Collection<?> collection)
      Deprecated.
       
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      java.lang.String dump()
      Deprecated.
       
      void dump​(java.lang.Appendable out, java.lang.String indent)
      Deprecated.
      Dump this object (and children) into an Appendable using the provided indent after any new lines.
      static DumpableCollection from​(java.lang.String name, java.lang.Object... items)
      Deprecated.
       
      static DumpableCollection fromArray​(java.lang.String name, java.lang.Object[] array)
      Deprecated.
       
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface org.eclipse.jetty.util.component.Dumpable

        dumpSelf
    • Constructor Detail

      • DumpableCollection

        public DumpableCollection​(java.lang.String name,
                                  java.util.Collection<?> collection)
        Deprecated.
    • Method Detail

      • fromArray

        public static DumpableCollection fromArray​(java.lang.String name,
                                                   java.lang.Object[] array)
        Deprecated.
      • from

        public static DumpableCollection from​(java.lang.String name,
                                              java.lang.Object... items)
        Deprecated.
      • dump

        public java.lang.String dump()
        Deprecated.
        Specified by:
        dump in interface Dumpable
      • dump

        public void dump​(java.lang.Appendable out,
                         java.lang.String indent)
                  throws java.io.IOException
        Deprecated.
        Description copied from interface: Dumpable
        Dump 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:
        dump in interface Dumpable
        Parameters:
        out - The appendable to dump to
        indent - The indent to apply after any new lines.
        Throws:
        java.io.IOException - if unable to write to Appendable