Class QuotedCSVParser

  • Direct Known Subclasses:
    QuotedCSV

    @Deprecated(since="2021-05-27")
    public abstract class QuotedCSVParser
    extends java.lang.Object
    Deprecated.
    The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.
    Implements a quoted comma separated list parser 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
      QuotedCSVParser​(boolean keepQuotes)
      Deprecated.
       
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      void addValue​(java.lang.String value)
      Deprecated.
      Add and parse a value string(s)
      static java.lang.String unquote​(java.lang.String s)
      Deprecated.
       
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • QuotedCSVParser

        public QuotedCSVParser​(boolean keepQuotes)
        Deprecated.
    • Method Detail

      • unquote

        public static java.lang.String unquote​(java.lang.String s)
        Deprecated.
      • addValue

        public void addValue​(java.lang.String value)
        Deprecated.
        Add and parse a value string(s)
        Parameters:
        value - A value that may contain one or more Quoted CSV items.