com.azure.resourcemanager.network.models.Geo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-network Show documentation
Show all versions of azure-resourcemanager-network Show documentation
This package contains Microsoft Azure Network Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
The 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 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.
*/
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);
}
}