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