Package org.eclipse.jetty.http
Class QuotedCSV
- java.lang.Object
-
- org.eclipse.jetty.http.QuotedCSVParser
-
- org.eclipse.jetty.http.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"
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.util.List<java.lang.String>getValues()Deprecated.booleanisEmpty()Deprecated.java.util.Iterator<java.lang.String>iterator()Deprecated.intsize()Deprecated.java.lang.StringtoString()Deprecated.-
Methods inherited from class org.eclipse.jetty.http.QuotedCSVParser
addValue, unquote
-
-
-
-
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:
iteratorin interfacejava.lang.Iterable<java.lang.String>
-
toString
public java.lang.String toString()
Deprecated.- Overrides:
toStringin classjava.lang.Object
-
-