Package org.apache.jackrabbit.value
Class ReferenceValue
- java.lang.Object
-
- org.apache.jackrabbit.value.BaseValue
-
- org.apache.jackrabbit.value.ReferenceValue
-
-
Field Summary
Fields Modifier and Type Field Description static int
TYPE
-
Constructor Summary
Constructors Constructor Description ReferenceValue(Node target)
Constructs aReferenceValue
object representing the UUID of an existing node.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
Indicates whether some other object is "equal to" this one.boolean
getBoolean()
Returns aBoolean
representation of this value.java.util.Calendar
getDate()
Returns aCalendar
representation of this value.java.math.BigDecimal
getDecimal()
Returns aBigDecimal
representation of this value.double
getDouble()
Returns adouble
representation of this value.long
getLong()
Returns along
representation of this value.int
hashCode()
Returns zero to satisfy the Object equals/hashCode contract.static ReferenceValue
valueOf(java.lang.String s)
Returns a newReferenceValue
initialized to the value represented by the specifiedString
.
-
-
-
Field Detail
-
TYPE
public static final int TYPE
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ReferenceValue
public ReferenceValue(Node target) throws RepositoryException
Constructs aReferenceValue
object representing the UUID of an existing node.- Parameters:
target
- the node to be referenced- Throws:
java.lang.IllegalArgumentException
- Iftarget
is nonreferenceable.RepositoryException
- If another error occurs.
-
-
Method Detail
-
valueOf
public static ReferenceValue valueOf(java.lang.String s) throws ValueFormatException
Returns a newReferenceValue
initialized to the value represented by the specifiedString
.The specified
String
must denote the UUID of an existing node.- Parameters:
s
- the string to be parsed.- Returns:
- a newly constructed
ReferenceValue
representing the the specified value. - Throws:
ValueFormatException
- If theString
is not a valid not a valid UUID format.
-
equals
public boolean equals(java.lang.Object obj)
Indicates whether some other object is "equal to" this one.The result is
true
if and only if the argument is notnull
and is aReferenceValue
object that represents the same value as this object.- Overrides:
equals
in classjava.lang.Object
- Parameters:
obj
- the reference object with which to compare.- Returns:
true
if this object is the same as the obj argument;false
otherwise.
-
hashCode
public int hashCode()
Returns zero to satisfy the Object equals/hashCode contract. This class is mutable and not meant to be used as a hash key.- Overrides:
hashCode
in classjava.lang.Object
- Returns:
- always zero
- See Also:
Object.hashCode()
-
getDate
public java.util.Calendar getDate() throws ValueFormatException, java.lang.IllegalStateException, RepositoryException
Returns aCalendar
representation of this value.The object returned is a copy of the stored value, so changes to it are not reflected in internal storage.
- Specified by:
getDate
in interfaceValue
- Overrides:
getDate
in classBaseValue
- Returns:
- A
Calendar
representation of this value. - Throws:
ValueFormatException
- if conversion to aCalendar
is not possible.RepositoryException
- if another error occurs.java.lang.IllegalStateException
-
getLong
public long getLong() throws ValueFormatException, java.lang.IllegalStateException, RepositoryException
Returns along
representation of this value.- Specified by:
getLong
in interfaceValue
- Overrides:
getLong
in classBaseValue
- Returns:
- A
long
representation of this value. - Throws:
ValueFormatException
- if conversion to anlong
is not possible.RepositoryException
- if another error occurs.java.lang.IllegalStateException
-
getBoolean
public boolean getBoolean() throws ValueFormatException, java.lang.IllegalStateException, RepositoryException
Returns aBoolean
representation of this value.- Specified by:
getBoolean
in interfaceValue
- Overrides:
getBoolean
in classBaseValue
- Returns:
- A
Boolean
representation of this value. - Throws:
ValueFormatException
- if conversion to aBoolean
is not possible.RepositoryException
- if another error occurs.java.lang.IllegalStateException
-
getDouble
public double getDouble() throws ValueFormatException, java.lang.IllegalStateException, RepositoryException
Returns adouble
representation of this value.- Specified by:
getDouble
in interfaceValue
- Overrides:
getDouble
in classBaseValue
- Returns:
- A
double
representation of this value. - Throws:
ValueFormatException
- if conversion to adouble
is not possible.RepositoryException
- if another error occurs.java.lang.IllegalStateException
-
getDecimal
public java.math.BigDecimal getDecimal() throws ValueFormatException, java.lang.IllegalStateException, RepositoryException
Returns aBigDecimal
representation of this value.- Specified by:
getDecimal
in interfaceValue
- Overrides:
getDecimal
in classBaseValue
- Returns:
- A
BigDecimal
representation of this value. - Throws:
ValueFormatException
- if conversion to aBigDecimal
is not possible.RepositoryException
- if another error occurs.java.lang.IllegalStateException
-
-