Package com.vidispine.generated
Enum JobNotificationContentFilter
- java.lang.Object
-
- java.lang.Enum<JobNotificationContentFilter>
-
- com.vidispine.generated.JobNotificationContentFilter
-
- All Implemented Interfaces:
Serializable
,Comparable<JobNotificationContentFilter>
public enum JobNotificationContentFilter extends Enum<JobNotificationContentFilter>
Java class for jobNotificationContentFilter.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="jobNotificationContentFilter"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="jobId"/> <enumeration value="jobState"/> <enumeration value="user"/> <enumeration value="startTime"/> <enumeration value="jobType"/> <enumeration value="jobData"/> <enumeration value="errorMessage"/> <enumeration value="itemId"/> <enumeration value="totalSteps"/> <enumeration value="currentStep"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CURRENT_STEP
ERROR_MESSAGE
ITEM_ID
JOB_DATA
JOB_ID
JOB_STATE
JOB_TYPE
START_TIME
TOTAL_STEPS
USER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static JobNotificationContentFilter
fromValue(String v)
String
value()
static JobNotificationContentFilter
valueOf(String name)
Returns the enum constant of this type with the specified name.static JobNotificationContentFilter[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JOB_ID
public static final JobNotificationContentFilter JOB_ID
-
JOB_STATE
public static final JobNotificationContentFilter JOB_STATE
-
USER
public static final JobNotificationContentFilter USER
-
START_TIME
public static final JobNotificationContentFilter START_TIME
-
JOB_TYPE
public static final JobNotificationContentFilter JOB_TYPE
-
JOB_DATA
public static final JobNotificationContentFilter JOB_DATA
-
ERROR_MESSAGE
public static final JobNotificationContentFilter ERROR_MESSAGE
-
ITEM_ID
public static final JobNotificationContentFilter ITEM_ID
-
TOTAL_STEPS
public static final JobNotificationContentFilter TOTAL_STEPS
-
CURRENT_STEP
public static final JobNotificationContentFilter CURRENT_STEP
-
-
Method Detail
-
values
public static JobNotificationContentFilter[] 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 (JobNotificationContentFilter c : JobNotificationContentFilter.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JobNotificationContentFilter 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
-
value
public String value()
-
fromValue
public static JobNotificationContentFilter fromValue(String v)
-
-