Uses of Interface
org.apache.jackrabbit.jcr2spi.hierarchy.PropertyEntry
-
Packages that use PropertyEntry Package Description org.apache.jackrabbit.jcr2spi.hierarchy org.apache.jackrabbit.jcr2spi.state -
-
Uses of PropertyEntry in org.apache.jackrabbit.jcr2spi.hierarchy
Classes in org.apache.jackrabbit.jcr2spi.hierarchy that implement PropertyEntry Modifier and Type Class Description class
PropertyEntryImpl
PropertyEntryImpl
implements a reference to a property state.Methods in org.apache.jackrabbit.jcr2spi.hierarchy that return PropertyEntry Modifier and Type Method Description PropertyEntry
NodeEntry. addNewPropertyEntry(Name propName, QPropertyDefinition definition, QValue[] values, int propertyType)
Add a new, transientPropertyEntry
to thisNodeEntry
and return thePropertyState
associated with the new entry.PropertyEntry
NodeEntryImpl. addNewPropertyEntry(Name propName, QPropertyDefinition definition, QValue[] values, int propertyType)
PropertyEntry
EntryFactory. createPropertyEntry(NodeEntry parent, Name qName)
PropertyEntry
ChildPropertyEntries. get(Name propertyName)
Return the PropertyEntry with the givenName
ornull
.PropertyEntry
ChildPropertyEntriesImpl. get(Name propertyName)
PropertyEntry
NodeEntry. getDeepPropertyEntry(Path path)
Traverse the tree below this entry and return the child entry matching the given path.PropertyEntry
NodeEntryImpl. getDeepPropertyEntry(Path path)
PropertyEntry
NodeEntry. getOrAddPropertyEntry(Name propName)
Add an existingPropertyEntry
with the given name if it is not yet contained in thisNodeEntry
.PropertyEntry
NodeEntryImpl. getOrAddPropertyEntry(Name propName)
PropertyEntry
HierarchyManager. getPropertyEntry(Path qPath)
Resolves a path into aPropertyEntry
.PropertyEntry
HierarchyManager. getPropertyEntry(PropertyId propertyId)
Resolves a propertyId into aPropertyEntry
.PropertyEntry
HierarchyManagerImpl. getPropertyEntry(Path qPath)
PropertyEntry
HierarchyManagerImpl. getPropertyEntry(PropertyId propertyId)
PropertyEntry
NodeEntry. getPropertyEntry(Name propName)
Returns the validPropertyEntry
with the specified name ornull
if no matching entry exists.PropertyEntry
NodeEntry. getPropertyEntry(Name propName, boolean loadIfNotFound)
Returns the validPropertyEntry
with the specified name ornull
if no matching entry exists.PropertyEntry
NodeEntryImpl. getPropertyEntry(Name propName)
PropertyEntry
NodeEntryImpl. getPropertyEntry(Name propName, boolean loadIfNotFound)
Ignores theloadIfNotFound
flag due to the fact, thatNodeInfo.getPropertyIds()
returns the complete list of property names currently available.Methods in org.apache.jackrabbit.jcr2spi.hierarchy that return types with arguments of type PropertyEntry Modifier and Type Method Description Collection<PropertyEntry>
ChildPropertyEntries. getPropertyEntries()
Returns an unmodifiable collection containing allPropertyEntry
objects present.Collection<PropertyEntry>
ChildPropertyEntriesImpl. getPropertyEntries()
Iterator<PropertyEntry>
NodeEntry. getPropertyEntries()
Returns an unmodifiable Iterator over those children that represent valid PropertyEntries.Iterator<PropertyEntry>
NodeEntryImpl. getPropertyEntries()
Methods in org.apache.jackrabbit.jcr2spi.hierarchy with parameters of type PropertyEntry Modifier and Type Method Description void
ChildPropertyEntries. add(PropertyEntry propertyEntry)
Adds the newPropertyEntry
to thisChildPropertyEntries
.void
ChildPropertyEntriesImpl. add(PropertyEntry propertyEntry)
boolean
ChildPropertyEntries. remove(PropertyEntry propertyEntry)
Remove the collection entry with the givenName
.boolean
ChildPropertyEntriesImpl. remove(PropertyEntry propertyEntry)
Method parameters in org.apache.jackrabbit.jcr2spi.hierarchy with type arguments of type PropertyEntry Modifier and Type Method Description void
ChildPropertyEntries. addAll(Collection<PropertyEntry> propertyEntries)
Adds allPropertyEntry
s from the given collection to thisChildPropertyEntries
.void
ChildPropertyEntriesImpl. addAll(Collection<PropertyEntry> propertyEntries)
-
Uses of PropertyEntry in org.apache.jackrabbit.jcr2spi.state
Methods in org.apache.jackrabbit.jcr2spi.state with parameters of type PropertyEntry Modifier and Type Method Description PropertyState
TransientISFactory. createNewPropertyState(PropertyEntry entry, QPropertyDefinition definition, QValue[] values, int propertyType)
PropertyState
TransientItemStateFactory. createNewPropertyState(PropertyEntry entry, QPropertyDefinition definition, QValue[] values, int propertyType)
Creates a transientPropertyState
.PropertyState
ItemStateFactory. createPropertyState(PropertyId propertyId, PropertyEntry entry)
Creates thePropertyState
with the givenpropertyId
.PropertyState
TransientISFactory. createPropertyState(PropertyId propertyId, PropertyEntry entry)
PropertyState
WorkspaceItemStateFactory. createPropertyState(PropertyId propertyId, PropertyEntry entry)
Creates the PropertyState with information retrieved from theRepositoryService
.Constructors in org.apache.jackrabbit.jcr2spi.state with parameters of type PropertyEntry Constructor Description PropertyState(PropertyEntry entry, ItemStateFactory isf, QPropertyDefinition definition, ItemDefinitionProvider definitionProvider, QValue[] values, int propertyType)
Create a NEW PropertyStatePropertyState(PropertyEntry entry, PropertyInfo pInfo, ItemStateFactory isf, ItemDefinitionProvider definitionProvider)
Create an EXISTING PropertyState
-