public enum DistributionQueueItemState extends java.lang.Enum<DistributionQueueItemState>
Enum Constant and Description |
---|
ERROR
The item processing encountered an error
|
QUEUED
The item was just added to the queue
|
Modifier and Type | Method and Description |
---|---|
static DistributionQueueItemState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DistributionQueueItemState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DistributionQueueItemState QUEUED
public static final DistributionQueueItemState ERROR
public static DistributionQueueItemState[] values()
for (DistributionQueueItemState c : DistributionQueueItemState.values()) System.out.println(c);
public static DistributionQueueItemState 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"