public enum ScheduledTaskType extends Enum<ScheduledTaskType>
| Enum Constant and Description |
|---|
CLEAR_TEST_CASE_CONTEXT_CACHE |
CLEAR_TEST_CASE_MONITORING_DATA |
DEFAULT_GLOBAL_TASK |
DEFAULT_PROJECT_TASK |
| Modifier and Type | Method and Description |
|---|---|
static ScheduledTaskType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScheduledTaskType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScheduledTaskType CLEAR_TEST_CASE_CONTEXT_CACHE
public static final ScheduledTaskType CLEAR_TEST_CASE_MONITORING_DATA
public static final ScheduledTaskType DEFAULT_GLOBAL_TASK
public static final ScheduledTaskType DEFAULT_PROJECT_TASK
public static ScheduledTaskType[] values()
for (ScheduledTaskType c : ScheduledTaskType.values()) System.out.println(c);
public static ScheduledTaskType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2025. All rights reserved.