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

namespace Google\Cloud\Security\PrivateCA\V1\CertificateRevocationList;

use UnexpectedValueException;

/**
 * The state of a
 * [CertificateRevocationList][google.cloud.security.privateca.v1.CertificateRevocationList],
 * indicating if it is current.
 *
 * Protobuf type <code>google.cloud.security.privateca.v1.CertificateRevocationList.State</code>
 */
class State
{
    /**
     * Not specified.
     *
     * Generated from protobuf enum <code>STATE_UNSPECIFIED = 0;</code>
     */
    const STATE_UNSPECIFIED = 0;
    /**
     * The
     * [CertificateRevocationList][google.cloud.security.privateca.v1.CertificateRevocationList]
     * is up to date.
     *
     * Generated from protobuf enum <code>ACTIVE = 1;</code>
     */
    const ACTIVE = 1;
    /**
     * The
     * [CertificateRevocationList][google.cloud.security.privateca.v1.CertificateRevocationList]
     * is no longer current.
     *
     * Generated from protobuf enum <code>SUPERSEDED = 2;</code>
     */
    const SUPERSEDED = 2;

    private static $valueToName = [
        self::STATE_UNSPECIFIED => 'STATE_UNSPECIFIED',
        self::ACTIVE => 'ACTIVE',
        self::SUPERSEDED => 'SUPERSEDED',
    ];

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


