ContentValues

open class ContentValues

extracts category ids to be deleted from DB

Author

"Martin Krischik" «krischik@users.sourceforge.net»

Since

1.0

Constructors

Link copied to clipboard
constructor()
create a statement from an existing one.
constructor(delegate: ContentValues)
create content values from an existing one.

Properties

Link copied to clipboard
val delegate: ContentValues
What is OO good for if every other class can't be extended because the constructor is protected and the class must be created using a factory.
Link copied to clipboard
private val TAG: String
Logging tag

Functions

Link copied to clipboard
protected open fun clone(): Any
Link copied to clipboard
open fun equals(obj: Any): Boolean
Link copied to clipboard
protected open fun finalize()
Link copied to clipboard
fun getClass(): Class<out Any>
Link copied to clipboard
open fun hashCode(): Int
Link copied to clipboard
fun notify()
Link copied to clipboard
fun notifyAll()
Link copied to clipboard
open fun put(key: String, value: Uri)
add uri as string Note that there are three “URL” classes and you need to choose wisely:
java.net.URL
Java 1.0 class to handle URLs. Tries to resolve the URL on the net. Will hang and throw exception when this fails. Try to avoid if at all possible.
java.net.URI
Java 1.4 replacement for java.net.URL. Use when you need a instance which is java.io.Serializable.
android.net.Uri
Android replacement for java.net.URL. Use when you need a instance which is android.os.Parcelable.
open fun put(key: String, value: Array<Byte>)
Adds a value to the set.
open fun put(key: String, value: Boolean)
add boolean
open fun put(key: String, value: Double)
add double
open fun put(key: String, value: Float)
add float
open fun put(key: String, value: Integer)
add integer
open fun put(key: String, value: Long)
add long
open fun put(key: String, value: String)
add string
open fun put(key: String, value: URI)
open fun put(key: String, value: URL)
add url as string Note that there are three “URL” classes and you need to choose wisely:
java.net.URL
Java 1.0 class to handle URLs. Tries to resolve the URL on the net. Will hang and throw exception when this fails. Try to avoid if at all possible.
java.net.URI
Java 1.4 replacement for java.net.URL. Use when you need a instance which is java.io.Serializable.
android.net.Uri
Android replacement for java.net.URL. Use when you need a instance which is android.os.Parcelable.
open fun put(key: String, value: Date)
add date as long
Link copied to clipboard
open fun putBlob(key: String, value: String)
Adds a value to the set.
Link copied to clipboard
open fun putFile(key: String, data: String, file: File)
Adds a value to the set.
Link copied to clipboard
open fun putNull(key: String)
put an unconditional null value.
Link copied to clipboard
open fun toString(): String
create debug string
Link copied to clipboard
fun wait()