Top Description Inners Constructors Methods
jdk.internal.org.commonmark.node

public Class Nodes

extends Object
Class Inheritance
Imports
java.util.Iterator

Utility class for working with multiple Nodes.
Since
0.16.0

Nested and Inner Type Summary

Modifier and TypeClass and Description
private static class
private static class

Constructor Summary

AccessConstructor and Description
private

Method Summary

Modifier and TypeMethod and Description
public static Iterable<Node>
between(Node start, Node end)

The nodes between (not including) start and end.

Inherited from java.lang.Object:
cloneequalsfinalizegetClasshashCodenotifynotifyAlltoStringwaitwaitwait

Constructor Detail

Nodesback to summary
private Nodes()

Method Detail

betweenback to summary
public static Iterable<Node> between(Node start, Node end)

The nodes between (not including) start and end.

jdk.internal.org.commonmark.node back to summary

private Class Nodes.NodeIterable

extends Object
implements Iterable<Node>
Class Inheritance
All Implemented Interfaces
java.lang.Iterable

Field Summary

Modifier and TypeField and Description
private final Node
private final Node

Constructor Summary

AccessConstructor and Description
private
NodeIterable(Node first, Node end)

Method Summary

Modifier and TypeMethod and Description
public Iterator<Node>
iterator()

Implements java.lang.Iterable.iterator.

Returns an iterator over elements of type T.

Inherited from java.lang.Object:
cloneequalsfinalizegetClasshashCodenotifynotifyAlltoStringwaitwaitwait

Field Detail

endback to summary
private final Node end
firstback to summary
private final Node first

Constructor Detail

NodeIterableback to summary
private NodeIterable(Node first, Node end)

Method Detail

iteratorback to summary
public Iterator<Node> iterator()

Implements java.lang.Iterable.iterator.

Doc from java.lang.Iterable.iterator.

Returns an iterator over elements of type T.

Returns:Iterator<Node>

an Iterator.

Annotations
@Override
jdk.internal.org.commonmark.node back to summary

private Class Nodes.NodeIterator

extends Object
implements Iterator<Node>
Class Inheritance
All Implemented Interfaces
java.util.Iterator

Field Summary

Modifier and TypeField and Description
private final Node
private Node

Constructor Summary

AccessConstructor and Description
private
NodeIterator(Node first, Node end)

Method Summary

Modifier and TypeMethod and Description
public boolean
hasNext()

Implements java.util.Iterator.hasNext.

Returns true if the iteration has more elements.

public Node
next()

Implements java.util.Iterator.next.

Returns the next element in the iteration.

public void
remove()

Overrides default java.util.Iterator.remove.

Removes from the underlying collection the last element returned by this iterator (optional operation).

Inherited from java.lang.Object:
cloneequalsfinalizegetClasshashCodenotifynotifyAlltoStringwaitwaitwait

Field Detail

endback to summary
private final Node end
nodeback to summary
private Node node

Constructor Detail

NodeIteratorback to summary
private NodeIterator(Node first, Node end)

Method Detail

hasNextback to summary
public boolean hasNext()

Implements java.util.Iterator.hasNext.

Doc from java.util.Iterator.hasNext.

Returns true if the iteration has more elements. (In other words, returns true if next would return an element rather than throwing an exception.)

Returns:boolean

true if the iteration has more elements

Annotations
@Override
nextback to summary
public Node next()

Implements java.util.Iterator.next.

Doc from java.util.Iterator.next.

Returns the next element in the iteration.

Returns:Node

the next element in the iteration

Annotations
@Override
removeback to summary
public void remove()

Overrides default java.util.Iterator.remove.

Doc from java.util.Iterator.remove.

Removes from the underlying collection the last element returned by this iterator (optional operation). This method can be called only once per call to next.

The behavior of an iterator is unspecified if the underlying collection is modified while the iteration is in progress in any way other than by calling this method, unless an overriding class has specified a concurrent modification policy.

The behavior of an iterator is unspecified if this method is called after a call to the forEachRemaining method.

Annotations
@Override