Enum CreativeJobStatus
- java.lang.Object
-
- java.lang.Enum<CreativeJobStatus>
-
- ch.brix.gql.client.frontify.enums.CreativeJobStatus
-
- All Implemented Interfaces:
Serializable,Comparable<CreativeJobStatus>,java.lang.constant.Constable
public enum CreativeJobStatus extends Enum<CreativeJobStatus>
List of possible `Creative Job` statuses.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CANCELEDThe job has been canceled successfully.FAILEDThe processing of the job failed.FINISHEDThe job has been completed successfully.PROCESSINGThe job is currently being prepared and is awaiting rendering.RENDERINGThe job is currently rendering.
-
Method Summary
Modifier and Type Method Description StringtoString()static CreativeJobStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static CreativeJobStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROCESSING
@SerializedName("PROCESSING") public static final CreativeJobStatus PROCESSINGThe job is currently being prepared and is awaiting rendering.
-
RENDERING
@SerializedName("RENDERING") public static final CreativeJobStatus RENDERINGThe job is currently rendering.
-
CANCELED
@SerializedName("CANCELED") public static final CreativeJobStatus CANCELEDThe job has been canceled successfully.
-
FINISHED
@SerializedName("FINISHED") public static final CreativeJobStatus FINISHEDThe job has been completed successfully.
-
FAILED
@SerializedName("FAILED") public static final CreativeJobStatus FAILEDThe processing of the job failed.
-
-
Method Detail
-
values
public static CreativeJobStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CreativeJobStatus valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<CreativeJobStatus>
-
-