<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: google/devtools/artifactregistry/v1beta2/repository.proto

namespace Google\Cloud\ArtifactRegistry\V1beta2\Repository;

use UnexpectedValueException;

/**
 * A package format.
 *
 * Protobuf type <code>google.devtools.artifactregistry.v1beta2.Repository.Format</code>
 */
class Format
{
    /**
     * Unspecified package format.
     *
     * Generated from protobuf enum <code>FORMAT_UNSPECIFIED = 0;</code>
     */
    const FORMAT_UNSPECIFIED = 0;
    /**
     * Docker package format.
     *
     * Generated from protobuf enum <code>DOCKER = 1;</code>
     */
    const DOCKER = 1;
    /**
     * Maven package format.
     *
     * Generated from protobuf enum <code>MAVEN = 2;</code>
     */
    const MAVEN = 2;
    /**
     * NPM package format.
     *
     * Generated from protobuf enum <code>NPM = 3;</code>
     */
    const NPM = 3;
    /**
     * APT package format.
     *
     * Generated from protobuf enum <code>APT = 5;</code>
     */
    const APT = 5;
    /**
     * YUM package format.
     *
     * Generated from protobuf enum <code>YUM = 6;</code>
     */
    const YUM = 6;
    /**
     * Python package format.
     *
     * Generated from protobuf enum <code>PYTHON = 8;</code>
     */
    const PYTHON = 8;

    private static $valueToName = [
        self::FORMAT_UNSPECIFIED => 'FORMAT_UNSPECIFIED',
        self::DOCKER => 'DOCKER',
        self::MAVEN => 'MAVEN',
        self::NPM => 'NPM',
        self::APT => 'APT',
        self::YUM => 'YUM',
        self::PYTHON => 'PYTHON',
    ];

    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(Format::class, \Google\Cloud\ArtifactRegistry\V1beta2\Repository_Format::class);

