Java tutorial
//package com.java2s; //License from project: Apache License import android.content.ContentValues; public class Main { private static ContentValues mConv; public static ContentValues getConvString(String key, String value) { if (mConv != null) { mConv = null; } mConv = new ContentValues(); mConv.put(key, value); return mConv; } }