Lines Matching refs:column

37      *  determines column ordering elsewhere in this cursor
55 * determines column ordering elsewhere in this cursor
62 * Gets value at the given column for the current row.
64 private Object get(int column) {
65 if (column < 0 || column >= columnCount) {
66 throw new CursorIndexOutOfBoundsException("Requested column: "
67 + column + ", # of columns: " + columnCount);
75 return data[mPos * columnCount + column];
82 * @return builder which can be used to set the column values for the new
94 * Adds a new row to the end with the given column values. Not safe
99 * @param columnValues in the same order as the the column names specified
115 * Adds a new row to the end with the given column values. Not safe
120 * @param columnValues in the same order as the the column names specified
183 * Builds a row, starting from the left-most column and adding one column
184 * value at a time. Follows the same ordering as the column names specified
198 * Sets the next column value in this row.
228 public String getString(int column) {
229 Object value = get(column);
235 public short getShort(int column) {
236 Object value = get(column);
243 public int getInt(int column) {
244 Object value = get(column);
251 public long getLong(int column) {
252 Object value = get(column);
259 public float getFloat(int column) {
260 Object value = get(column);
267 public double getDouble(int column) {
268 Object value = get(column);
275 public byte[] getBlob(int column) {
276 Object value = get(column);
281 public int getType(int column) {
282 return DatabaseUtils.getTypeOfObject(get(column));
286 public boolean isNull(int column) {
287 return get(column) == null;