| org.mmbase.bridge.NodeList
All known Subclasses: org.mmbase.bridge.util.TreeList, org.mmbase.bridge.util.CollectionNodeList, org.mmbase.bridge.implementation.BasicNodeList,
NodeList | public interface NodeList extends BridgeList<Node>(Code) | | A list of nodes
author: Pierre van Rooden version: $Id: NodeList.java,v 1.13 2007/02/10 15:47:42 nklasens Exp $ |
NODESTEP_PROPERTY | final public static String NODESTEP_PROPERTY(Code) | | The node-step property will be set on a cluster node list which is the result of a
NodeQuery (which can also result 'real' nodes). This happens when you can
Cloud.getList(Query) with a NodeQuery argument.
since: MMBase-1.8 |
QUERY_PROPERTY | final public static String QUERY_PROPERTY(Code) | | In the propery of the list with this name you find back the original Query object
by which this NodeList was created (if it as created like that)
since: MMBase-1.7 |
getNode | public Node getNode(int index)(Code) | | Returns the Node at the indicated postion in the list
Parameters: index - the position of the Node to retrieve Node at the indicated postion |
nodeIterator | public NodeIterator nodeIterator()(Code) | | Returns an type-specific iterator for this list.
Node iterator |
subNodeList | public NodeList subNodeList(int fromIndex, int toIndex)(Code) | | Returns a sublist of this list.
Parameters: fromIndex - the position in the current list where the sublist starts (inclusive) Parameters: toIndex - the position in the current list where the sublist ends (exclusive) sublist of this list |
|
|