public enum Region extends Enum<Region>
Modifier and Type | Method and Description |
---|---|
String |
getApiUrl() |
String |
getAuthUrl() |
String |
getName() |
String |
getReportUrl() |
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 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 String getName()
public String getApiUrl()
public String getAuthUrl()
public String getReportUrl()
Copyright © 2016–2023. All rights reserved.