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

com.contentstack.sdk.Region Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package com.contentstack.sdk;

/**
 * The enum Region.
 * 

* The code snippet is defining an enumeration called Region. An enumeration is a special * type in Java that represents a group of named constants. In this case, the Region * enumeration has four constants: `NA`, `EU`, `AZURE_EU`, and `AZURE_NA`. These constants represent * different regions or locations. */ public enum Region { /** * Na region. */ NA, /** * Eu region. */ EU, /** * Azure eu region. */ AZURE_EU, /** * Azure na region. */ AZURE_NA, /** * Gcp na region. */ GCP_NA, }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy