Package org.apache.mina.util.byteaccess
Class ByteArrayList.Node
- java.lang.Object
-
- org.apache.mina.util.byteaccess.ByteArrayList.Node
-
- Enclosing class:
- ByteArrayList
public class ByteArrayList.Node extends Object
A node within the linked list.From Commons Collections 3.1, all access to the
valueproperty is via the methods on this class.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ByteArraygetByteArray()ByteArrayList.NodegetNextNode()Gets the next node.ByteArrayList.NodegetPreviousNode()Gets the previous node.booleanhasNextNode()booleanhasPreviousNode()booleanisRemoved()
-
-
-
Method Detail
-
getPreviousNode
public ByteArrayList.Node getPreviousNode()
Gets the previous node.- Returns:
- the previous node
-
getNextNode
public ByteArrayList.Node getNextNode()
Gets the next node.- Returns:
- the next node
-
hasPreviousNode
public boolean hasPreviousNode()
-
hasNextNode
public boolean hasNextNode()
-
getByteArray
public ByteArray getByteArray()
-
isRemoved
public boolean isRemoved()
-
-