public class AdmViewDatabaseInfo.Row
extends java.lang.Object
implements java.io.Serializable
Modifier and Type | Field and Description |
---|---|
private static long |
serialVersionUID
The class' serialization version id.
|
private java.lang.String[] |
values
The row's values.
|
Modifier | Constructor and Description |
---|---|
protected |
Row(java.lang.String[] values)
Constructs a new
Row . |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue(int colidx)
Returns the value at the given column index (zero-based).
|
void |
setValue(int colidx,
java.lang.String value)
Sets the value at the given column index (zero-based).
|
private static final long serialVersionUID
private java.lang.String[] values
protected Row(java.lang.String[] values)
Row
.values
- (String[]) The row's values.public java.lang.String getValue(int colidx)
colidx
- (int) The index for the desired column.public void setValue(int colidx, java.lang.String value)
colidx
- (int) The index of the column to set.value
- (String) The column's new value.