|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Value | |
com.jeceira.item | |
com.jeceira.item.proxy | |
com.jeceira.nodetype | |
com.jeceira.nodetype.constraints | |
com.jeceira.nodetype.filter | |
com.jeceira.value | |
javax.jcr | Provides interfaces and classes for the Content Repository for Java Technology (JCR). |
javax.jcr.nodetype | Provides interfaces and classes for JCR node type functionality. |
javax.jcr.query | Provides interfaces and classes for JCR searching functionality. |
Uses of Value in com.jeceira.item |
Methods in com.jeceira.item with parameters of type Value | |
protected SessionValue |
SessionProperty.convert(Value v)
Converts the specified value to the type required by the definition of this property. |
Uses of Value in com.jeceira.item.proxy |
Methods in com.jeceira.item.proxy that return Value | |
Value |
PropertyProxy.getValue()
|
Value[] |
PropertyProxy.getValues()
|
Methods in com.jeceira.item.proxy with parameters of type Value | |
void |
PropertyProxy.setValue(Value value)
|
void |
PropertyProxy.setValue(Value[] values)
|
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 Value in com.jeceira.nodetype |
Methods in com.jeceira.nodetype that return Value | |
Value[] |
SessionPropertyDef.getDefaultValues()
|
Methods in com.jeceira.nodetype with parameters of type Value | |
boolean |
SessionNodeType.canSetProperty(java.lang.String propertyName,
Value value)
If the given Value is null, this method acts like SessionNodeType.canRemoveItem(java.lang.String) . |
boolean |
SessionNodeType.canSetProperty(java.lang.String propertyName,
Value[] values)
This method acts like SessionNodeType.canSetProperty(java.lang.String, javax.jcr.Value) except that a
property definition which also allows multiple values must exist. |
Uses of Value in com.jeceira.nodetype.constraints |
Methods in com.jeceira.nodetype.constraints with parameters of type Value | |
boolean |
ValueConstraint.permit(Value value,
SessionContext context)
Determines whether the given value is permited by this ValueConstraint relatively to the provided Session object. |
boolean |
ValueConstraint.permit(Value[] values,
SessionContext context)
Determines whether each value in the given array is permited by this ValueConstraint relatively to the provided Session object. |
boolean |
DateConstraint.permit(Value value,
SessionContext context)
Returns true if this interval contains the given value. |
boolean |
NameConstraint.permit(Value value,
SessionContext context)
Returns true if the given Value's string representation is equal to the item name of this constraint. |
boolean |
BinaryConstraint.permit(Value value,
SessionContext context)
Returns true if the number of available bytes in the given value's stream representation is contained in the interval represented by this constraint. |
abstract boolean |
AbstractValueConstraint.permit(Value value,
SessionContext context)
|
boolean |
AbstractValueConstraint.permit(Value[] values,
SessionContext context)
Before this method does the validation all null values in the given array will be filterd out. |
boolean |
BooleanConstraint.permit(Value value,
SessionContext context)
Returns true if the given boolean value is equal to the value of this constraint. |
boolean |
DoubleConstraint.permit(Value value,
SessionContext context)
Returns true if this interval contains the given value. |
boolean |
ReferenceConstraint.permit(Value value,
SessionContext context)
Returns true if the given ReferenceValue points to a node which is of the type dictated by this contraint. |
boolean |
ValueConstraints.permit(Value value,
SessionContext context)
Returns true if the given value is permited by at least one constraint in this constraints set. |
boolean |
ValueConstraints.permit(Value[] values,
SessionContext context)
Returns true if each value in the given value array is permited by at least one constraint in this constraints set. |
boolean |
LongConstraint.permit(Value value,
SessionContext context)
Returns true if this interval contains the given value. |
boolean |
StringConstraint.permit(Value value,
SessionContext context)
Validates the string representation of the given Value object against this constraint. |
boolean |
PathConstraint.permit(Value value,
SessionContext context)
Returns true if the given value's string representation matches this path constraint. |
Uses of Value in com.jeceira.nodetype.filter |
Methods in com.jeceira.nodetype.filter with parameters of type Value | |
void |
FilterOptions.filterByValueConstraints(Value value,
SessionContext context,
boolean mustSatisfyValueConstraints)
|
static java.util.List |
ItemDefFilter.filterByValueConstraints(java.util.List propertyDefs,
Value value,
SessionContext context,
boolean mustSatisfyValueConstraints)
|
void |
ImmutableFilterOptions.filterByValueConstraints(Value value,
SessionContext context,
boolean mustSatisfyValueConstraints)
|
Constructors in com.jeceira.nodetype.filter with parameters of type Value | |
ValueConstraintsFilter(Value value,
SessionContext sessionContext,
boolean mustSatisfyValueConstraints)
|
Uses of Value in com.jeceira.value |
Classes in com.jeceira.value that implement Value | |
(package private) class |
BooleanValue
|
(package private) class |
DateValue
|
(package private) class |
DoubleValue
|
(package private) class |
LongValue
|
(package private) class |
NameValue
|
(package private) class |
PathValue
|
(package private) class |
ReferenceValue
|
class |
SessionValue
|
(package private) class |
StreamValue
|
(package private) class |
StringValue
|
Methods in com.jeceira.value that return Value | |
Value |
SessionValueFactory.createValue(boolean value)
|
Value |
SessionValueFactory.createValue(java.util.Calendar value)
|
Value |
SessionValueFactory.createValue(double value)
|
Value |
SessionValueFactory.createValue(java.io.InputStream value)
|
Value |
SessionValueFactory.createValue(long value)
|
Value |
SessionValueFactory.createValue(Node value)
|
Value |
SessionValueFactory.createValue(java.lang.String value)
|
Value |
SessionValueFactory.createValue(java.lang.String value,
int type)
|
Methods in com.jeceira.value with parameters of type Value | |
static byte[] |
ValueConverter.toBinaryValue(Value v)
Converts a value into a byte array. |
SessionValue |
SessionValueFactory.createSessionValue(Value value)
Converts a value into a session value. |
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 |