org.apache.pdfbox.pdfviewer
public class: ArrayEntry [javadoc |
source]
java.lang.Object
org.apache.pdfbox.pdfviewer.ArrayEntry
This is a simple class that will contain an index and a value.
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from org.apache.pdfbox.pdfviewer.ArrayEntry Detail: |
public int getIndex() {
return index;
}
This will get the index of the array entry. |
public Object getValue() {
return value;
}
This will get the value for this entry. |
public void setIndex(int i) {
index = i;
}
This will set the index value. |
public void setValue(Object val) {
this.value = val;
}
This will set the value for this entry. |