CustomEntityLookupSkillLanguage.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
//
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
package com.azure.search.documents.indexes.models;
import com.azure.core.util.ExpandableStringEnum;
import com.fasterxml.jackson.annotation.JsonCreator;
import java.util.Collection;
/** Defines values for CustomEntityLookupSkillLanguage. */
public final class CustomEntityLookupSkillLanguage extends ExpandableStringEnum<CustomEntityLookupSkillLanguage> {
/** Static value da for CustomEntityLookupSkillLanguage. */
public static final CustomEntityLookupSkillLanguage DA = fromString("da");
/** Static value de for CustomEntityLookupSkillLanguage. */
public static final CustomEntityLookupSkillLanguage DE = fromString("de");
/** Static value en for CustomEntityLookupSkillLanguage. */
public static final CustomEntityLookupSkillLanguage EN = fromString("en");
/** Static value es for CustomEntityLookupSkillLanguage. */
public static final CustomEntityLookupSkillLanguage ES = fromString("es");
/** Static value fi for CustomEntityLookupSkillLanguage. */
public static final CustomEntityLookupSkillLanguage FI = fromString("fi");
/** Static value fr for CustomEntityLookupSkillLanguage. */
public static final CustomEntityLookupSkillLanguage FR = fromString("fr");
/** Static value it for CustomEntityLookupSkillLanguage. */
public static final CustomEntityLookupSkillLanguage IT = fromString("it");
/** Static value ko for CustomEntityLookupSkillLanguage. */
public static final CustomEntityLookupSkillLanguage KO = fromString("ko");
/** Static value pt for CustomEntityLookupSkillLanguage. */
public static final CustomEntityLookupSkillLanguage PT = fromString("pt");
/**
* Creates or finds a CustomEntityLookupSkillLanguage from its string representation.
*
* @param name a name to look for.
* @return the corresponding CustomEntityLookupSkillLanguage.
*/
@JsonCreator
public static CustomEntityLookupSkillLanguage fromString(String name) {
return fromString(name, CustomEntityLookupSkillLanguage.class);
}
/** @return known CustomEntityLookupSkillLanguage values. */
public static Collection<CustomEntityLookupSkillLanguage> values() {
return values(CustomEntityLookupSkillLanguage.class);
}
}