Class Fields
- java.lang.Object
-
- org.eclipse.jetty.util.Fields
-
- All Implemented Interfaces:
java.lang.Iterable<Fields.Field>
@Deprecated(since="2021-05-27") public class Fields extends java.lang.Object implements java.lang.Iterable<Fields.Field>
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.A container for name/value pairs, known as fields.
A
Fields.Fieldis composed of a name string that can be case-sensitive or case-insensitive (by specifying the option at the constructor) and of a case-sensitive set of value strings.The implementation of this class is not thread safe.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classFields.FieldDeprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.
-
Constructor Summary
Constructors Constructor Description Fields()Deprecated.Creates an empty, modifiable, case insensitiveFieldsinstance.Fields(boolean caseSensitive)Deprecated.Creates an empty, modifiable, case insensitiveFieldsinstance.Fields(Fields original, boolean immutable)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidadd(java.lang.String name, java.lang.String value)Deprecated.Adds the given value to a field with the given name, creating aFields.Fieldis none exists for the given name.voidclear()Deprecated.Empties thisFieldsinstance from all fieldsbooleanequals(java.lang.Object obj)Deprecated.Fields.Fieldget(java.lang.String name)Deprecated.java.util.Set<java.lang.String>getNames()Deprecated.intgetSize()Deprecated.inthashCode()Deprecated.booleanisEmpty()Deprecated.java.util.Iterator<Fields.Field>iterator()Deprecated.voidput(java.lang.String name, java.lang.String value)Deprecated.Inserts or replaces the given name/value pair as a single-valuedFields.Field.voidput(Fields.Field field)Deprecated.Inserts or replaces the givenFields.Field, mapped to thefield's nameFields.Fieldremove(java.lang.String name)Deprecated.Removes theFields.Fieldwith the given namejava.lang.StringtoString()Deprecated.
-
-
-
Constructor Detail
-
Fields
public Fields()
Deprecated.Creates an empty, modifiable, case insensitive
Fieldsinstance.- See Also:
Fields(Fields, boolean)
-
Fields
public Fields(boolean caseSensitive)
Deprecated.Creates an empty, modifiable, case insensitive
Fieldsinstance.- Parameters:
caseSensitive- whether thisFieldsinstance must be case sensitive- See Also:
Fields(Fields, boolean)
-
Fields
public Fields(Fields original, boolean immutable)
Deprecated.Creates a
Fieldsinstance by copying the fields from the givenFieldsand making it (im)mutable depending on the givenimmutableparameter- Parameters:
original- theFieldsto copy fields fromimmutable- whether this instance is immutable
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object obj)
Deprecated.- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
Deprecated.- Overrides:
hashCodein classjava.lang.Object
-
getNames
public java.util.Set<java.lang.String> getNames()
Deprecated.- Returns:
- a set of field names
-
get
public Fields.Field get(java.lang.String name)
Deprecated.- Parameters:
name- the field name- Returns:
- the
Fields.Fieldwith the given name, or null if no such field exists
-
put
public void put(java.lang.String name, java.lang.String value)Deprecated.Inserts or replaces the given name/value pair as a single-valued
Fields.Field.- Parameters:
name- the field namevalue- the field value
-
put
public void put(Fields.Field field)
Deprecated.Inserts or replaces the given
Fields.Field, mapped to thefield's name- Parameters:
field- the field to put
-
add
public void add(java.lang.String name, java.lang.String value)Deprecated.Adds the given value to a field with the given name, creating a
Fields.Fieldis none exists for the given name.- Parameters:
name- the field namevalue- the field value to add
-
remove
public Fields.Field remove(java.lang.String name)
Deprecated.Removes the
Fields.Fieldwith the given name- Parameters:
name- the name of the field to remove- Returns:
- the removed field, or null if no such field existed
-
clear
public void clear()
Deprecated.Empties this
Fieldsinstance from all fields- See Also:
isEmpty()
-
isEmpty
public boolean isEmpty()
Deprecated.- Returns:
- whether this
Fieldsinstance is empty
-
getSize
public int getSize()
Deprecated.- Returns:
- the number of fields
-
iterator
public java.util.Iterator<Fields.Field> iterator()
Deprecated.- Specified by:
iteratorin interfacejava.lang.Iterable<Fields.Field>- Returns:
- an iterator over the
Fields.Fields present in this instance
-
toString
public java.lang.String toString()
Deprecated.- Overrides:
toStringin classjava.lang.Object
-
-