android.provider.CallLog Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android Show documentation
Show all versions of android Show documentation
A library jar that provides APIs for Applications written for the Google Android Platform. The branch tag
that was used to checkout the source from the Git repos was android-2.1_r2.
package android.provider;
public class CallLog
{
public static class Calls
implements android.provider.BaseColumns
{
public Calls() { throw new RuntimeException("Stub!"); }
public static java.lang.String getLastOutgoingCall(android.content.Context context) { throw new RuntimeException("Stub!"); }
public static final android.net.Uri CONTENT_URI;
public static final android.net.Uri CONTENT_FILTER_URI;
public static final java.lang.String DEFAULT_SORT_ORDER = "date DESC";
public static final java.lang.String CONTENT_TYPE = "vnd.android.cursor.dir/calls";
public static final java.lang.String CONTENT_ITEM_TYPE = "vnd.android.cursor.item/calls";
public static final java.lang.String TYPE = "type";
public static final int INCOMING_TYPE = 1;
public static final int OUTGOING_TYPE = 2;
public static final int MISSED_TYPE = 3;
public static final java.lang.String NUMBER = "number";
public static final java.lang.String DATE = "date";
public static final java.lang.String DURATION = "duration";
public static final java.lang.String NEW = "new";
public static final java.lang.String CACHED_NAME = "name";
public static final java.lang.String CACHED_NUMBER_TYPE = "numbertype";
public static final java.lang.String CACHED_NUMBER_LABEL = "numberlabel";
static { CONTENT_URI = null; CONTENT_FILTER_URI = null; }
}
public CallLog() { throw new RuntimeException("Stub!"); }
public static final java.lang.String AUTHORITY = "call_log";
public static final android.net.Uri CONTENT_URI;
static { CONTENT_URI = null; }
}