From 3585e1a611166a689fcc31bb4eae1293cdd89b2a Mon Sep 17 00:00:00 2001
From: Yorke Lee Clients can provide this value as a pinned position to undemote a formerly demoted
+ * contact. If the contact was formerly demoted, it will be restored to an
+ * {@link #UNPINNED} position. If it was otherwise already pinned at another position,
+ * it will not be affected.
+ *
+ * Example:
+ *
+ * ContentValues values = new ContentValues();
+ * values.put("15", PinnedPositions.UNDEMOTE);
+ * int count = resolver.update(ContactsContract.PinnedPositions.UPDATE_URI.buildUpon()
+ * .build(), values, null, null);
+ *
+ *
+ * This restores the contact with id 15 to an {@link #UNPINNED} position, meaning that
+ * other apps (e.g. the Dialer) that were formerly hiding this contact from view based on
+ * its {@link #DEMOTED} position will start displaying it again.
+ *
* A boolean query parameter that can be used with {@link #UPDATE_URI}.