public static class SpreadsheetCache.SheetValues
extends java.lang.Object
implements java.io.Externalizable
| Modifier and Type | Field and Description |
|---|---|
int |
maxCol
Represents the maximum column value of a cached sheet in a spreadsheet.
|
int |
maxRow
Represents the maximum row value of a cached sheet in a spreadsheet.
|
int |
minCol
Represents the minimum column value of a cached sheet in a spreadsheet.
|
int |
minRow
Represents the minimum row value of a cached sheet in a spreadsheet.
|
int |
sheet
The sheet variable represents the sheet index of a spreadsheet.
|
SpreadsheetCache.CellValues[] |
values
An array of CellValues objects.
|
| Constructor and Description |
|---|
SheetValues() |
| Modifier and Type | Method and Description |
|---|---|
void |
readExternal(java.io.ObjectInput in)
The object implements the readExternal method to restore its
contents by calling the methods of DataInput for primitive
types and readObject for objects, strings and arrays.
|
void |
writeExternal(java.io.ObjectOutput out)
The object implements the writeExternal method to save its contents
by calling the methods of DataOutput for its primitive values or
calling the writeObject method of ObjectOutput for objects, strings,
and arrays.
|
public int sheet
public int minRow
public int minCol
public int maxRow
public int maxCol
public SpreadsheetCache.CellValues[] values
public void writeExternal(java.io.ObjectOutput out)
throws java.io.IOException
writeExternal in interface java.io.Externalizableout - the stream to write the object tojava.io.IOExceptionpublic void readExternal(java.io.ObjectInput in)
throws java.io.IOException,
java.lang.ClassNotFoundException
readExternal in interface java.io.Externalizablein - the stream to read data from in order to restore the objectjava.io.IOExceptionjava.lang.ClassNotFoundException