Package javax.ws.rs.core
Class EntityTag
- java.lang.Object
-
- javax.ws.rs.core.EntityTag
-
public class EntityTag extends Object
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:
- HTTP/1.1 section 3.11
-
-
Method Summary
Modifier and Type Method Description booleanequals(Object obj)Comparesobjto this tag to see if they are the same considering weakness and value.StringgetValue()Get the value of anEntityTag.inthashCode()Generate hashCode based on value and weakness.booleanisWeak()Check the strength of anEntityTag.StringtoString()Convert the entity tag to a string suitable for use as the value of the corresponding HTTP header.static EntityTagvalueOf(String value)Creates a new instance ofEntityTagby parsing the supplied string.
-
-
-
Constructor Detail
-
EntityTag
public EntityTag(String value)
Creates a new instance of a strongEntityTag.- Parameters:
value- the value of the tag, quotes not included.- Throws:
IllegalArgumentException- if value isnull.
-
EntityTag
public EntityTag(String value, boolean weak)
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 Detail
-
valueOf
public static EntityTag valueOf(String value)
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
public String getValue()
Get the value of anEntityTag.- Returns:
- the value of the tag.
-
equals
public boolean equals(Object obj)
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.
-
-