|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||

java.lang.Objectjava.lang.Enum<DBFullStrategyDescription>
de.unikassel.android.sdcframework.persistence.facade.DBFullStrategyDescription
public enum DBFullStrategyDescription
The enumeration defining the database full strategy combinations.
| Enum Constant Summary | |
|---|---|
WAIT_DELETE_NOTIFY
This does define the following strategy chain: WaitStrategy ->
DeleteSamplesStrategy
->
NotificationStrategy First it will wait a configured time span, than it does try to delete the configured amount of sample records and finally it will sent a user notification. |
|
WAIT_NOTIFY_STOPSERVICE
This does define the following strategy chain: WaitStrategy ->
NotificationStrategy
->
StopServiceStrategyFirst it will wait a configured time span, than it does sent a user notification and finally the SDCService will be stopped |
|
| Method Summary | |
|---|---|
static DBFullStrategyDescription |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static DBFullStrategyDescription[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| 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 DBFullStrategyDescription WAIT_DELETE_NOTIFY
WaitStrategy ->
DeleteSamplesStrategy
->
NotificationStrategy
public static final DBFullStrategyDescription WAIT_NOTIFY_STOPSERVICE
WaitStrategy ->
NotificationStrategy
->
StopServiceStrategySDCService will be stopped
| Method Detail |
|---|
public static DBFullStrategyDescription[] values()
for (DBFullStrategyDescription c : DBFullStrategyDescription.values()) System.out.println(c);
public static DBFullStrategyDescription 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 null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||