public enum DistributionAgentState extends java.lang.Enum<DistributionAgentState>
Enum Constant and Description |
---|
BLOCKED
The agent is active and some items in its queues cannot be processed.
|
IDLE
The agent is active and it does not have items in its queues.
|
PAUSED
The agent is active but the queue processing is disabled.
|
RUNNING
The agent is active and there are items in its queues.
|
Modifier and Type | Method and Description |
---|---|
static DistributionAgentState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DistributionAgentState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DistributionAgentState PAUSED
public static final DistributionAgentState IDLE
public static final DistributionAgentState RUNNING
public static final DistributionAgentState BLOCKED
public static DistributionAgentState[] values()
for (DistributionAgentState c : DistributionAgentState.values()) System.out.println(c);
public static DistributionAgentState valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null"Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"