org.pdfbox.pdfviewer
Class ArrayEntry
java.lang.Object
org.pdfbox.pdfviewer.ArrayEntry
public class ArrayEntry
extends java.lang.Object
This is a simple class that will contain an index and a value.
int | getIndex() - This will get the index of the array entry.
|
Object | getValue() - This will get the value for this entry.
|
void | setIndex(int i) - This will set the index value.
|
void | setValue(Object val) - This will set the value for this entry.
|
getIndex
public int getIndex()
This will get the index of the array entry.
- The 0-based index into the array
getValue
public Object getValue()
This will get the value for this entry.
- The value for this entry.
setIndex
public void setIndex(int i)
This will set the index value.
setValue
public void setValue(Object val)
This will set the value for this entry.
val
- the new value for this entry.