All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.resourcemanager.network.models.Geo Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure Network Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt

There is a newer version: 2.44.0
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.resourcemanager.network.models;

import com.azure.core.util.ExpandableStringEnum;
import com.fasterxml.jackson.annotation.JsonCreator;
import java.util.Collection;

/**
 * The Geo for CIDR advertising. Should be an Geo code.
 */
public final class Geo extends ExpandableStringEnum {
    /**
     * Static value GLOBAL for Geo.
     */
    public static final Geo GLOBAL = fromString("GLOBAL");

    /**
     * Static value AFRI for Geo.
     */
    public static final Geo AFRI = fromString("AFRI");

    /**
     * Static value APAC for Geo.
     */
    public static final Geo APAC = fromString("APAC");

    /**
     * Static value EURO for Geo.
     */
    public static final Geo EURO = fromString("EURO");

    /**
     * Static value LATAM for Geo.
     */
    public static final Geo LATAM = fromString("LATAM");

    /**
     * Static value NAM for Geo.
     */
    public static final Geo NAM = fromString("NAM");

    /**
     * Static value ME for Geo.
     */
    public static final Geo ME = fromString("ME");

    /**
     * Static value OCEANIA for Geo.
     */
    public static final Geo OCEANIA = fromString("OCEANIA");

    /**
     * Static value AQ for Geo.
     */
    public static final Geo AQ = fromString("AQ");

    /**
     * Creates a new instance of Geo value.
     * 
     * @deprecated Use the {@link #fromString(String)} factory method.
     */
    @Deprecated
    public Geo() {
    }

    /**
     * Creates or finds a Geo from its string representation.
     * 
     * @param name a name to look for.
     * @return the corresponding Geo.
     */
    @JsonCreator
    public static Geo fromString(String name) {
        return fromString(name, Geo.class);
    }

    /**
     * Gets known Geo values.
     * 
     * @return known Geo values.
     */
    public static Collection values() {
        return values(Geo.class);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy