Uses of Class
org.android.activityminer.persistence.DBAdapter.RecordingStates

Packages that use DBAdapter.RecordingStates
org.android.activityminer.persistence The application persistence layer. 
 

Uses of DBAdapter.RecordingStates in org.android.activityminer.persistence
 

Methods in org.android.activityminer.persistence that return DBAdapter.RecordingStates
static DBAdapter.RecordingStates DBAdapter.RecordingStates.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DBAdapter.RecordingStates[] DBAdapter.RecordingStates.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.android.activityminer.persistence with parameters of type DBAdapter.RecordingStates
 List<Long> DBAdapter.getAvailableRecordingIds(DBAdapter.RecordingStates state)
          Getter for all available recording identifiers for a given processing state.
private  List<Long> DBAdapter.getAvailableRecordingIds(DBAdapter.RecordingStates state, List<Long> activityLabelIds)
          Getter for all available recording identifiers for a given processing state an optional subset of labels.
 long DBAdapter.getRecordingCountForState(DBAdapter.RecordingStates state)
          Method to get the current recording count for a given state.
private  long DBAdapter.getRecordingCountForStateAndActivityLabelIds(DBAdapter.RecordingStates state, List<Long> listActivityLabelIds)
          Method to get the current recording count for a given state and an optional subset of label identifiers.
private  Cursor DBAdapter.getRecordingIdsForForStateAndActivityLabelIds(DBAdapter.RecordingStates state, List<Long> activityLabelIds)
          Getter for available recording identifiers for a given state.
 boolean DBAdapter.updateAllRecordingStates(DBAdapter.RecordingStates state)
          Method to update the processing state for all existing recordings.
 boolean DBAdapter.updateRecordingState(Long recordingId, DBAdapter.RecordingStates state)
          Method to update the processing state for an existing recoding.