<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: google/cloud/vmwareengine/v1/vmwareengine_resources.proto

namespace Google\Cloud\VmwareEngine\V1\HcxActivationKey;

use UnexpectedValueException;

/**
 * State of HCX activation key
 *
 * Protobuf type <code>google.cloud.vmwareengine.v1.HcxActivationKey.State</code>
 */
class State
{
    /**
     * Unspecified state.
     *
     * Generated from protobuf enum <code>STATE_UNSPECIFIED = 0;</code>
     */
    const STATE_UNSPECIFIED = 0;
    /**
     * State of a newly generated activation key.
     *
     * Generated from protobuf enum <code>AVAILABLE = 1;</code>
     */
    const AVAILABLE = 1;
    /**
     * State of key when it has been used to activate HCX appliance.
     *
     * Generated from protobuf enum <code>CONSUMED = 2;</code>
     */
    const CONSUMED = 2;
    /**
     * State of key when it is being created.
     *
     * Generated from protobuf enum <code>CREATING = 3;</code>
     */
    const CREATING = 3;

    private static $valueToName = [
        self::STATE_UNSPECIFIED => 'STATE_UNSPECIFIED',
        self::AVAILABLE => 'AVAILABLE',
        self::CONSUMED => 'CONSUMED',
        self::CREATING => 'CREATING',
    ];

    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);
    }
}


