|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ServiceState>
org.android.activityminer.app.service.ServiceState
public enum ServiceState
Nested Class Summary |
---|
Nested classes/interfaces inherited from interface android.os.Parcelable |
---|
Parcelable.ClassLoaderCreator<T>, Parcelable.Creator<T> |
Enum Constant Summary | |
---|---|
BatchMode
The service is busy in batch mode. |
|
BusyExportingDatabase
The service is busy exporting the database. |
|
BusyExportingModelFile
The service is busy exporting a model file. |
|
BusyExportingRecordingData
The service is busy exporting the raw recording data. |
|
BusyExportingTrainingData
The service is busy exporting the extracted training data (feature vectors). |
|
BusyExtractingFeatures
The service is busy extracting features. |
|
BusyImportingDatabase
The service is busy exporting the database. |
|
BusyUpdatingRawData
The service is busy with raw data updates. |
|
BusyWithEvaluation
The service is busy with evaluation |
|
BusyWithFeatureSelection
The service is busy with feature selection |
|
BusyWithModelCreation
The service is busy with model creation. |
|
Idle
The service is idle. |
Field Summary | |
---|---|
static Parcelable.Creator<ServiceState> |
CREATOR
The Parcelable creator. |
Fields inherited from interface android.os.Parcelable |
---|
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE |
Method Summary | |
---|---|
int |
describeContents()
|
static Comparator<ServiceState> |
getComparator()
Does create a comparator for feature types. |
static boolean |
isDBAccessState(ServiceState state)
Test method for training data access |
static boolean |
isObservableState(ServiceState state)
Test method for observable service states |
static ServiceState |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ServiceState[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
void |
writeToParcel(Parcel dest,
int flags)
|
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ServiceState Idle
public static final ServiceState BusyUpdatingRawData
public static final ServiceState BusyExtractingFeatures
public static final ServiceState BusyWithEvaluation
public static final ServiceState BusyWithFeatureSelection
public static final ServiceState BusyWithModelCreation
public static final ServiceState BusyExportingTrainingData
public static final ServiceState BusyExportingRecordingData
public static final ServiceState BusyExportingDatabase
public static final ServiceState BusyImportingDatabase
public static final ServiceState BusyExportingModelFile
public static final ServiceState BatchMode
Field Detail |
---|
public static final Parcelable.Creator<ServiceState> CREATOR
Method Detail |
---|
public static ServiceState[] values()
for (ServiceState c : ServiceState.values()) System.out.println(c);
public static ServiceState valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic static final Comparator<ServiceState> getComparator()
public static final boolean isDBAccessState(ServiceState state)
state
- the state to test
public static final boolean isObservableState(ServiceState state)
state
- the state to test
public final int describeContents()
describeContents
in interface Parcelable
public final void writeToParcel(Parcel dest, int flags)
writeToParcel
in interface Parcelable
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |