public enum Region extends Enum<Region>
ClientConfig
.Enum Constant and Description |
---|
EU
Represents Europe region
|
US
Represents US region
|
Modifier and Type | Method and Description |
---|---|
static Region |
get(String regionCode)
Returns
Region instance for its string representation. |
String |
toString()
Returns the string representation of the region.
|
static Region |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Region[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Region US
public static final Region EU
public static Region[] values()
for (Region c : Region.values()) System.out.println(c);
public static Region valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static Region get(String regionCode)
Region
instance for its string representation.regionCode
- Region codeRegion
instanceCopyright © 2023 Adobe. All rights reserved.