org.android.activityminer.provider
Class PredictionsContract

Package class diagram package PredictionsContract
java.lang.Object
  extended by org.android.activityminer.provider.PredictionsContract

public class PredictionsContract
extends Object

The contract for the activity prediction result provider of the ActivityMiner application.


Field Summary
static String AUTHORITY
          The authority for the prediction result provider.
static Uri AUTHORITY_URI
          A content:// style uri to the authority for the prediction result provider.
static String BASE_PATH
          The base path to the table.
static String COLUMN_CERTAINTY
          The prediction certainty column.
static String COLUMN_ID
          The _id column.
static String COLUMN_PREDICTION
          The predicted activity label column.
static String COLUMN_TS
          The time stamp column.
static Uri CONTENT_URI
          A uri to the content for the prediction result provider.
 
Constructor Summary
PredictionsContract()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

COLUMN_ID

public static final String COLUMN_ID
The _id column.

See Also:
Constant Field Values

COLUMN_PREDICTION

public static final String COLUMN_PREDICTION
The predicted activity label column.

See Also:
Constant Field Values

COLUMN_CERTAINTY

public static final String COLUMN_CERTAINTY
The prediction certainty column.

See Also:
Constant Field Values

COLUMN_TS

public static final String COLUMN_TS
The time stamp column.

See Also:
Constant Field Values

BASE_PATH

public static final String BASE_PATH
The base path to the table.

See Also:
Constant Field Values

AUTHORITY

public static final String AUTHORITY
The authority for the prediction result provider.

See Also:
Constant Field Values

AUTHORITY_URI

public static final Uri AUTHORITY_URI
A content:// style uri to the authority for the prediction result provider.


CONTENT_URI

public static final Uri CONTENT_URI
A uri to the content for the prediction result provider.

Constructor Detail

PredictionsContract

public PredictionsContract()