public class NullPropertyPointer extends PropertyPointer
Type | Property and Description |
---|---|
protected boolean |
isActual
Learn whether this pointer references an actual property.
|
bean, propertyIndex, UNSPECIFIED_PROPERTY
index, locale, parent, UNKNOWN_NAMESPACE, WHOLE_COLLECTION
Constructor and Description |
---|
NullPropertyPointer(NodePointer parent)
Create a new NullPropertyPointer.
|
Modifier and Type | Method and Description |
---|---|
String |
asPath()
Returns an XPath that maps to this Pointer.
|
NodePointer |
createChild(JXPathContext context,
QName name,
int index)
Called by a child pointer when it needs to create a parent object for a
non-existent collection element.
|
NodePointer |
createChild(JXPathContext context,
QName name,
int index,
Object value)
Called by a child pointer if that child needs to assign the value
supplied in the createPath(context, value) call to a non-existent
node.
|
NodePointer |
createPath(JXPathContext context)
Called by a child pointer when it needs to create a parent object.
|
NodePointer |
createPath(JXPathContext context,
Object value)
Called directly by JXPathContext.
|
Object |
getBaseValue()
Returns the value represented by the pointer before indexing.
|
Object |
getImmediateNode()
Returns the object the pointer points to; does not convert it
to a "canonical" type.
|
int |
getLength()
If the property contains a collection, then the length of that
collection, otherwise - 1.
|
QName |
getName()
Returns the name of this node.
|
int |
getPropertyCount()
Count the number of properties represented.
|
String |
getPropertyName()
Get the property name.
|
String[] |
getPropertyNames()
Get the names of the included properties.
|
NodePointer |
getValuePointer()
If this pointer manages a transparent container, like a variable,
this method returns the pointer to the contents.
|
boolean |
isActual()
An actual pointer points to an existing part of an object graph, even
if it is null.
|
protected boolean |
isActualProperty()
Learn whether this pointer references an actual property.
|
boolean |
isCollection()
Returns
true if the value of the pointer is an array or
a Collection. |
boolean |
isContainer()
If true, this node is auxiliary and can only be used as an intermediate in
the chain of pointers.
|
boolean |
isLeaf()
If true, this node does not have children
|
void |
setNameAttributeValue(String attributeValue)
Set the name attribute.
|
void |
setPropertyIndex(int index)
Set the property index.
|
void |
setPropertyName(String propertyName)
Set the property name.
|
void |
setValue(Object value)
Converts the value to the required type and changes the corresponding
object to that value.
|
compareChildNodePointers, equals, getBean, getImmediateValuePointer, getPropertyIndex, hashCode
attributeIterator, childIterator, clone, compareTo, createAttribute, escape, getAbstractFactory, getDefaultNamespaceURI, getImmediateParentPointer, getIndex, getLocale, getNamespaceResolver, getNamespaceURI, getNamespaceURI, getNode, getNodeSetByKey, getNodeValue, getParent, getPointerByID, getPointerByKey, getRootNode, getValue, handle, handle, isAttribute, isDefaultNamespace, isLanguage, isNode, isRoot, namespaceIterator, namespacePointer, newChildNodePointer, newNodePointer, printPointerChain, remove, setAttribute, setExceptionHandler, setIndex, setNamespaceResolver, testNode, toString, verify
isActualProperty
in class PropertyPointer
public NullPropertyPointer(NodePointer parent)
parent
- pointerpublic QName getName()
NodePointer
getName
in class PropertyPointer
public void setPropertyIndex(int index)
PropertyPointer
setPropertyIndex
in class PropertyPointer
index
- property indexpublic int getLength()
PropertyPointer
getLength
in class PropertyPointer
public Object getBaseValue()
NodePointer
getBaseValue
in class NodePointer
public Object getImmediateNode()
NodePointer
getImmediateNode
in class PropertyPointer
public boolean isLeaf()
NodePointer
isLeaf
in class PropertyPointer
public NodePointer getValuePointer()
NodePointer
getValuePointer()
directly. Override the
getImmediateValuePointer()
method instead. The
getValuePointer()
method is calls
getImmediateValuePointer()
and, if the result is not
this
, invokes getValuePointer()
recursively.
The idea here is to open all nested containers. Let's say we have a
container within a container within a container. The
getValuePointer()
method should then open all those
containers and return the pointer to the ultimate contents. It does so
with the above recursion.getValuePointer
in class NodePointer
protected boolean isActualProperty()
PropertyPointer
isActualProperty
in class PropertyPointer
public boolean isActual()
NodePointer
isActual
in class PropertyPointer
public boolean isContainer()
NodePointer
isContainer
in class NodePointer
public void setValue(Object value)
NodePointer
setValue
in interface Pointer
setValue
in class NodePointer
value
- the value to setpublic NodePointer createPath(JXPathContext context)
NodePointer
createPath
in class PropertyPointer
context
- the owning JXPathContextpublic NodePointer createPath(JXPathContext context, Object value)
NodePointer
createPath
in class PropertyPointer
context
- the owning JXPathContextvalue
- the new value to setpublic NodePointer createChild(JXPathContext context, QName name, int index)
NodePointer
createChild
in class PropertyPointer
context
- the owning JXPathCOntextname
- the QName at which a child should be createdindex
- child index.public NodePointer createChild(JXPathContext context, QName name, int index, Object value)
NodePointer
createChild
in class PropertyPointer
context
- the owning JXPathCOntextname
- the QName at which a child should be createdindex
- child index.value
- node value to setpublic String getPropertyName()
PropertyPointer
getPropertyName
in class PropertyPointer
public void setPropertyName(String propertyName)
PropertyPointer
setPropertyName
in class PropertyPointer
propertyName
- property name to set.public void setNameAttributeValue(String attributeValue)
attributeValue
- value to setpublic boolean isCollection()
NodePointer
true
if the value of the pointer is an array or
a Collection.isCollection
in class PropertyPointer
public int getPropertyCount()
PropertyPointer
getPropertyCount
in class PropertyPointer
public String[] getPropertyNames()
PropertyPointer
getPropertyNames
in class PropertyPointer
public String asPath()
NodePointer
asPath
in interface Pointer
asPath
in class NodePointer
Copyright © 2001–2015 The Apache Software Foundation. All rights reserved.