session-android/src/org/thoughtcrime/securesms/database/ContentValuesBuilder.java

60 lines
1.7 KiB
Java
Raw Normal View History

2012-10-01 02:56:29 +00:00
/**
2011-12-20 18:20:44 +00:00
* Copyright (C) 2011 Whisper Systems
2012-10-01 02:56:29 +00:00
*
2011-12-20 18:20:44 +00:00
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
2012-10-01 02:56:29 +00:00
*
2011-12-20 18:20:44 +00:00
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.thoughtcrime.securesms.database;
2012-10-01 02:56:29 +00:00
import android.content.ContentValues;
2011-12-20 18:20:44 +00:00
import com.google.android.mms.pdu_alt.EncodedStringValue;
2012-10-01 02:56:29 +00:00
import org.thoughtcrime.securesms.util.Util;
2011-12-20 18:20:44 +00:00
public class ContentValuesBuilder {
private final ContentValues contentValues;
2012-10-01 02:56:29 +00:00
2011-12-20 18:20:44 +00:00
public ContentValuesBuilder(ContentValues contentValues) {
this.contentValues = contentValues;
}
2012-10-01 02:56:29 +00:00
2011-12-20 18:20:44 +00:00
public void add(String key, String charsetKey, EncodedStringValue value) {
if (value != null) {
contentValues.put(key, Util.toIsoString(value.getTextString()));
2011-12-20 18:20:44 +00:00
contentValues.put(charsetKey, value.getCharacterSet());
}
}
2012-10-01 02:56:29 +00:00
2011-12-20 18:20:44 +00:00
public void add(String contentKey, byte[] value) {
if (value != null) {
contentValues.put(contentKey, Util.toIsoString(value));
2011-12-20 18:20:44 +00:00
}
}
2012-10-01 02:56:29 +00:00
2011-12-20 18:20:44 +00:00
public void add(String contentKey, int b) {
if (b != 0)
contentValues.put(contentKey, b);
}
public void add(String contentKey, long value) {
if (value != -1L)
contentValues.put(contentKey, value);
}
2012-10-01 02:56:29 +00:00
2011-12-20 18:20:44 +00:00
public ContentValues getContentValues() {
return contentValues;
}
}