Package com.google.dataflow.v1beta3
Enum JobView
- java.lang.Object
-
- java.lang.Enum<JobView>
-
- com.google.dataflow.v1beta3.JobView
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite,com.google.protobuf.ProtocolMessageEnum,Serializable,Comparable<JobView>
public enum JobView extends Enum<JobView> implements com.google.protobuf.ProtocolMessageEnum
Selector for how much information is returned in Job responses.
Protobuf enumgoogle.dataflow.v1beta3.JobView
-
-
Enum Constant Summary
Enum Constants Enum Constant Description JOB_VIEW_ALLRequest all information available for this job.JOB_VIEW_DESCRIPTIONRequest summary info and limited job description data for steps, labels and environment.JOB_VIEW_SUMMARYRequest summary information only: Project ID, Job ID, job name, job type, job status, start/end time, and Cloud SDK version details.JOB_VIEW_UNKNOWNThe job view to return isn't specified, or is unknown.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static intJOB_VIEW_ALL_VALUERequest all information available for this job.static intJOB_VIEW_DESCRIPTION_VALUERequest summary info and limited job description data for steps, labels and environment.static intJOB_VIEW_SUMMARY_VALUERequest summary information only: Project ID, Job ID, job name, job type, job status, start/end time, and Cloud SDK version details.static intJOB_VIEW_UNKNOWN_VALUEThe job view to return isn't specified, or is unknown.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static JobViewforNumber(int value)static com.google.protobuf.Descriptors.EnumDescriptorgetDescriptor()com.google.protobuf.Descriptors.EnumDescriptorgetDescriptorForType()intgetNumber()com.google.protobuf.Descriptors.EnumValueDescriptorgetValueDescriptor()static com.google.protobuf.Internal.EnumLiteMap<JobView>internalGetValueMap()static JobViewvalueOf(int value)Deprecated.static JobViewvalueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)Returns the enum constant of this type with the specified name.static JobViewvalueOf(String name)Returns the enum constant of this type with the specified name.static JobView[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JOB_VIEW_UNKNOWN
public static final JobView JOB_VIEW_UNKNOWN
The job view to return isn't specified, or is unknown. Responses will contain at least the `JOB_VIEW_SUMMARY` information, and may contain additional information.
JOB_VIEW_UNKNOWN = 0;
-
JOB_VIEW_SUMMARY
public static final JobView JOB_VIEW_SUMMARY
Request summary information only: Project ID, Job ID, job name, job type, job status, start/end time, and Cloud SDK version details.
JOB_VIEW_SUMMARY = 1;
-
JOB_VIEW_ALL
public static final JobView JOB_VIEW_ALL
Request all information available for this job.
JOB_VIEW_ALL = 2;
-
JOB_VIEW_DESCRIPTION
public static final JobView JOB_VIEW_DESCRIPTION
Request summary info and limited job description data for steps, labels and environment.
JOB_VIEW_DESCRIPTION = 3;
-
UNRECOGNIZED
public static final JobView UNRECOGNIZED
-
-
Field Detail
-
JOB_VIEW_UNKNOWN_VALUE
public static final int JOB_VIEW_UNKNOWN_VALUE
The job view to return isn't specified, or is unknown. Responses will contain at least the `JOB_VIEW_SUMMARY` information, and may contain additional information.
JOB_VIEW_UNKNOWN = 0;- See Also:
- Constant Field Values
-
JOB_VIEW_SUMMARY_VALUE
public static final int JOB_VIEW_SUMMARY_VALUE
Request summary information only: Project ID, Job ID, job name, job type, job status, start/end time, and Cloud SDK version details.
JOB_VIEW_SUMMARY = 1;- See Also:
- Constant Field Values
-
JOB_VIEW_ALL_VALUE
public static final int JOB_VIEW_ALL_VALUE
Request all information available for this job.
JOB_VIEW_ALL = 2;- See Also:
- Constant Field Values
-
JOB_VIEW_DESCRIPTION_VALUE
public static final int JOB_VIEW_DESCRIPTION_VALUE
Request summary info and limited job description data for steps, labels and environment.
JOB_VIEW_DESCRIPTION = 3;- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static JobView[] 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 (JobView c : JobView.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JobView 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
-
getNumber
public final int getNumber()
- Specified by:
getNumberin interfacecom.google.protobuf.Internal.EnumLite- Specified by:
getNumberin interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
@Deprecated public static JobView valueOf(int value)
Deprecated.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:
value- 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
-
forNumber
public static JobView forNumber(int value)
- Parameters:
value- The numeric wire value of the corresponding enum entry.- Returns:
- The enum associated with the given numeric wire value.
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<JobView> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptorin interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForTypein interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
-
valueOf
public static JobView valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
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:
desc- 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
-
-