public enum CompanySize extends Enum<CompanySize> implements ProtocolMessageEnum
An enum that represents the size of the company.Protobuf enum
google.cloud.talent.v4beta1.CompanySize
Enum Constant and Description |
---|
BIG
The company has between 1,000 and 4,999 employees.
|
BIGGER
The company has between 5,000 and 9,999 employees.
|
COMPANY_SIZE_UNSPECIFIED
Default value if the size isn't specified.
|
GIANT
The company has 10,000 or more employees.
|
MEDIUM
The company has between 500 and 999 employees.
|
MINI
The company has less than 50 employees.
|
SMALL
The company has between 50 and 99 employees.
|
SMEDIUM
The company has between 100 and 499 employees.
|
UNRECOGNIZED |
Modifier and Type | Field and Description |
---|---|
static int |
BIG_VALUE
The company has between 1,000 and 4,999 employees.
|
static int |
BIGGER_VALUE
The company has between 5,000 and 9,999 employees.
|
static int |
COMPANY_SIZE_UNSPECIFIED_VALUE
Default value if the size isn't specified.
|
static int |
GIANT_VALUE
The company has 10,000 or more employees.
|
static int |
MEDIUM_VALUE
The company has between 500 and 999 employees.
|
static int |
MINI_VALUE
The company has less than 50 employees.
|
static int |
SMALL_VALUE
The company has between 50 and 99 employees.
|
static int |
SMEDIUM_VALUE
The company has between 100 and 499 employees.
|
Modifier and Type | Method and Description |
---|---|
static CompanySize |
forNumber(int value) |
static Descriptors.EnumDescriptor |
getDescriptor() |
Descriptors.EnumDescriptor |
getDescriptorForType() |
int |
getNumber() |
Descriptors.EnumValueDescriptor |
getValueDescriptor() |
static Internal.EnumLiteMap<CompanySize> |
internalGetValueMap() |
static CompanySize |
valueOf(Descriptors.EnumValueDescriptor desc) |
static CompanySize |
valueOf(int value)
Deprecated.
Use
forNumber(int) instead. |
static CompanySize |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompanySize[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompanySize COMPANY_SIZE_UNSPECIFIED
Default value if the size isn't specified.
COMPANY_SIZE_UNSPECIFIED = 0;
public static final CompanySize MINI
The company has less than 50 employees.
MINI = 1;
public static final CompanySize SMALL
The company has between 50 and 99 employees.
SMALL = 2;
public static final CompanySize SMEDIUM
The company has between 100 and 499 employees.
SMEDIUM = 3;
public static final CompanySize MEDIUM
The company has between 500 and 999 employees.
MEDIUM = 4;
public static final CompanySize BIG
The company has between 1,000 and 4,999 employees.
BIG = 5;
public static final CompanySize BIGGER
The company has between 5,000 and 9,999 employees.
BIGGER = 6;
public static final CompanySize GIANT
The company has 10,000 or more employees.
GIANT = 7;
public static final CompanySize UNRECOGNIZED
public static final int COMPANY_SIZE_UNSPECIFIED_VALUE
Default value if the size isn't specified.
COMPANY_SIZE_UNSPECIFIED = 0;
public static final int MINI_VALUE
The company has less than 50 employees.
MINI = 1;
public static final int SMALL_VALUE
The company has between 50 and 99 employees.
SMALL = 2;
public static final int SMEDIUM_VALUE
The company has between 100 and 499 employees.
SMEDIUM = 3;
public static final int MEDIUM_VALUE
The company has between 500 and 999 employees.
MEDIUM = 4;
public static final int BIG_VALUE
The company has between 1,000 and 4,999 employees.
BIG = 5;
public static final int BIGGER_VALUE
The company has between 5,000 and 9,999 employees.
BIGGER = 6;
public static final int GIANT_VALUE
The company has 10,000 or more employees.
GIANT = 7;
public static CompanySize[] values()
for (CompanySize c : CompanySize.values()) System.out.println(c);
public static CompanySize 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 CompanySize valueOf(int value)
forNumber(int)
instead.value
- The numeric wire value of the corresponding enum entry.public static CompanySize forNumber(int value)
value
- The numeric wire value of the corresponding enum entry.public static Internal.EnumLiteMap<CompanySize> 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 CompanySize valueOf(Descriptors.EnumValueDescriptor desc)
Copyright © 2022 Google LLC. All rights reserved.