<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: google/cloud/retail/v2/search_service.proto

namespace Google\Cloud\Retail\V2\SearchRequest\QueryExpansionSpec;

use UnexpectedValueException;

/**
 * Enum describing under which condition query expansion should occur.
 *
 * Protobuf type <code>google.cloud.retail.v2.SearchRequest.QueryExpansionSpec.Condition</code>
 */
class Condition
{
    /**
     * Unspecified query expansion condition. In this case, server behavior
     * defaults to
     * [Condition.DISABLED][google.cloud.retail.v2.SearchRequest.QueryExpansionSpec.Condition.DISABLED].
     *
     * Generated from protobuf enum <code>CONDITION_UNSPECIFIED = 0;</code>
     */
    const CONDITION_UNSPECIFIED = 0;
    /**
     * Disabled query expansion. Only the exact search query is used, even if
     * [SearchResponse.total_size][google.cloud.retail.v2.SearchResponse.total_size]
     * is zero.
     *
     * Generated from protobuf enum <code>DISABLED = 1;</code>
     */
    const DISABLED = 1;
    /**
     * Automatic query expansion built by Google Retail Search.
     *
     * Generated from protobuf enum <code>AUTO = 3;</code>
     */
    const AUTO = 3;

    private static $valueToName = [
        self::CONDITION_UNSPECIFIED => 'CONDITION_UNSPECIFIED',
        self::DISABLED => 'DISABLED',
        self::AUTO => 'AUTO',
    ];

    public static function name($value)
    {
        if (!isset(self::$valueToName[$value])) {
            throw new UnexpectedValueException(sprintf(
                    'Enum %s has no name defined for value %s', __CLASS__, $value));
        }
        return self::$valueToName[$value];
    }


    public static function value($name)
    {
        $const = __CLASS__ . '::' . strtoupper($name);
        if (!defined($const)) {
            throw new UnexpectedValueException(sprintf(
                    'Enum %s has no value defined for name %s', __CLASS__, $name));
        }
        return constant($const);
    }
}


