Uses of Class
org.apache.jackrabbit.core.PropertyImpl
-
Packages that use PropertyImpl Package Description org.apache.jackrabbit.core Contains the core classes that provide the implementation of the JCR API.org.apache.jackrabbit.core.session org.apache.jackrabbit.core.version The versioning framework in jackrabbit consists of 3 layers. -
-
Uses of PropertyImpl in org.apache.jackrabbit.core
Methods in org.apache.jackrabbit.core that return PropertyImpl Modifier and Type Method Description protected PropertyImpl
NodeImpl. createChildProperty(Name name, int type, PropertyDefinitionImpl def)
Creates a new property with the given name andtype
hint and property definition.protected PropertyImpl
NodeImpl. getOrCreateProperty(String name, int type, boolean multiValued, boolean exactTypeMatch, BitSet status)
protected PropertyImpl
NodeImpl. getOrCreateProperty(Name name, int type, boolean multiValued, boolean exactTypeMatch, BitSet status)
PropertyImpl
ItemManager. getProperty(Path path)
PropertyImpl
NodeImpl. getProperty(Name name)
Returns the property ofthis
node with the specifiedname
.PropertyImpl
NodeImpl. setProperty(Name name, Value value)
Same as
except that this method takes aNode.setProperty(String, Value)
Name
name argument instead of aString
.PropertyImpl
NodeImpl. setProperty(Name name, Value[] values, int type)
Same as
except that this method takes aNode.setProperty(String, Value[], int)
Name
name argument instead of aString
.protected PropertyImpl
NodeImpl. setProperty(Name name, Value[] values, int type, boolean enforceType)
Implementation forsetProperty()
using aValue
array. -
Uses of PropertyImpl in org.apache.jackrabbit.core.session
Methods in org.apache.jackrabbit.core.session that return types with arguments of type PropertyImpl Modifier and Type Method Description static SessionItemOperation<PropertyImpl>
SessionItemOperation. getProperty(String path)
Creates a session operation for getting the property at the given path. -
Uses of PropertyImpl in org.apache.jackrabbit.core.version
Methods in org.apache.jackrabbit.core.version with parameters of type PropertyImpl Modifier and Type Method Description void
NodeStateEx. copyFrom(PropertyImpl prop)
copies a property
-