public enum AutocompleteCandidatesField extends Enum<AutocompleteCandidatesField>
| Enum Constant and Description |
|---|
AllJobTitles
Generate completions from all job titles in the index
|
DegreeNames
Generate completions from degree names in the index
|
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
|
LanguageSkills
Generate completions from language skills in the index
|
LastJobTitle
Generate completions from last job titles in the index
|
Location
Generate completions from candidate locations (addresses) in the index
|
ProfessionalSkills
Generate completions from professional skills in the index
|
ProfessionGroup
Generate completions from profession groups in the index
|
RecentJobTitles
Generate completions from recent job titles in the index
|
| Modifier and Type | Method and Description |
|---|---|
static AutocompleteCandidatesField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AutocompleteCandidatesField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="FULLTEXT") public static final AutocompleteCandidatesField FullText
@SerializedName(value="compskills") public static final AutocompleteCandidatesField ITSkills
@SerializedName(value="profskills") public static final AutocompleteCandidatesField ProfessionalSkills
@SerializedName(value="langskills.name") public static final AutocompleteCandidatesField LanguageSkills
@SerializedName(value="recent_job_titles") public static final AutocompleteCandidatesField RecentJobTitles
@SerializedName(value="job_titles") public static final AutocompleteCandidatesField AllJobTitles
@SerializedName(value="last_job_title") public static final AutocompleteCandidatesField LastJobTitle
@SerializedName(value="degrees.name") public static final AutocompleteCandidatesField DegreeNames
@SerializedName(value="location") public static final AutocompleteCandidatesField Location
@SerializedName(value="work_field.profession_group") public static final AutocompleteCandidatesField ProfessionGroup
@SerializedName(value="education_level_international") public static final AutocompleteCandidatesField EducationLevel
public static AutocompleteCandidatesField[] values()
for (AutocompleteCandidatesField c : AutocompleteCandidatesField.values()) System.out.println(c);
public static AutocompleteCandidatesField 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.