| java.lang.Object com.healthmarketscience.jackcess.RowId
RowId | public class RowId implements Comparable<RowId>(Code) | | Uniquely identifies a row of data within the access database.
author: james |
Inner Class :public enum Type | |
Constructor Summary | |
public | RowId(int pageNumber, int rowNumber) Creates a new RowId instance. |
FIRST_PAGE_NUMBER | final public static int FIRST_PAGE_NUMBER(Code) | | special page number which will sort before any other valid page
number
|
FIRST_ROW_ID | final public static RowId FIRST_ROW_ID(Code) | | special rowId which will sort before any other valid rowId
|
INVALID_ROW_NUMBER | final public static int INVALID_ROW_NUMBER(Code) | | special row number representing an invalid row number
|
LAST_PAGE_NUMBER | final public static int LAST_PAGE_NUMBER(Code) | | special page number which will sort after any other valid page
number
|
LAST_ROW_ID | final public static RowId LAST_ROW_ID(Code) | | special rowId which will sort after any other valid rowId
|
RowId | public RowId(int pageNumber, int rowNumber)(Code) | | Creates a new RowId instance.
|
getPageNumber | public int getPageNumber()(Code) | | |
getRowNumber | public int getRowNumber()(Code) | | |
getType | public Type getType()(Code) | | |
hashCode | public int hashCode()(Code) | | |
isValid | public boolean isValid()(Code) | | Returns
true if this rowId potentially represents an actual row
of data,
false otherwise.
|
|
|