Uses of Class
org.android.activityminer.model.activitylabels.ActivityLabel

Packages that use ActivityLabel
org.android.activityminer.app.activities GUI - Activity management components. 
org.android.activityminer.model.activitylabels Data model - activity label representation. 
org.android.activityminer.model.evaluation Data model - data types for evaluation, e.g. confusion matrix, evaluation result types. 
org.android.activityminer.model.features Data model - feature types. 
org.android.activityminer.model.timeseries Data model - Data types for sensor observations and time series representation. 
org.android.activityminer.persistence The application persistence layer. 
 

Uses of ActivityLabel in org.android.activityminer.app.activities
 

Fields in org.android.activityminer.app.activities with type parameters of type ActivityLabel
private  List<ActivityLabel> ActivityTreeListAdapter.entries
          The entry list
 

Methods in org.android.activityminer.app.activities that return ActivityLabel
protected  ActivityLabel ManageActivityLabelActivity.getActivityLabel(AdapterView.AdapterContextMenuInfo menuInfo)
          Getter for the activity label the menu information is related to
 

Methods in org.android.activityminer.app.activities with parameters of type ActivityLabel
private  boolean ManageActivityLabelActivity.onAddParentDependency(ActivityLabel entry)
          Method to add a parent dependency for an activity label
private  boolean ManageActivityLabelActivity.onDeleteActivity(ActivityLabel entry)
          Method to delete parent dependency for an activity label
private  boolean ManageActivityLabelActivity.onDeleteParentDependency(ActivityLabel entry)
          Method to delete parent dependency for an activity label
private  boolean ManageActivityLabelActivity.onRenameActivity(ActivityLabel entry)
          Method to rename an activity label
private  void ActivityTreeListAdapter.prepareEntries(ActivityLabel activityLabel, int depth)
          Does a label entry and depth entry for the given activity label
 

Uses of ActivityLabel in org.android.activityminer.model.activitylabels
 

Fields in org.android.activityminer.model.activitylabels declared as ActivityLabel
private  ActivityLabel ActivityLabel.predecessor
          The predecessor
 

Fields in org.android.activityminer.model.activitylabels with type parameters of type ActivityLabel
static Parcelable.Creator<ActivityLabel> ActivityLabel.CREATOR
          The Parcelable creator.
private  TreeSet<ActivityLabel> ActivityLabel.successors
          The successors
 

Methods in org.android.activityminer.model.activitylabels that return ActivityLabel
 ActivityLabel ActivityLabel.cloneWithName(String name)
          Method to clone an activity label with a new name
 ActivityLabel[] ActivityLabelMap.getPossiblePredecessorsFor(ActivityLabel activityLabel)
          Getter for possible predecessors for an activity label
 ActivityLabel ActivityLabel.getPredecessor()
          Getter for the predecessor activity
 

Methods in org.android.activityminer.model.activitylabels that return types with arguments of type ActivityLabel
 List<ActivityLabel> ActivityLabelMap.getActivityLabelsOrdered()
          Getter for the labels in an hierarchical order
 List<ActivityLabel> ActivityLabelMap.getActivityLabelsWithoutPredecessor()
          Getter for all activity labels without predecessors
 List<ActivityLabel> ActivityLabel.getAllPredecessors()
          Getter for all predecessors
 List<ActivityLabel> ActivityLabel.getAllSuccessors()
          Getter for all successors
 Collection<ActivityLabel> ActivityLabel.getSuccessorList()
          Getter for the successors
 Collection<ActivityLabel> ActivityLabel.getSuccessors()
          Getter for the successors
 

Methods in org.android.activityminer.model.activitylabels with parameters of type ActivityLabel
 void ActivityLabel.addSuccessor(ActivityLabel successor)
          Adds a successor activity
 int ActivityLabelNameComparator.compare(ActivityLabel o1, ActivityLabel o2)
           
 int ActivityLabelIdComparator.compare(ActivityLabel o1, ActivityLabel o2)
           
 ActivityLabel[] ActivityLabelMap.getPossiblePredecessorsFor(ActivityLabel activityLabel)
          Getter for possible predecessors for an activity label
 void ActivityLabel.removeSuccessor(ActivityLabel successor)
          Adds a successor activity
 void ActivityLabel.setPredecessor(ActivityLabel predecessor)
          Setter for the predecessor activity
 

Constructor parameters in org.android.activityminer.model.activitylabels with type arguments of type ActivityLabel
ActivityLabelMap(Collection<ActivityLabel> labels)
          Constructor
 

Uses of ActivityLabel in org.android.activityminer.model.evaluation
 

Constructors in org.android.activityminer.model.evaluation with parameters of type ActivityLabel
ConfusionMatrix(ActivityLabel classLabel)
          Constructor for a confusion matrix of a single class
 

Uses of ActivityLabel in org.android.activityminer.model.features
 

Fields in org.android.activityminer.model.features declared as ActivityLabel
 ActivityLabel LabeledSample.activityLabel
          The activity label.
 

Constructors in org.android.activityminer.model.features with parameters of type ActivityLabel
LabeledSample(FeatureVector features, ActivityLabel activityLabel)
          Constructor
 

Uses of ActivityLabel in org.android.activityminer.model.timeseries
 

Fields in org.android.activityminer.model.timeseries declared as ActivityLabel
 ActivityLabel LabeledRecording.activityLabel
          The activity label.
 

Constructors in org.android.activityminer.model.timeseries with parameters of type ActivityLabel
LabeledRecording(SensorObservationCutout<T,Double> cutOut, ActivityLabel activityLabel, boolean featuresExtracted, long sequenceId)
          Constructor
 

Uses of ActivityLabel in org.android.activityminer.persistence
 

Fields in org.android.activityminer.persistence declared as ActivityLabel
 ActivityLabel DBRecording.activitylabel
          The activity label.
 ActivityLabel DBRecordingStatisticEntry.activityLabel
          The label.
 ActivityLabel DBFeatureVector.activityLabel
          The activity label of the related recording.
 

Methods in org.android.activityminer.persistence that return ActivityLabel
 ActivityLabel DBRecordingStatisticSequenceEntry.getActivityLabel()
          Getter for the activity label
 

Methods in org.android.activityminer.persistence that return types with arguments of type ActivityLabel
 List<ActivityLabel> DBStatistic.getActivityLabelsWithoutPredecessor()
          Getter for all activity labels without predecessors
 List<ActivityLabel> DBManager.getSelectedActivities(Configuration config)
          Method to determine the classes of the identifier selection in configuration
Attention: It can happen, that old activity identifiers remains in the selection stored in preferences due to deletion of activities.
 

Methods in org.android.activityminer.persistence with parameters of type ActivityLabel
 void DBManager.deleteActivityLabel(ActivityLabel activityLabel)
          Does delete the activity label in the database.
 int DBManager.deleteRecordingsForActivityLabel(ActivityLabel activityLabel)
          Does delete the recording with the given activity label from DB.
 int DBAdapter.deleteRecordingsWithActivityLabel(ActivityLabel activityLabel)
          Does delete the recording with the given label.
private  Long DBAdapter.insertActivityLabelIfNotExists(ActivityLabel activitylabel)
          Method to insert a new activity label into the database.
 void DBManager.updateActivityLabel(ActivityLabel activityLabel)
          Does update the activity label in the database.
 boolean DBAdapter.updateActivityLabel(ActivityLabel activityLabel)
          Does update the activity table entry for an existing activity label.
 

Method parameters in org.android.activityminer.persistence with type arguments of type ActivityLabel
 List<String> DBManager.getSelectedActivitiesWithoutSamples(List<ActivityLabel> selectedActivities, List<Long> activityIdsWithOwnSamples)
          Method to determine the count of configured activities with samples in database.
 

Constructors in org.android.activityminer.persistence with parameters of type ActivityLabel
DBFeatureVector(long id, ActivityLabel activityLabel, String xmlData)
          Constructor
DBRecording(long id, long sequenceId, ActivityLabel activityLabel, String xmlData, boolean isProcessed, long startTs, long duration)
          Constructor
DBRecordingStatisticEntry(long id, long sid, ActivityLabel activityLabel, long ts, long duration, boolean isProcessed)
          Constructor