Package com.google.cloud.deploy.v1
Enum Job.JobTypeCase
- java.lang.Object
-
- java.lang.Enum<Job.JobTypeCase>
-
- com.google.cloud.deploy.v1.Job.JobTypeCase
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,Serializable
,Comparable<Job.JobTypeCase>
- Enclosing class:
- Job
public static enum Job.JobTypeCase extends Enum<Job.JobTypeCase> implements com.google.protobuf.Internal.EnumLite
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADVANCE_CHILD_ROLLOUT_JOB
CREATE_CHILD_ROLLOUT_JOB
DEPLOY_JOB
JOBTYPE_NOT_SET
POSTDEPLOY_JOB
PREDEPLOY_JOB
VERIFY_JOB
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static Job.JobTypeCase
forNumber(int value)
int
getNumber()
static Job.JobTypeCase
valueOf(int value)
Deprecated.static Job.JobTypeCase
valueOf(String name)
Returns the enum constant of this type with the specified name.static Job.JobTypeCase[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEPLOY_JOB
public static final Job.JobTypeCase DEPLOY_JOB
-
VERIFY_JOB
public static final Job.JobTypeCase VERIFY_JOB
-
PREDEPLOY_JOB
public static final Job.JobTypeCase PREDEPLOY_JOB
-
POSTDEPLOY_JOB
public static final Job.JobTypeCase POSTDEPLOY_JOB
-
CREATE_CHILD_ROLLOUT_JOB
public static final Job.JobTypeCase CREATE_CHILD_ROLLOUT_JOB
-
ADVANCE_CHILD_ROLLOUT_JOB
public static final Job.JobTypeCase ADVANCE_CHILD_ROLLOUT_JOB
-
JOBTYPE_NOT_SET
public static final Job.JobTypeCase JOBTYPE_NOT_SET
-
-
Method Detail
-
values
public static Job.JobTypeCase[] 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 (Job.JobTypeCase c : Job.JobTypeCase.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Job.JobTypeCase 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
-
valueOf
@Deprecated public static Job.JobTypeCase 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 Job.JobTypeCase forNumber(int value)
-
getNumber
public int getNumber()
- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
-
-