|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Value | |
javax.jcr | Provides interfaces and classes for the Content Repository for Java Technology. |
javax.jcr.nodetype | Provides interfaces and classes for content repository node type functionality. |
javax.jcr.query | Provides interfaces and classes for content repository searching functionality. |
Uses of Value in javax.jcr |
Methods in javax.jcr that return Value | |
Value |
ValueFactory.createValue(java.lang.String value)
Returns a Value object of PropertyType.STRING
with the specified value . |
Value |
ValueFactory.createValue(java.lang.String value,
int type)
Returns a Value object of the PropertyType specified by type
with the specified value . |
Value |
ValueFactory.createValue(long value)
Returns a Value object of PropertyType.LONG
with the specified value . |
Value |
ValueFactory.createValue(double value)
Returns a Value object of PropertyType.DOUBLE
with the specified value . |
Value |
ValueFactory.createValue(boolean value)
Returns a Value object of PropertyType.BOOLEAN
with the specified value . |
Value |
ValueFactory.createValue(java.util.Calendar value)
Returns a Value object of PropertyType.DATE
with the specified value . |
Value |
ValueFactory.createValue(java.io.InputStream value)
Returns a Value object of PropertyType.BINARY
with a value consisting of the content of the specified InputStream . |
Value |
ValueFactory.createValue(Node value)
Returns a Value object of PropertyType.REFERENCE
that holds the UUID of 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. |
Methods in javax.jcr with parameters of type 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. |
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. |
Uses of Value in javax.jcr.nodetype |
Methods in javax.jcr.nodetype that return Value | |
Value[] |
PropertyDefinition.getDefaultValues()
Gets the default value(s) of the property. |
Methods in javax.jcr.nodetype with parameters of type Value | |
boolean |
NodeType.canSetProperty(java.lang.String propertyName,
Value value)
Returns true if setting propertyName to
value is allowed by this node type. |
boolean |
NodeType.canSetProperty(java.lang.String propertyName,
Value[] values)
Returns true if setting propertyName to
values is allowed by this node type. |
Uses of Value in javax.jcr.query |
Methods in javax.jcr.query that return Value | |
Value[] |
Row.getValues()
Returns an array of all the values in the same order as the column names returned by QueryResult.getColumnNames() . |
Value |
Row.getValue(java.lang.String propertyName)
Returns the value of the indicated property in this Row . |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |