Package | Description |
---|---|
javax.jcr |
Provides interfaces and classes for the Content Repository for Java Technology.
|
javax.jcr.util |
Provides utility classes for the content repository API.
|
Modifier and Type | Method and Description |
---|---|
Property |
Node.getProperty(String relPath)
Returns the property at
relPath relative to this
node. |
Property |
PropertyIterator.nextProperty()
Returns the next
Property in the iteration. |
Property |
Node.setProperty(String name,
boolean value)
Sets the specified property to the specified value.
|
Property |
Node.setProperty(String name,
Calendar value)
Sets the specified property to the specified value.
|
Property |
Node.setProperty(String name,
double value)
Sets the specified property to the specified value.
|
Property |
Node.setProperty(String name,
InputStream value)
Sets the specified property to the specified value.
|
Property |
Node.setProperty(String name,
long value)
Sets the specified property to the specified value.
|
Property |
Node.setProperty(String name,
Node value)
Sets the specified (
REFERENCE )property
to refer to the specified Node . |
Property |
Node.setProperty(String name,
String value)
Sets the specified property to the specified value.
|
Property |
Node.setProperty(String name,
String[] values)
Sets the specified property to the specified array of values.
|
Property |
Node.setProperty(String name,
String[] values,
int type)
Sets the specified property to the specified array of values and to the specified type.
|
Property |
Node.setProperty(String name,
String value,
int type)
Sets the specified (single-value) property to the specified value.
|
Property |
Node.setProperty(String name,
Value value)
Sets the specified (single-value) property of this node to the specified
value . |
Property |
Node.setProperty(String name,
Value[] values)
Sets the specified (multi-value) property to the specified array of values.
|
Property |
Node.setProperty(String name,
Value[] values,
int type)
Sets the specified (multi-value) property to the specified array of values.
|
Property |
Node.setProperty(String name,
Value value,
int type)
Sets the specified (single-value) property to the specified value.
|
Modifier and Type | Method and Description |
---|---|
void |
ItemVisitor.visit(Property property)
This method is called when the
ItemVisitor is
passed to the accept method of a Property . |
Modifier and Type | Method and Description |
---|---|
protected abstract void |
TraversingItemVisitor.entering(Property property,
int level)
Implement this method to add behaviour performed before a
Property is visited. |
protected void |
TraversingItemVisitor.Default.entering(Property property,
int level) |
protected abstract void |
TraversingItemVisitor.leaving(Property property,
int level)
Implement this method to add behaviour performed after a
Property is visited. |
protected void |
TraversingItemVisitor.Default.leaving(Property property,
int level) |
void |
TraversingItemVisitor.visit(Property property)
Called when the Visitor is passed to a
Property . |
Copyright © 2004-2013 Day Management AG. All Rights Reserved.