Merge "Update Column value types for BaseColumn."

This commit is contained in:
TreeHugger Robot
2021-01-05 15:34:47 +00:00
committed by Android (Google) Code Review

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";