From 532abb65308725c649fe94ba485abc24ece05b2e Mon Sep 17 00:00:00 2001 From: Vasu Nori Date: Mon, 2 Aug 2010 16:45:47 -0700 Subject: [PATCH] add public method in ContentValues to return set of all keys why not this method? it is useful and cheap. Change-Id: I5db96d149b13d26b5359b52515a8eabf033eb000 --- api/current.xml | 11 +++++++++++ core/java/android/content/ContentValues.java | 9 +++++++++ 2 files changed, 20 insertions(+) diff --git a/api/current.xml b/api/current.xml index 19066f73db1f7..e31e3f95e3be9 100644 --- a/api/current.xml +++ b/api/current.xml @@ -41061,6 +41061,17 @@ + + keySet() { + return mValues.keySet(); + } + public static final Parcelable.Creator CREATOR = new Parcelable.Creator() { @SuppressWarnings({"deprecation", "unchecked"})