public enum ScheduledState extends Enum<ScheduledState>
Triggerable
entity
with respect to scheduling the entity to run.Enum Constant and Description |
---|
DISABLED
Entity cannot be scheduled to run
|
RUN_ONCE |
RUNNING
Entity is currently scheduled to run
|
STARTING |
STOPPED
Entity can be scheduled to run but currently is not
|
STOPPING |
Modifier and Type | Method and Description |
---|---|
static ScheduledState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScheduledState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScheduledState DISABLED
public static final ScheduledState STOPPED
public static final ScheduledState RUNNING
public static final ScheduledState STARTING
public static final ScheduledState STOPPING
public static final ScheduledState RUN_ONCE
public static ScheduledState[] values()
for (ScheduledState c : ScheduledState.values()) System.out.println(c);
public static ScheduledState 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 © 2024 Apache NiFi Project. All rights reserved.