|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object javax.ws.rs.core.EntityTag
public class EntityTag
An abstraction for the value of a HTTP Entity Tag, used as the value of an ETag response header.
Constructor Summary | |
---|---|
EntityTag(java.lang.String value)
Creates a new instance of a strong EntityTag. |
|
EntityTag(java.lang.String value,
boolean weak)
Creates a new instance of an EntityTag |
Method Summary | |
---|---|
boolean |
equals(java.lang.Object obj)
Compares obj to this tag to see if they are the same considering weakness and value. |
java.lang.String |
getValue()
Get the value of an EntityTag |
int |
hashCode()
Generate hashCode based on value and weakness. |
boolean |
isWeak()
Check the strength of an EntityTag |
java.lang.String |
toString()
Convert the entity tag to a string suitable for use as the value of the corresponding HTTP header. |
static EntityTag |
valueOf(java.lang.String value)
Creates a new instance of EntityTag by parsing the supplied string. |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public EntityTag(java.lang.String value)
value
- the value of the tag, quotes not included.
java.lang.IllegalArgumentException
- if value is nullpublic EntityTag(java.lang.String value, boolean weak)
value
- the value of the tag, quotes not included.weak
- true if this represents a weak tag, false otherwise
java.lang.IllegalArgumentException
- if value is nullMethod Detail |
---|
public static EntityTag valueOf(java.lang.String value) throws java.lang.IllegalArgumentException
value
- the entity tag string
java.lang.IllegalArgumentException
- if the supplied string cannot be parsed
or is nullpublic boolean isWeak()
public java.lang.String getValue()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
obj
- the object to compare to
public int hashCode()
hashCode
in class java.lang.Object
public java.lang.String toString()
toString
in class java.lang.Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |