Lines Matching defs: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
93 * Adds a new row to the end with the given column values. Not safe
98 * @param columnValues in the same order as the the column names specified
114 * Adds a new row to the end with the given column values. Not safe
119 * @param columnValues in the same order as the the column names specified
184 * <li>Values can be added with explicit column ordering using
185 * {@link #add(Object)}, which starts from the left-most column and adds one
186 * column value at a time. This follows the same ordering as the column
189 * {@link #add(String, Object)}. If the cursor includes the given column,
190 * the value will be set for that column, otherwise the value is ignored.
208 * Sets the next column value in this row.
226 * column. Columns not defined by the cursor are silently ignored.
253 public String getString(int column) {
254 Object value = get(column);
260 public short getShort(int column) {
261 Object value = get(column);
268 public int getInt(int column) {
269 Object value = get(column);
276 public long getLong(int column) {
277 Object value = get(column);
284 public float getFloat(int column) {
285 Object value = get(column);
292 public double getDouble(int column) {
293 Object value = get(column);
300 public byte[] getBlob(int column) {
301 Object value = get(column);
306 public int getType(int column) {
307 return DatabaseUtils.getTypeOfObject(get(column));
311 public boolean isNull(int column) {
312 return get(column) == null;