|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.jackrabbit.value.BaseValue
org.apache.jackrabbit.value.DateValue
public class DateValue
A DateValue provides an implementation
of the Value interface representing a date value.
| Field Summary | |
|---|---|
static int |
TYPE
|
| Fields inherited from class org.apache.jackrabbit.value.BaseValue |
|---|
DEFAULT_ENCODING, stream, type |
| Constructor Summary | |
|---|---|
DateValue(Calendar date)
Constructs a DateValue object representing a date. |
|
| Method Summary | |
|---|---|
boolean |
equals(Object obj)
Indicates whether some other object is "equal to" this one. |
boolean |
getBoolean()
|
Calendar |
getDate()
|
BigDecimal |
getDecimal()
|
double |
getDouble()
|
protected String |
getInternalString()
Returns the internal string representation of this value without modifying the value state. |
long |
getLong()
|
int |
hashCode()
Returns zero to satisfy the Object equals/hashCode contract. |
static DateValue |
valueOf(String s)
Returns a new DateValue initialized to the value
represented by the specified String. |
| Methods inherited from class org.apache.jackrabbit.value.BaseValue |
|---|
getBinary, getStream, getString, getType |
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public static final int TYPE
| Constructor Detail |
|---|
public DateValue(Calendar date)
throws IllegalArgumentException
DateValue object representing a date.
date - the date this DateValue should represent
IllegalArgumentException - if the given date cannot be represented
as defined by ISO 8601.| Method Detail |
|---|
public static DateValue valueOf(String s)
throws ValueFormatException
DateValue initialized to the value
represented by the specified String.
The specified String must be a ISO8601-compliant date/time
string.
s - the string to be parsed.
DateValue representing the
the specified value.
ValueFormatException - If the String is not a valid
ISO8601-compliant date/time string.ISO8601public boolean equals(Object obj)
The result is true if and only if the argument is not
null and is a DateValue object that
represents the same value as this object.
The value comparison is performed using the ISO 8601 string representation of the dates, since the native Calendar.equals() method may produce false negatives (see JSR-598).
Note that the comparison still returns false when comparing the same time in different time zones, but that seems to be the intent of JSR 170. Compare the Value.getDate().getTime() values if you need an exact time comparison in UTC.
equals in class Objectobj - the reference object with which to compare.
true if this object is the same as the obj
argument; false otherwise.public int hashCode()
hashCode in class ObjectObject.hashCode()
protected String getInternalString()
throws ValueFormatException
getInternalString in class BaseValueValueFormatException - if the value can not be represented as a
String or if the value is
null.
public Calendar getDate()
throws ValueFormatException,
IllegalStateException,
RepositoryException
getDate in interface ValuegetDate in class BaseValueValueFormatException
IllegalStateException
RepositoryException
public long getLong()
throws ValueFormatException,
IllegalStateException,
RepositoryException
getLong in interface ValuegetLong in class BaseValueValueFormatException
IllegalStateException
RepositoryException
public boolean getBoolean()
throws ValueFormatException,
IllegalStateException,
RepositoryException
getBoolean in interface ValuegetBoolean in class BaseValueValueFormatException
IllegalStateException
RepositoryException
public double getDouble()
throws ValueFormatException,
IllegalStateException,
RepositoryException
getDouble in interface ValuegetDouble in class BaseValueValueFormatException
IllegalStateException
RepositoryException
public BigDecimal getDecimal()
throws ValueFormatException,
IllegalStateException,
RepositoryException
getDecimal in interface ValuegetDecimal in class BaseValueValueFormatException
IllegalStateException
RepositoryException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||