public enum JobLevel extends Enum<JobLevel> implements ProtocolMessageEnum
An enum that represents the required experience level required for the job.Protobuf enum
google.cloud.talent.v4beta1.JobLevel
Enum Constant and Description |
---|
DIRECTOR
Senior-level managers responsible for managing teams of managers.
|
ENTRY_LEVEL
Entry-level individual contributors, typically with less than 2 years of
experience in a similar role.
|
EXECUTIVE
Executive-level managers and above, including C-level positions.
|
EXPERIENCED
Experienced individual contributors, typically with 2+ years of
experience in a similar role.
|
JOB_LEVEL_UNSPECIFIED
The default value if the level isn't specified.
|
MANAGER
Entry- to mid-level managers responsible for managing a team of people.
|
UNRECOGNIZED |
Modifier and Type | Field and Description |
---|---|
static int |
DIRECTOR_VALUE
Senior-level managers responsible for managing teams of managers.
|
static int |
ENTRY_LEVEL_VALUE
Entry-level individual contributors, typically with less than 2 years of
experience in a similar role.
|
static int |
EXECUTIVE_VALUE
Executive-level managers and above, including C-level positions.
|
static int |
EXPERIENCED_VALUE
Experienced individual contributors, typically with 2+ years of
experience in a similar role.
|
static int |
JOB_LEVEL_UNSPECIFIED_VALUE
The default value if the level isn't specified.
|
static int |
MANAGER_VALUE
Entry- to mid-level managers responsible for managing a team of people.
|
Modifier and Type | Method and Description |
---|---|
static JobLevel |
forNumber(int value) |
static Descriptors.EnumDescriptor |
getDescriptor() |
Descriptors.EnumDescriptor |
getDescriptorForType() |
int |
getNumber() |
Descriptors.EnumValueDescriptor |
getValueDescriptor() |
static Internal.EnumLiteMap<JobLevel> |
internalGetValueMap() |
static JobLevel |
valueOf(Descriptors.EnumValueDescriptor desc) |
static JobLevel |
valueOf(int value)
Deprecated.
Use
forNumber(int) instead. |
static JobLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobLevel JOB_LEVEL_UNSPECIFIED
The default value if the level isn't specified.
JOB_LEVEL_UNSPECIFIED = 0;
public static final JobLevel ENTRY_LEVEL
Entry-level individual contributors, typically with less than 2 years of experience in a similar role. Includes interns.
ENTRY_LEVEL = 1;
public static final JobLevel EXPERIENCED
Experienced individual contributors, typically with 2+ years of experience in a similar role.
EXPERIENCED = 2;
public static final JobLevel MANAGER
Entry- to mid-level managers responsible for managing a team of people.
MANAGER = 3;
public static final JobLevel DIRECTOR
Senior-level managers responsible for managing teams of managers.
DIRECTOR = 4;
public static final JobLevel EXECUTIVE
Executive-level managers and above, including C-level positions.
EXECUTIVE = 5;
public static final JobLevel UNRECOGNIZED
public static final int JOB_LEVEL_UNSPECIFIED_VALUE
The default value if the level isn't specified.
JOB_LEVEL_UNSPECIFIED = 0;
public static final int ENTRY_LEVEL_VALUE
Entry-level individual contributors, typically with less than 2 years of experience in a similar role. Includes interns.
ENTRY_LEVEL = 1;
public static final int EXPERIENCED_VALUE
Experienced individual contributors, typically with 2+ years of experience in a similar role.
EXPERIENCED = 2;
public static final int MANAGER_VALUE
Entry- to mid-level managers responsible for managing a team of people.
MANAGER = 3;
public static final int DIRECTOR_VALUE
Senior-level managers responsible for managing teams of managers.
DIRECTOR = 4;
public static final int EXECUTIVE_VALUE
Executive-level managers and above, including C-level positions.
EXECUTIVE = 5;
public static JobLevel[] values()
for (JobLevel c : JobLevel.values()) System.out.println(c);
public static JobLevel valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic final int getNumber()
getNumber
in interface Internal.EnumLite
getNumber
in interface ProtocolMessageEnum
@Deprecated public static JobLevel valueOf(int value)
forNumber(int)
instead.value
- The numeric wire value of the corresponding enum entry.public static JobLevel forNumber(int value)
value
- The numeric wire value of the corresponding enum entry.public static Internal.EnumLiteMap<JobLevel> internalGetValueMap()
public final Descriptors.EnumValueDescriptor getValueDescriptor()
getValueDescriptor
in interface ProtocolMessageEnum
public final Descriptors.EnumDescriptor getDescriptorForType()
getDescriptorForType
in interface ProtocolMessageEnum
public static final Descriptors.EnumDescriptor getDescriptor()
public static JobLevel valueOf(Descriptors.EnumValueDescriptor desc)
Copyright © 2022 Google LLC. All rights reserved.