Enum WorkflowStatus.WorkflowStatusAttribute
- java.lang.Object
-
- java.lang.Enum<WorkflowStatus.WorkflowStatusAttribute>
-
- com.priint.pubserver.comet.bridge.entitydata.WorkflowStatus.WorkflowStatusAttribute
-
- All Implemented Interfaces:
Comet3Attribute,java.io.Serializable,java.lang.Comparable<WorkflowStatus.WorkflowStatusAttribute>
- Enclosing class:
- WorkflowStatus
public static enum WorkflowStatus.WorkflowStatusAttribute extends java.lang.Enum<WorkflowStatus.WorkflowStatusAttribute> implements Comet3Attribute
Attributes for the Comet3 WorkflowStatus type.
CAUTION! Do not change the order of these attributes or add or remove attributes, otherwise the InDesign Comet Plug-Ins and other clients will misinterpret the data sent from the Publishing Server.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDefault()Gets default.java.lang.StringgetName()Gets name.static WorkflowStatus.WorkflowStatusAttributevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static WorkflowStatus.WorkflowStatusAttribute[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ID
public static final WorkflowStatus.WorkflowStatusAttribute ID
Id workflow status attribute.
-
LABEL
public static final WorkflowStatus.WorkflowStatusAttribute LABEL
Label workflow status attribute.
-
TYPE
public static final WorkflowStatus.WorkflowStatusAttribute TYPE
Type workflow status attribute.
-
ACTION_ID
public static final WorkflowStatus.WorkflowStatusAttribute ACTION_ID
Action id workflow status attribute.
-
-
Method Detail
-
values
public static WorkflowStatus.WorkflowStatusAttribute[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (WorkflowStatus.WorkflowStatusAttribute c : WorkflowStatus.WorkflowStatusAttribute.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WorkflowStatus.WorkflowStatusAttribute valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getName
public java.lang.String getName()
Description copied from interface:Comet3AttributeGets name.- Specified by:
getNamein interfaceComet3Attribute- Returns:
- the name
-
getDefault
public java.lang.String getDefault()
Description copied from interface:Comet3AttributeGets default.- Specified by:
getDefaultin interfaceComet3Attribute- Returns:
- the default
-
-