public enum AutocompleteJobsField extends Enum<AutocompleteJobsField>
| Enum Constant and Description |
|---|
EducationLevel
Generate completions from normalized international education levels in the
index
|
FullText
Generate completions from multiple dictionaries
|
ITSkills
Generate completions from IT skills in the index
|
JobTitle
Generate completions from all job titles in the index
|
LanguageSkills
Generate completions from language skills in the index
|
Location
Generate completions from vacancy locations (addresses) in the index
|
ProfessionGroup
Generate completions from profession groups in the index
|
| Modifier and Type | Method and Description |
|---|---|
static AutocompleteJobsField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AutocompleteJobsField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="FULLTEXT") public static final AutocompleteJobsField FullText
@SerializedName(value="compskills") public static final AutocompleteJobsField ITSkills
@SerializedName(value="langskills") public static final AutocompleteJobsField LanguageSkills
@SerializedName(value="job_title") public static final AutocompleteJobsField JobTitle
@SerializedName(value="location") public static final AutocompleteJobsField Location
@SerializedName(value="work_field.profession_group") public static final AutocompleteJobsField ProfessionGroup
@SerializedName(value="education_level_international") public static final AutocompleteJobsField EducationLevel
public static AutocompleteJobsField[] values()
for (AutocompleteJobsField c : AutocompleteJobsField.values()) System.out.println(c);
public static AutocompleteJobsField 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 nullCopyright © 2025. All rights reserved.