Package org.apache.jackrabbit.value
Class URIValue
- java.lang.Object
-
- org.apache.jackrabbit.value.BaseValue
-
- org.apache.jackrabbit.value.URIValue
-
- All Implemented Interfaces:
javax.jcr.Value
public class URIValue extends BaseValue
AURIValue
provides an implementation of theValue
interface representing aURI
value (an absolute or relative workspace path).
-
-
Field Summary
Fields Modifier and Type Field Description static int
TYPE
-
Constructor Summary
Constructors Constructor Description URIValue(java.net.URI uri)
Returns a newURIValue
initialized to the value of the specified URI.
-
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()
java.util.Calendar
getDate()
java.math.BigDecimal
getDecimal()
double
getDouble()
long
getLong()
int
hashCode()
Returns zero to satisfy the Object equals/hashCode contract.static URIValue
valueOf(java.lang.String s)
Returns a newURIValue
initialized to the value represented by the specifiedString
.
-
-
-
Field Detail
-
TYPE
public static final int TYPE
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
URIValue
public URIValue(java.net.URI uri)
Returns a newURIValue
initialized to the value of the specified URI.- Parameters:
uri
- the path thisURIValue
should represent- See Also:
valueOf(java.lang.String)
-
-
Method Detail
-
valueOf
public static URIValue valueOf(java.lang.String s) throws javax.jcr.ValueFormatException
Returns a newURIValue
initialized to the value represented by the specifiedString
.The specified
String
must be a valid URI.- Parameters:
s
- the string to be parsed.- Returns:
- a newly constructed
URIValue
representing the the specified value. - Throws:
javax.jcr.ValueFormatException
- If theString
is not a valid URI.
-
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 aURIValue
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 javax.jcr.ValueFormatException, java.lang.IllegalStateException, javax.jcr.RepositoryException
-
getLong
public long getLong() throws javax.jcr.ValueFormatException, java.lang.IllegalStateException, javax.jcr.RepositoryException
-
getBoolean
public boolean getBoolean() throws javax.jcr.ValueFormatException, java.lang.IllegalStateException, javax.jcr.RepositoryException
- Specified by:
getBoolean
in interfacejavax.jcr.Value
- Overrides:
getBoolean
in classBaseValue
- Throws:
javax.jcr.ValueFormatException
java.lang.IllegalStateException
javax.jcr.RepositoryException
-
getDouble
public double getDouble() throws javax.jcr.ValueFormatException, java.lang.IllegalStateException, javax.jcr.RepositoryException
-
getDecimal
public java.math.BigDecimal getDecimal() throws javax.jcr.ValueFormatException, java.lang.IllegalStateException, javax.jcr.RepositoryException
- Specified by:
getDecimal
in interfacejavax.jcr.Value
- Overrides:
getDecimal
in classBaseValue
- Throws:
javax.jcr.ValueFormatException
java.lang.IllegalStateException
javax.jcr.RepositoryException
-
-