Class QuotedCSV

  • All Implemented Interfaces:
    java.lang.Iterable<java.lang.String>
    Direct Known Subclasses:
    QuotedQualityCSV

    @Deprecated(since="2021-05-27")
    public class QuotedCSV
    extends QuotedCSVParser
    implements java.lang.Iterable<java.lang.String>
    Deprecated.
    The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.
    Implements a quoted comma separated list of values in accordance with RFC7230. OWS is removed and quoted characters ignored for parsing.
    See Also:
    "https://tools.ietf.org/html/rfc7230#section-3.2.6", "https://tools.ietf.org/html/rfc7230#section-7"
    • Constructor Summary

      Constructors 
      Constructor Description
      QuotedCSV​(boolean keepQuotes, java.lang.String... values)
      Deprecated.
       
      QuotedCSV​(java.lang.String... values)
      Deprecated.
       
    • Method Summary

      All Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      java.util.List<java.lang.String> getValues()
      Deprecated.
       
      boolean isEmpty()
      Deprecated.
       
      java.util.Iterator<java.lang.String> iterator()
      Deprecated.
       
      int size()
      Deprecated.
       
      java.lang.String toString()
      Deprecated.
       
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface java.lang.Iterable

        forEach, spliterator
    • Constructor Detail

      • QuotedCSV

        public QuotedCSV​(java.lang.String... values)
        Deprecated.
      • QuotedCSV

        public QuotedCSV​(boolean keepQuotes,
                         java.lang.String... values)
        Deprecated.
    • Method Detail

      • size

        public int size()
        Deprecated.
      • isEmpty

        public boolean isEmpty()
        Deprecated.
      • getValues

        public java.util.List<java.lang.String> getValues()
        Deprecated.
      • iterator

        public java.util.Iterator<java.lang.String> iterator()
        Deprecated.
        Specified by:
        iterator in interface java.lang.Iterable<java.lang.String>
      • toString

        public java.lang.String toString()
        Deprecated.
        Overrides:
        toString in class java.lang.Object