@@ -495,7 +495,7 @@ public static String dumpCurrentRowToString(Cursor cursor) {
495
495
*
496
496
* @param cursor The cursor to read from
497
497
* @param field The TEXT field to read
498
- * @param values The {@link ContentValues} to put the value into, with the field as the key
498
+ * @param values The ContentValues to put the value into, with the field as the key
499
499
*/
500
500
public static void cursorStringToContentValues (Cursor cursor , String field ,
501
501
ContentValues values ) {
@@ -520,7 +520,7 @@ public static void cursorStringToInsertHelper(Cursor cursor, String field,
520
520
*
521
521
* @param cursor The cursor to read from
522
522
* @param field The TEXT field to read
523
- * @param values The {@link ContentValues} to put the value into, with the field as the key
523
+ * @param values The ContentValues to put the value into, with the field as the key
524
524
* @param key The key to store the value with in the map
525
525
*/
526
526
public static void cursorStringToContentValues (Cursor cursor , String field ,
@@ -533,7 +533,7 @@ public static void cursorStringToContentValues(Cursor cursor, String field,
533
533
*
534
534
* @param cursor The cursor to read from
535
535
* @param field The INTEGER field to read
536
- * @param values The {@link ContentValues} to put the value into, with the field as the key
536
+ * @param values The ContentValues to put the value into, with the field as the key
537
537
*/
538
538
public static void cursorIntToContentValues (Cursor cursor , String field , ContentValues values ) {
539
539
cursorIntToContentValues (cursor , field , values , field );
@@ -544,7 +544,7 @@ public static void cursorIntToContentValues(Cursor cursor, String field, Content
544
544
*
545
545
* @param cursor The cursor to read from
546
546
* @param field The INTEGER field to read
547
- * @param values The {@link ContentValues} to put the value into, with the field as the key
547
+ * @param values The ContentValues to put the value into, with the field as the key
548
548
* @param key The key to store the value with in the map
549
549
*/
550
550
public static void cursorIntToContentValues (Cursor cursor , String field , ContentValues values ,
@@ -562,7 +562,7 @@ public static void cursorIntToContentValues(Cursor cursor, String field, Content
562
562
*
563
563
* @param cursor The cursor to read from
564
564
* @param field The INTEGER field to read
565
- * @param values The {@link ContentValues} to put the value into, with the field as the key
565
+ * @param values The ContentValues to put the value into, with the field as the key
566
566
*/
567
567
public static void cursorLongToContentValues (Cursor cursor , String field , ContentValues values )
568
568
{
@@ -574,7 +574,7 @@ public static void cursorLongToContentValues(Cursor cursor, String field, Conten
574
574
*
575
575
* @param cursor The cursor to read from
576
576
* @param field The INTEGER field to read
577
- * @param values The {@link ContentValues} to put the value into
577
+ * @param values The ContentValues to put the value into
578
578
* @param key The key to store the value with in the map
579
579
*/
580
580
public static void cursorLongToContentValues (Cursor cursor , String field , ContentValues values ,
@@ -593,7 +593,7 @@ public static void cursorLongToContentValues(Cursor cursor, String field, Conten
593
593
*
594
594
* @param cursor The cursor to read from
595
595
* @param field The REAL field to read
596
- * @param values The {@link ContentValues} to put the value into
596
+ * @param values The ContentValues to put the value into
597
597
*/
598
598
public static void cursorDoubleToCursorValues (Cursor cursor , String field , ContentValues values )
599
599
{
@@ -605,7 +605,7 @@ public static void cursorDoubleToCursorValues(Cursor cursor, String field, Conte
605
605
*
606
606
* @param cursor The cursor to read from
607
607
* @param field The REAL field to read
608
- * @param values The {@link ContentValues} to put the value into
608
+ * @param values The ContentValues to put the value into
609
609
* @param key The key to store the value with in the map
610
610
*/
611
611
public static void cursorDoubleToContentValues (Cursor cursor , String field ,
@@ -622,7 +622,7 @@ public static void cursorDoubleToContentValues(Cursor cursor, String field,
622
622
* Read the entire contents of a cursor row and store them in a ContentValues.
623
623
*
624
624
* @param cursor the cursor to read from.
625
- * @param values the {@link ContentValues} to put the row into.
625
+ * @param values the ContentValues to put the row into.
626
626
*/
627
627
public static void cursorRowToContentValues (Cursor cursor , ContentValues values ) {
628
628
AbstractWindowedCursor awc =
@@ -718,7 +718,7 @@ public static String stringForQuery(SQLiteStatement prog, String[] selectionArgs
718
718
*
719
719
* @param cursor The cursor to read from
720
720
* @param column The column to read
721
- * @param values The {@link ContentValues} to put the value into
721
+ * @param values The ContentValues to put the value into
722
722
*/
723
723
public static void cursorStringToContentValuesIfPresent (Cursor cursor , ContentValues values ,
724
724
String column ) {
@@ -734,7 +734,7 @@ public static void cursorStringToContentValuesIfPresent(Cursor cursor, ContentVa
734
734
*
735
735
* @param cursor The cursor to read from
736
736
* @param column The column to read
737
- * @param values The {@link ContentValues} to put the value into
737
+ * @param values The ContentValues to put the value into
738
738
*/
739
739
public static void cursorLongToContentValuesIfPresent (Cursor cursor , ContentValues values ,
740
740
String column ) {
@@ -750,7 +750,7 @@ public static void cursorLongToContentValuesIfPresent(Cursor cursor, ContentValu
750
750
*
751
751
* @param cursor The cursor to read from
752
752
* @param column The column to read
753
- * @param values The {@link ContentValues} to put the value into
753
+ * @param values The ContentValues to put the value into
754
754
*/
755
755
public static void cursorShortToContentValuesIfPresent (Cursor cursor , ContentValues values ,
756
756
String column ) {
@@ -766,7 +766,7 @@ public static void cursorShortToContentValuesIfPresent(Cursor cursor, ContentVal
766
766
*
767
767
* @param cursor The cursor to read from
768
768
* @param column The column to read
769
- * @param values The {@link ContentValues} to put the value into
769
+ * @param values The ContentValues to put the value into
770
770
*/
771
771
public static void cursorIntToContentValuesIfPresent (Cursor cursor , ContentValues values ,
772
772
String column ) {
@@ -782,7 +782,7 @@ public static void cursorIntToContentValuesIfPresent(Cursor cursor, ContentValue
782
782
*
783
783
* @param cursor The cursor to read from
784
784
* @param column The column to read
785
- * @param values The {@link ContentValues} to put the value into
785
+ * @param values The ContentValues to put the value into
786
786
*/
787
787
public static void cursorFloatToContentValuesIfPresent (Cursor cursor , ContentValues values ,
788
788
String column ) {
@@ -798,7 +798,7 @@ public static void cursorFloatToContentValuesIfPresent(Cursor cursor, ContentVal
798
798
*
799
799
* @param cursor The cursor to read from
800
800
* @param column The column to read
801
- * @param values The {@link ContentValues} to put the value into
801
+ * @param values The ContentValues to put the value into
802
802
*/
803
803
public static void cursorDoubleToContentValuesIfPresent (Cursor cursor , ContentValues values ,
804
804
String column ) {
0 commit comments