Package com.google.dataflow.v1beta3
Enum JobMessageImportance
- java.lang.Object
-
- java.lang.Enum<JobMessageImportance>
-
- com.google.dataflow.v1beta3.JobMessageImportance
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<JobMessageImportance>
public enum JobMessageImportance extends Enum<JobMessageImportance> implements com.google.protobuf.ProtocolMessageEnum
Indicates the importance of the message.
Protobuf enumgoogle.dataflow.v1beta3.JobMessageImportance
-
-
Enum Constant Summary
Enum Constants Enum Constant Description JOB_MESSAGE_BASIC
The message is at the 'basic' level: useful for keeping track of the execution of a Dataflow pipeline.JOB_MESSAGE_DEBUG
The message is at the 'debug' level: typically only useful for software engineers working on the code the job is running.JOB_MESSAGE_DETAILED
The message is at the 'detailed' level: somewhat verbose, but potentially useful to users.JOB_MESSAGE_ERROR
The message is at the 'error' level: indicating a condition preventing a job from succeeding.JOB_MESSAGE_IMPORTANCE_UNKNOWN
The message importance isn't specified, or is unknown.JOB_MESSAGE_WARNING
The message is at the 'warning' level: indicating a condition pertaining to a job which may require human intervention.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static int
JOB_MESSAGE_BASIC_VALUE
The message is at the 'basic' level: useful for keeping track of the execution of a Dataflow pipeline.static int
JOB_MESSAGE_DEBUG_VALUE
The message is at the 'debug' level: typically only useful for software engineers working on the code the job is running.static int
JOB_MESSAGE_DETAILED_VALUE
The message is at the 'detailed' level: somewhat verbose, but potentially useful to users.static int
JOB_MESSAGE_ERROR_VALUE
The message is at the 'error' level: indicating a condition preventing a job from succeeding.static int
JOB_MESSAGE_IMPORTANCE_UNKNOWN_VALUE
The message importance isn't specified, or is unknown.static int
JOB_MESSAGE_WARNING_VALUE
The message is at the 'warning' level: indicating a condition pertaining to a job which may require human intervention.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static JobMessageImportance
forNumber(int value)
static com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor()
com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType()
int
getNumber()
com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor()
static com.google.protobuf.Internal.EnumLiteMap<JobMessageImportance>
internalGetValueMap()
static JobMessageImportance
valueOf(int value)
Deprecated.static JobMessageImportance
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static JobMessageImportance
valueOf(String name)
Returns the enum constant of this type with the specified name.static JobMessageImportance[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JOB_MESSAGE_IMPORTANCE_UNKNOWN
public static final JobMessageImportance JOB_MESSAGE_IMPORTANCE_UNKNOWN
The message importance isn't specified, or is unknown.
JOB_MESSAGE_IMPORTANCE_UNKNOWN = 0;
-
JOB_MESSAGE_DEBUG
public static final JobMessageImportance JOB_MESSAGE_DEBUG
The message is at the 'debug' level: typically only useful for software engineers working on the code the job is running. Typically, Dataflow pipeline runners do not display log messages at this level by default.
JOB_MESSAGE_DEBUG = 1;
-
JOB_MESSAGE_DETAILED
public static final JobMessageImportance JOB_MESSAGE_DETAILED
The message is at the 'detailed' level: somewhat verbose, but potentially useful to users. Typically, Dataflow pipeline runners do not display log messages at this level by default. These messages are displayed by default in the Dataflow monitoring UI.
JOB_MESSAGE_DETAILED = 2;
-
JOB_MESSAGE_BASIC
public static final JobMessageImportance JOB_MESSAGE_BASIC
The message is at the 'basic' level: useful for keeping track of the execution of a Dataflow pipeline. Typically, Dataflow pipeline runners display log messages at this level by default, and these messages are displayed by default in the Dataflow monitoring UI.
JOB_MESSAGE_BASIC = 5;
-
JOB_MESSAGE_WARNING
public static final JobMessageImportance JOB_MESSAGE_WARNING
The message is at the 'warning' level: indicating a condition pertaining to a job which may require human intervention. Typically, Dataflow pipeline runners display log messages at this level by default, and these messages are displayed by default in the Dataflow monitoring UI.
JOB_MESSAGE_WARNING = 3;
-
JOB_MESSAGE_ERROR
public static final JobMessageImportance JOB_MESSAGE_ERROR
The message is at the 'error' level: indicating a condition preventing a job from succeeding. Typically, Dataflow pipeline runners display log messages at this level by default, and these messages are displayed by default in the Dataflow monitoring UI.
JOB_MESSAGE_ERROR = 4;
-
UNRECOGNIZED
public static final JobMessageImportance UNRECOGNIZED
-
-
Field Detail
-
JOB_MESSAGE_IMPORTANCE_UNKNOWN_VALUE
public static final int JOB_MESSAGE_IMPORTANCE_UNKNOWN_VALUE
The message importance isn't specified, or is unknown.
JOB_MESSAGE_IMPORTANCE_UNKNOWN = 0;
- See Also:
- Constant Field Values
-
JOB_MESSAGE_DEBUG_VALUE
public static final int JOB_MESSAGE_DEBUG_VALUE
The message is at the 'debug' level: typically only useful for software engineers working on the code the job is running. Typically, Dataflow pipeline runners do not display log messages at this level by default.
JOB_MESSAGE_DEBUG = 1;
- See Also:
- Constant Field Values
-
JOB_MESSAGE_DETAILED_VALUE
public static final int JOB_MESSAGE_DETAILED_VALUE
The message is at the 'detailed' level: somewhat verbose, but potentially useful to users. Typically, Dataflow pipeline runners do not display log messages at this level by default. These messages are displayed by default in the Dataflow monitoring UI.
JOB_MESSAGE_DETAILED = 2;
- See Also:
- Constant Field Values
-
JOB_MESSAGE_BASIC_VALUE
public static final int JOB_MESSAGE_BASIC_VALUE
The message is at the 'basic' level: useful for keeping track of the execution of a Dataflow pipeline. Typically, Dataflow pipeline runners display log messages at this level by default, and these messages are displayed by default in the Dataflow monitoring UI.
JOB_MESSAGE_BASIC = 5;
- See Also:
- Constant Field Values
-
JOB_MESSAGE_WARNING_VALUE
public static final int JOB_MESSAGE_WARNING_VALUE
The message is at the 'warning' level: indicating a condition pertaining to a job which may require human intervention. Typically, Dataflow pipeline runners display log messages at this level by default, and these messages are displayed by default in the Dataflow monitoring UI.
JOB_MESSAGE_WARNING = 3;
- See Also:
- Constant Field Values
-
JOB_MESSAGE_ERROR_VALUE
public static final int JOB_MESSAGE_ERROR_VALUE
The message is at the 'error' level: indicating a condition preventing a job from succeeding. Typically, Dataflow pipeline runners display log messages at this level by default, and these messages are displayed by default in the Dataflow monitoring UI.
JOB_MESSAGE_ERROR = 4;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static JobMessageImportance[] 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 (JobMessageImportance c : JobMessageImportance.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JobMessageImportance 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:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
- Specified by:
getNumber
in interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
@Deprecated public static JobMessageImportance 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 JobMessageImportance 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<JobMessageImportance> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptor
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForType
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
-
valueOf
public static JobMessageImportance 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
-
-