public abstract class AbstractItem extends Object implements javax.jcr.Item
Item
interface.
Item
methods without a default implementation:
Item.accept(javax.jcr.ItemVisitor)
Item.getName()
Item.getParent()
Item.getPath()
Item.getSession()
Item.isModified()
Item.isNew()
Item.isNode()
Item.isSame(Item)
Item.refresh(boolean)
Item.remove()
Item.save()
Constructor and Description |
---|
AbstractItem() |
Modifier and Type | Method and Description |
---|---|
javax.jcr.Item |
getAncestor(int depth)
Returns the ancestor of this item at the given depth.
|
int |
getDepth()
Returns the depth of this item.
|
String |
toString()
Returns a string representation of this item.
|
public javax.jcr.Item getAncestor(int depth) throws javax.jcr.ItemNotFoundException, javax.jcr.AccessDeniedException, javax.jcr.RepositoryException
The default implementation handles the root node at depth zero and
this item at depth equal to the depth of this item as special cases,
and uses Session.getItem(String)
to retrieve other
ancestors based on the ancestor path calculated from the path of this
node as returned by Item.getPath()
.
getAncestor
in interface javax.jcr.Item
depth
- depth of the returned ancestor itemjavax.jcr.ItemNotFoundException
- if the given depth is negative or greater
than the depth of this itemjavax.jcr.AccessDeniedException
- if access to the ancestor item is deniedjavax.jcr.RepositoryException
- if an error occurspublic int getDepth() throws javax.jcr.RepositoryException
The default implementation determines the depth by counting the
slashes in the path returned by Item.getPath()
.
getDepth
in interface javax.jcr.Item
javax.jcr.RepositoryException
- if an error occurspublic String toString()
The default implementation returns the path of this item and falls
back to the Object.toString()
implementation if the item path
can not be retrieved.
Copyright © 2004-2020 The Apache Software Foundation. All Rights Reserved.