Class Fields.Field

java.lang.Object
org.eclipse.jetty.util.Fields.Field
Enclosing class:
Fields

@Deprecated(since="2021-05-27") public static class Fields.Field extends Object
Deprecated.
The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.

A named list of string values.

The name is case-sensitive and there must be at least one value.

  • Constructor Details

    • Field

      public Field(String name, String value)
      Deprecated.
  • Method Details

    • equals

      public boolean equals(Fields.Field that, boolean caseSensitive)
      Deprecated.
    • equals

      public boolean equals(Object obj)
      Deprecated.
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Deprecated.
      Overrides:
      hashCode in class Object
    • getName

      public String getName()
      Deprecated.
      Returns:
      the field's name
    • getValue

      public String getValue()
      Deprecated.
      Returns:
      the first field's value
    • getValueAsInt

      public Integer getValueAsInt()
      Deprecated.

      Attempts to convert the result of getValue() to an integer, returning it if the conversion is successful; returns null if the result of getValue() is null.

      Returns:
      the result of getValue() converted to an integer, or null
      Throws:
      NumberFormatException - if the conversion fails
    • getValues

      public List<String> getValues()
      Deprecated.
      Returns:
      the field's values
    • hasMultipleValues

      public boolean hasMultipleValues()
      Deprecated.
      Returns:
      whether the field has multiple values
    • toString

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