|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ValueFormatException | |
com.jeceira.item | |
com.jeceira.item.proxy | |
com.jeceira.persistence.info | |
com.jeceira.value | |
javax.jcr | Provides interfaces and classes for the Content Repository for Java Technology (JCR). |
Uses of ValueFormatException in com.jeceira.item |
Methods in com.jeceira.item that throw ValueFormatException | |
SessionProperty |
PropertyBuilder.createProperty(SessionNode parentNode,
boolean initial)
Creates an instance of SessionProperty and initializes it
appropriately with the attributes of this builder. |
protected SessionValue |
SessionProperty.convert(Value v)
Converts the specified value to the type required by the definition of this property. |
protected SessionValue[] |
SessionProperty.copyValue(SessionValue v)
Returns an array of copies of the specified value. |
(package private) void |
SessionProperty.doSetValue(SessionValue v)
Actually sets the value of this single-value property. |
(package private) void |
SessionProperty.doSetValue(SessionValue[] vs)
Actually sets the value of this multi-value property. |
long |
SessionProperty.getLength()
Returns the length of the value of this single-value property. |
long[] |
SessionProperty.getLengths()
Returns the lengths of the values of this multi-value property. |
SessionValue |
SessionProperty.getValue()
Returns the value of this single-value property. |
SessionValue[] |
SessionProperty.getValues()
Returns the value of this multiple-value property. |
void |
SessionProperty.setValue(SessionValue value)
Sets the value of this property and makes a state transition. |
void |
SessionProperty.setValue(SessionValue[] vs)
Sets the value of this property and makes a state transition. |
Uses of ValueFormatException in com.jeceira.item.proxy |
Methods in com.jeceira.item.proxy that throw ValueFormatException | |
boolean |
PropertyProxy.getBoolean()
|
java.util.Calendar |
PropertyProxy.getDate()
|
double |
PropertyProxy.getDouble()
|
long |
PropertyProxy.getLength()
|
long[] |
PropertyProxy.getLengths()
|
long |
PropertyProxy.getLong()
|
Node |
PropertyProxy.getNode()
|
java.io.InputStream |
PropertyProxy.getStream()
|
java.lang.String |
PropertyProxy.getString()
|
Value |
PropertyProxy.getValue()
|
Value[] |
PropertyProxy.getValues()
|
void |
PropertyProxy.setValue(boolean booleanValue)
|
void |
PropertyProxy.setValue(java.util.Calendar dateValue)
|
void |
PropertyProxy.setValue(double doubleValue)
|
void |
PropertyProxy.setValue(java.io.InputStream inputStream)
|
void |
PropertyProxy.setValue(long longValue)
|
void |
PropertyProxy.setValue(Node referenceValue)
|
void |
PropertyProxy.setValue(java.lang.String stringValue)
|
void |
PropertyProxy.setValue(java.lang.String[] stringValues)
|
void |
PropertyProxy.setValue(Value value)
|
void |
PropertyProxy.setValue(Value[] values)
|
Property |
NodeProxy.setProperty(java.lang.String name,
boolean value)
|
Property |
NodeProxy.setProperty(java.lang.String name,
java.util.Calendar value)
|
Property |
NodeProxy.setProperty(java.lang.String name,
double value)
|
Property |
NodeProxy.setProperty(java.lang.String name,
java.io.InputStream value)
|
Property |
NodeProxy.setProperty(java.lang.String name,
long value)
|
Property |
NodeProxy.setProperty(java.lang.String name,
Node value)
|
Property |
NodeProxy.setProperty(java.lang.String name,
java.lang.String value)
|
Property |
NodeProxy.setProperty(java.lang.String name,
java.lang.String value,
int type)
|
Property |
NodeProxy.setProperty(java.lang.String name,
java.lang.String[] values)
|
Property |
NodeProxy.setProperty(java.lang.String name,
java.lang.String[] values,
int type)
|
Property |
NodeProxy.setProperty(java.lang.String name,
Value value)
The spec does not explicitly cover the case of non-existent property and null value argument. |
Property |
NodeProxy.setProperty(java.lang.String name,
Value value,
int type)
|
Property |
NodeProxy.setProperty(java.lang.String name,
Value[] values)
|
Property |
NodeProxy.setProperty(java.lang.String name,
Value[] values,
int type)
|
Uses of ValueFormatException in com.jeceira.persistence.info |
Methods in com.jeceira.persistence.info that throw ValueFormatException | |
static ValueInfo |
ValueInfo.valueOf(java.sql.ResultSet resultSet,
int type)
Converts a result set column into an instance of this class using the specified value type. |
Constructors in com.jeceira.persistence.info that throw ValueFormatException | |
ValueInfo(java.lang.String stringValue,
int type)
Creates value info with the specified string value and value type. |
Uses of ValueFormatException in com.jeceira.value |
Methods in com.jeceira.value that throw ValueFormatException | |
protected byte[] |
LongValue.toBinaryValue()
|
protected java.lang.Boolean |
LongValue.toBooleanValue()
|
protected java.util.Calendar |
LongValue.toDateValue()
|
protected java.lang.Double |
LongValue.toDoubleValue()
|
protected java.lang.Long |
LongValue.toLongValue()
|
protected Name |
LongValue.toNameValue()
|
protected Path |
LongValue.toPathValue()
|
protected Reference |
LongValue.toReferenceValue()
|
protected java.lang.String |
LongValue.toStringValue()
|
protected byte[] |
StreamValue.toBinaryValue()
|
protected java.lang.Boolean |
StreamValue.toBooleanValue()
|
protected java.util.Calendar |
StreamValue.toDateValue()
|
protected java.lang.Double |
StreamValue.toDoubleValue()
|
protected java.lang.Long |
StreamValue.toLongValue()
|
protected Name |
StreamValue.toNameValue()
|
protected Path |
StreamValue.toPathValue()
|
protected Reference |
StreamValue.toReferenceValue()
|
protected java.lang.String |
StreamValue.toStringValue()
|
boolean |
SessionValue.getBoolean()
|
java.util.Calendar |
SessionValue.getDate()
|
double |
SessionValue.getDouble()
|
long |
SessionValue.getLong()
|
Name |
SessionValue.getName()
Returns a Name representation of this value. |
Path |
SessionValue.getPath()
Returns a Path representation of this value. |
Reference |
SessionValue.getReference()
Returns a Reference representation of this value. |
java.io.InputStream |
SessionValue.getStream()
|
java.lang.String |
SessionValue.getString()
|
protected abstract byte[] |
SessionValue.toBinaryValue()
Converts this into a stream value. |
protected abstract java.lang.Boolean |
SessionValue.toBooleanValue()
Converts this into a boolean value. |
protected abstract java.util.Calendar |
SessionValue.toDateValue()
Converts this into a date value. |
protected abstract java.lang.Double |
SessionValue.toDoubleValue()
Converts this into a double value. |
protected abstract java.lang.Long |
SessionValue.toLongValue()
Converts this into a long value. |
protected abstract Name |
SessionValue.toNameValue()
Converts this into a name value. |
protected abstract Path |
SessionValue.toPathValue()
Converts this into a path value. |
protected abstract Reference |
SessionValue.toReferenceValue()
Converts this into a reference value. |
protected abstract java.lang.String |
SessionValue.toStringValue()
Converts this into a string value. |
protected byte[] |
ReferenceValue.toBinaryValue()
|
protected java.lang.Boolean |
ReferenceValue.toBooleanValue()
|
protected java.util.Calendar |
ReferenceValue.toDateValue()
|
protected java.lang.Double |
ReferenceValue.toDoubleValue()
|
protected java.lang.Long |
ReferenceValue.toLongValue()
|
protected Name |
ReferenceValue.toNameValue()
|
protected Path |
ReferenceValue.toPathValue()
|
protected Reference |
ReferenceValue.toReferenceValue()
|
protected java.lang.String |
ReferenceValue.toStringValue()
|
protected byte[] |
BooleanValue.toBinaryValue()
|
protected java.lang.Boolean |
BooleanValue.toBooleanValue()
|
protected java.util.Calendar |
BooleanValue.toDateValue()
|
protected java.lang.Double |
BooleanValue.toDoubleValue()
|
protected java.lang.Long |
BooleanValue.toLongValue()
|
protected Name |
BooleanValue.toNameValue()
|
protected Path |
BooleanValue.toPathValue()
|
protected Reference |
BooleanValue.toReferenceValue()
|
protected java.lang.String |
BooleanValue.toStringValue()
|
static byte[] |
ValueConverter.toBinaryValue(java.lang.String s)
Converts a string into a stream value. |
static java.util.Calendar |
ValueConverter.toDateValue(java.lang.String s)
Converts a string into a date value. |
static java.lang.Double |
ValueConverter.toDoubleValue(java.lang.String s)
Converts a string into a double value. |
static java.lang.Long |
ValueConverter.toLongValue(java.lang.String s)
Converts a string into a long value. |
static Name |
ValueConverter.toNameValue(java.lang.String s,
NamespaceRegistry namespaceRegistry)
Converts a string into a name value using the specified namespace registry. |
static java.lang.String |
ValueConverter.toStringValue(byte[] bytes)
Converts a byte array into a string value. |
SessionValue |
SessionValueFactory.createSessionValue(java.lang.String value,
int type)
Returns a SessionValue object of the specified type with the
specified value. |
Value |
SessionValueFactory.createValue(java.lang.String value,
int type)
|
protected byte[] |
StringValue.toBinaryValue()
|
protected java.lang.Boolean |
StringValue.toBooleanValue()
|
protected java.util.Calendar |
StringValue.toDateValue()
|
protected java.lang.Double |
StringValue.toDoubleValue()
|
protected java.lang.Long |
StringValue.toLongValue()
|
protected Name |
StringValue.toNameValue()
|
protected Path |
StringValue.toPathValue()
|
protected Reference |
StringValue.toReferenceValue()
|
protected java.lang.String |
StringValue.toStringValue()
|
protected byte[] |
PathValue.toBinaryValue()
|
protected java.lang.Boolean |
PathValue.toBooleanValue()
|
protected java.util.Calendar |
PathValue.toDateValue()
|
protected java.lang.Double |
PathValue.toDoubleValue()
|
protected java.lang.Long |
PathValue.toLongValue()
|
protected Name |
PathValue.toNameValue()
|
protected Path |
PathValue.toPathValue()
|
protected Reference |
PathValue.toReferenceValue()
|
protected java.lang.String |
PathValue.toStringValue()
|
protected byte[] |
DateValue.toBinaryValue()
|
protected java.lang.Boolean |
DateValue.toBooleanValue()
|
protected java.util.Calendar |
DateValue.toDateValue()
|
protected java.lang.Double |
DateValue.toDoubleValue()
|
protected java.lang.Long |
DateValue.toLongValue()
|
protected Name |
DateValue.toNameValue()
|
protected Path |
DateValue.toPathValue()
|
protected Reference |
DateValue.toReferenceValue()
|
protected java.lang.String |
DateValue.toStringValue()
|
protected byte[] |
NameValue.toBinaryValue()
|
protected java.lang.Boolean |
NameValue.toBooleanValue()
|
protected java.util.Calendar |
NameValue.toDateValue()
|
protected java.lang.Double |
NameValue.toDoubleValue()
|
protected java.lang.Long |
NameValue.toLongValue()
|
protected Name |
NameValue.toNameValue()
|
protected Path |
NameValue.toPathValue()
|
protected Reference |
NameValue.toReferenceValue()
|
protected java.lang.String |
NameValue.toStringValue()
|
protected byte[] |
DoubleValue.toBinaryValue()
|
protected java.lang.Boolean |
DoubleValue.toBooleanValue()
|
protected java.util.Calendar |
DoubleValue.toDateValue()
|
protected java.lang.Double |
DoubleValue.toDoubleValue()
|
protected java.lang.Long |
DoubleValue.toLongValue()
|
protected Name |
DoubleValue.toNameValue()
|
protected Path |
DoubleValue.toPathValue()
|
protected Reference |
DoubleValue.toReferenceValue()
|
protected java.lang.String |
DoubleValue.toStringValue()
|
Uses of ValueFormatException in javax.jcr |
Methods in javax.jcr that throw ValueFormatException | |
Value |
ValueFactory.createValue(java.lang.String value,
int type)
Returns a Value object of the PropertyType specified by type
with the specified value . |
java.lang.String |
Value.getString()
Returns a String representation of this value. |
double |
Value.getDouble()
Returns a double representation of this value. |
java.util.Calendar |
Value.getDate()
Returns a Calendar representation of this value. |
boolean |
Value.getBoolean()
Returns a Boolean representation of this value. |
void |
Property.setValue(Value value)
Sets the value of this property to value . |
void |
Property.setValue(Value[] values)
Sets the value of this property to the values array. |
void |
Property.setValue(java.lang.String value)
Sets the value of this property to value . |
void |
Property.setValue(java.lang.String[] values)
Sets the value of this property to the values array. |
void |
Property.setValue(java.io.InputStream value)
Sets the value of this property to value . |
void |
Property.setValue(long value)
Sets the value of this property to value . |
void |
Property.setValue(double value)
Sets the value of this property to value . |
void |
Property.setValue(java.util.Calendar value)
Sets the value of this property to value . |
void |
Property.setValue(boolean value)
Sets the value of this property to value . |
void |
Property.setValue(Node value)
Sets this REFERENCE property to refer to the specified node. |
Value |
Property.getValue()
Returns the value of this property as a generic Value object. |
Value[] |
Property.getValues()
Returns an array of all the values of this property. |
java.lang.String |
Property.getString()
Returns a String representation of the value of this
property. |
java.io.InputStream |
Property.getStream()
Returns an InputStream representation of the value of this
property. |
long |
Property.getLong()
Returns a long representation of the value of this
property. |
double |
Property.getDouble()
Returns a double representation of the value of this
property. |
java.util.Calendar |
Property.getDate()
Returns a Calendar representation of the value of this
property. |
boolean |
Property.getBoolean()
Returns a boolean representation of the value of this
property. |
Node |
Property.getNode()
If this property is of type REFERENCE
this method returns the node to which this property refers. |
long |
Property.getLength()
Returns the length of the value of this property. |
long[] |
Property.getLengths()
Returns an array holding the lengths of the values of this (multi-value) property in bytes if the values are PropertyType.BINARY , otherwise it returns the number of
characters needed to display the value in its string form. |
Property |
Node.setProperty(java.lang.String name,
Value value)
Sets the specified (single-value) property of this node to the specified value . |
Property |
Node.setProperty(java.lang.String name,
Value value,
int type)
Sets the specified (single-value) property to the specified value. |
Property |
Node.setProperty(java.lang.String name,
Value[] values)
Sets the specified (multi-value) property to the specified array of values. |
Property |
Node.setProperty(java.lang.String name,
Value[] values,
int type)
Sets the specified (multi-value) property to the specified array of values. |
Property |
Node.setProperty(java.lang.String name,
java.lang.String[] values)
Sets the specified property to the specified array of values. |
Property |
Node.setProperty(java.lang.String name,
java.lang.String[] values,
int type)
Sets the specified property to the specified array of values and to the specified type. |
Property |
Node.setProperty(java.lang.String name,
java.lang.String value)
Sets the specified property to the specified value. |
Property |
Node.setProperty(java.lang.String name,
java.lang.String value,
int type)
Sets the specified (single-value) property to the specified value. |
Property |
Node.setProperty(java.lang.String name,
java.io.InputStream value)
Sets the specified property to the specified value. |
Property |
Node.setProperty(java.lang.String name,
boolean value)
Sets the specified property to the specified value. |
Property |
Node.setProperty(java.lang.String name,
double value)
Sets the specified property to the specified value. |
Property |
Node.setProperty(java.lang.String name,
long value)
Sets the specified property to the specified value. |
Property |
Node.setProperty(java.lang.String name,
java.util.Calendar value)
Sets the specified property to the specified value. |
Property |
Node.setProperty(java.lang.String name,
Node value)
Sets the specified ( REFERENCE )property
to refer to the specified Node . |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |