public enum DistributionQueueState extends java.lang.Enum<DistributionQueueState>
Enum Constant and Description |
---|
BLOCKED
The queue is active, there are items in the queue but it cannot process them.
|
IDLE
The queue is active but empty
|
PASSIVE
The queue is passive as it only stores items not process them
|
PAUSED
The queue is active but processing has been stopped temporarily
|
RUNNING
The queue is active and there are items in it and it is not blocked.
|
Modifier and Type | Method and Description |
---|---|
static DistributionQueueState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DistributionQueueState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DistributionQueueState PAUSED
public static final DistributionQueueState IDLE
public static final DistributionQueueState RUNNING
public static final DistributionQueueState BLOCKED
public static final DistributionQueueState PASSIVE
public static DistributionQueueState[] values()
for (DistributionQueueState c : DistributionQueueState.values()) System.out.println(c);
public static DistributionQueueState 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"