java.lang.Object
jakarta.ws.rs.core.EntityTag
An abstraction for the value of a HTTP Entity Tag, used as the value of an ETag response header.
- Since:
- 1.0
- Author:
- Paul Sandoz, Marc Hadley
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanComparesobjto this tag to see if they are the same considering weakness and value.getValue()Get the value of anEntityTag.inthashCode()Generate hashCode based on value and weakness.booleanisWeak()Check the strength of anEntityTag.toString()Deprecated.The format of the toString() method is subject to change in a future version.static EntityTagDeprecated.This method will be removed in a future version.
-
Constructor Details
-
EntityTag
Creates a new instance of a strongEntityTag.- Parameters:
value- the value of the tag, quotes not included.- Throws:
IllegalArgumentException- if value isnull.
-
EntityTag
Creates a new instance of anEntityTag.- Parameters:
value- the value of the tag, quotes not included.weak-trueif this represents a weak tag,falseotherwise.- Throws:
IllegalArgumentException- if value isnull.
-
-
Method Details
-
valueOf
Deprecated.This method will be removed in a future version. Please use RuntimeDelegate.getInstance().createHeaderDelegate(EntityTag.class).fromString(value) instead.Creates a new instance ofEntityTagby parsing the supplied string.- Parameters:
value- the entity tag string.- Returns:
- the newly created entity tag.
- Throws:
IllegalArgumentException- if the supplied string cannot be parsed or isnull.
-
isWeak
public boolean isWeak()Check the strength of anEntityTag.- Returns:
trueif this represents a weak tag,falseotherwise.
-
getValue
Get the value of anEntityTag.- Returns:
- the value of the tag.
-
equals
Comparesobjto this tag to see if they are the same considering weakness and value. -
hashCode
public int hashCode()Generate hashCode based on value and weakness. -
toString
Deprecated.The format of the toString() method is subject to change in a future version. Please use RuntimeDelegate.getInstance().createHeaderDelegate(EntityTag.class).toString(value) instead if you rely on the format of this method.Convert the entity tag to a string suitable for use as the value of the corresponding HTTP header.
-