public static enum SearchJobsRequest.DiversificationLevel extends Enum<SearchJobsRequest.DiversificationLevel> implements ProtocolMessageEnum
Controls whether highly similar jobs are returned next to each other in the search results. Jobs are identified as highly similar based on their titles, job categories, and locations. Highly similar results are clustered so that only one representative job of the cluster is displayed to the job seeker higher up in the results, with the other jobs being displayed lower down in the results.Protobuf enum
google.cloud.talent.v4beta1.SearchJobsRequest.DiversificationLevel
Enum Constant and Description |
---|
DISABLED
Disables diversification.
|
DIVERSIFICATION_LEVEL_UNSPECIFIED
The diversification level isn't specified.
|
SIMPLE
Default diversifying behavior.
|
UNRECOGNIZED |
Modifier and Type | Field and Description |
---|---|
static int |
DISABLED_VALUE
Disables diversification.
|
static int |
DIVERSIFICATION_LEVEL_UNSPECIFIED_VALUE
The diversification level isn't specified.
|
static int |
SIMPLE_VALUE
Default diversifying behavior.
|
Modifier and Type | Method and Description |
---|---|
static SearchJobsRequest.DiversificationLevel |
forNumber(int value) |
static Descriptors.EnumDescriptor |
getDescriptor() |
Descriptors.EnumDescriptor |
getDescriptorForType() |
int |
getNumber() |
Descriptors.EnumValueDescriptor |
getValueDescriptor() |
static Internal.EnumLiteMap<SearchJobsRequest.DiversificationLevel> |
internalGetValueMap() |
static SearchJobsRequest.DiversificationLevel |
valueOf(Descriptors.EnumValueDescriptor desc) |
static SearchJobsRequest.DiversificationLevel |
valueOf(int value)
Deprecated.
Use
forNumber(int) instead. |
static SearchJobsRequest.DiversificationLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SearchJobsRequest.DiversificationLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchJobsRequest.DiversificationLevel DIVERSIFICATION_LEVEL_UNSPECIFIED
The diversification level isn't specified.
DIVERSIFICATION_LEVEL_UNSPECIFIED = 0;
public static final SearchJobsRequest.DiversificationLevel DISABLED
Disables diversification. Jobs that would normally be pushed to the last page would not have their positions altered. This may result in highly similar jobs appearing in sequence in the search results.
DISABLED = 1;
public static final SearchJobsRequest.DiversificationLevel SIMPLE
Default diversifying behavior. The result list is ordered so that highly similar results are pushed to the end of the last page of search results. If you are using pageToken to page through the result set, latency might be lower but we can't guarantee that all results are returned. If you are using page offset, latency might be higher but all results are returned.
SIMPLE = 2;
public static final SearchJobsRequest.DiversificationLevel UNRECOGNIZED
public static final int DIVERSIFICATION_LEVEL_UNSPECIFIED_VALUE
The diversification level isn't specified.
DIVERSIFICATION_LEVEL_UNSPECIFIED = 0;
public static final int DISABLED_VALUE
Disables diversification. Jobs that would normally be pushed to the last page would not have their positions altered. This may result in highly similar jobs appearing in sequence in the search results.
DISABLED = 1;
public static final int SIMPLE_VALUE
Default diversifying behavior. The result list is ordered so that highly similar results are pushed to the end of the last page of search results. If you are using pageToken to page through the result set, latency might be lower but we can't guarantee that all results are returned. If you are using page offset, latency might be higher but all results are returned.
SIMPLE = 2;
public static SearchJobsRequest.DiversificationLevel[] values()
for (SearchJobsRequest.DiversificationLevel c : SearchJobsRequest.DiversificationLevel.values()) System.out.println(c);
public static SearchJobsRequest.DiversificationLevel 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 SearchJobsRequest.DiversificationLevel valueOf(int value)
forNumber(int)
instead.value
- The numeric wire value of the corresponding enum entry.public static SearchJobsRequest.DiversificationLevel forNumber(int value)
value
- The numeric wire value of the corresponding enum entry.public static Internal.EnumLiteMap<SearchJobsRequest.DiversificationLevel> 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 SearchJobsRequest.DiversificationLevel valueOf(Descriptors.EnumValueDescriptor desc)
Copyright © 2022 Google LLC. All rights reserved.