Update Column value types for BaseColumn.

Fixes: 174343753
Test: n/a
Change-Id: I00b002096c14e5841d9b759fe27465eeef104866
This commit is contained in:
Varun Shah
2020-12-23 10:45:54 -08:00
parent a327041b0e
commit c427b2e843

View File

@@ -19,12 +19,16 @@ package android.provider;
public interface BaseColumns {
/**
* The unique ID for a row.
*
* <p>Type: INTEGER (long)</p>
*/
// @Column(Cursor.FIELD_TYPE_INTEGER)
public static final String _ID = "_id";
/**
* The count of rows in a directory.
*
* <p>Type: INTEGER</p>
*/
// @Column(Cursor.FIELD_TYPE_INTEGER)
public static final String _COUNT = "_count";