summaryrefslogtreecommitdiffstats
path: root/java/com/android/dialer/callstats/CallStatsQuery.java
blob: 92bd9c70e84842f339de72d81b86d3c414208c8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
 * Copyright (C) 2011 The Android Open Source Project
 * Copyright (C) 2013 Android Open Kang Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.android.dialer.callstats;

import android.provider.CallLog.Calls;

public class CallStatsQuery {
  public static final String[] _PROJECTION = new String[] {
    Calls._ID, // 0
    Calls.NUMBER, // 1
    Calls.DATE, // 2
    Calls.DURATION, // 3
    Calls.TYPE, // 4
    Calls.COUNTRY_ISO, // 5
    Calls.GEOCODED_LOCATION, // 6
    Calls.CACHED_NAME, // 7
    Calls.CACHED_NUMBER_TYPE, // 8
    Calls.CACHED_NUMBER_LABEL, // 9
    Calls.CACHED_LOOKUP_URI, // 10
    Calls.CACHED_MATCHED_NUMBER, // 11
    Calls.CACHED_NORMALIZED_NUMBER, // 12
    Calls.CACHED_PHOTO_ID, // 13
    Calls.CACHED_FORMATTED_NUMBER, // 14
    Calls.NUMBER_PRESENTATION, // 15
    Calls.PHONE_ACCOUNT_COMPONENT_NAME, // 16
    Calls.PHONE_ACCOUNT_ID,             // 17
    Calls.POST_DIAL_DIGITS, // 18
  };

  public static final int ID = 0;
  public static final int NUMBER = 1;
  public static final int DATE = 2;
  public static final int DURATION = 3;
  public static final int CALL_TYPE = 4;
  public static final int COUNTRY_ISO = 5;
  public static final int GEOCODED_LOCATION = 6;
  public static final int CACHED_NAME = 7;
  public static final int CACHED_NUMBER_TYPE = 8;
  public static final int CACHED_NUMBER_LABEL = 9;
  public static final int CACHED_LOOKUP_URI = 10;
  public static final int CACHED_MATCHED_NUMBER = 11;
  public static final int CACHED_NORMALIZED_NUMBER = 12;
  public static final int CACHED_PHOTO_ID = 13;
  public static final int CACHED_FORMATTED_NUMBER = 14;
  public static final int NUMBER_PRESENTATION = 15;
  public static final int ACCOUNT_COMPONENT_NAME = 16;
  public static final int ACCOUNT_ID = 17;
  public static final int POST_DIAL_DIGITS = 18;
}