Class CommunicationCloudEnvironment
- java.lang.Object
-
- com.azure.android.core.util.ExpandableStringEnum<CommunicationCloudEnvironment>
-
- com.azure.android.communication.common.CommunicationCloudEnvironment
-
public final class CommunicationCloudEnvironment extends com.azure.android.core.util.ExpandableStringEnum<CommunicationCloudEnvironment>
The cloud that the identifier belongs to.
-
-
Field Summary
Fields Modifier and Type Field Description static CommunicationCloudEnvironment
DOD
Represent Azure Dod cloudstatic CommunicationCloudEnvironment
GCCH
Represent Azure Gcch cloudstatic CommunicationCloudEnvironment
PUBLIC
Represent Azure public cloud
-
Constructor Summary
Constructors Constructor Description CommunicationCloudEnvironment()
Creates Azure public cloud
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object that)
static CommunicationCloudEnvironment
fromString(java.lang.String name)
Sets an environment value from a String and returns theCommunicationCloudEnvironment
associated with the name.int
hashCode()
java.lang.String
toString()
-
-
-
Field Detail
-
PUBLIC
public static final CommunicationCloudEnvironment PUBLIC
Represent Azure public cloud
-
DOD
public static final CommunicationCloudEnvironment DOD
Represent Azure Dod cloud
-
GCCH
public static final CommunicationCloudEnvironment GCCH
Represent Azure Gcch cloud
-
-
Method Detail
-
fromString
public static CommunicationCloudEnvironment fromString(java.lang.String name)
Sets an environment value from a String and returns theCommunicationCloudEnvironment
associated with the name.- Parameters:
name
- The name of the environment.- Returns:
- The
CommunicationCloudEnvironment
associated with the given name. - Throws:
java.lang.NullPointerException
- ifname
is null
-
equals
public boolean equals(java.lang.Object that)
- Overrides:
equals
in classcom.azure.android.core.util.ExpandableStringEnum<CommunicationCloudEnvironment>
-
toString
public java.lang.String toString()
- Overrides:
toString
in classcom.azure.android.core.util.ExpandableStringEnum<CommunicationCloudEnvironment>
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classcom.azure.android.core.util.ExpandableStringEnum<CommunicationCloudEnvironment>
-
-