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

namespace Google\Cloud\Logging\V2\LogSink;

use UnexpectedValueException;

/**
 * Deprecated. This is unused.
 *
 * Protobuf type <code>google.logging.v2.LogSink.VersionFormat</code>
 */
class VersionFormat
{
    /**
     * An unspecified format version that will default to V2.
     *
     * Generated from protobuf enum <code>VERSION_FORMAT_UNSPECIFIED = 0;</code>
     */
    const VERSION_FORMAT_UNSPECIFIED = 0;
    /**
     * `LogEntry` version 2 format.
     *
     * Generated from protobuf enum <code>V2 = 1;</code>
     */
    const V2 = 1;
    /**
     * `LogEntry` version 1 format.
     *
     * Generated from protobuf enum <code>V1 = 2;</code>
     */
    const V1 = 2;

    private static $valueToName = [
        self::VERSION_FORMAT_UNSPECIFIED => 'VERSION_FORMAT_UNSPECIFIED',
        self::V2 => 'V2',
        self::V1 => 'V1',
    ];

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

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(VersionFormat::class, \Google\Cloud\Logging\V2\LogSink_VersionFormat::class);

