public enum AuthenticationEndpoint extends Enum<AuthenticationEndpoint>
| Enum Constant and Description |
|---|
CHINA |
GERMANY |
GLOBAL |
GLOBAL2 |
US_GOVERNMENT |
| Modifier and Type | Method and Description |
|---|---|
String |
url() |
static AuthenticationEndpoint |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationEndpoint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticationEndpoint GLOBAL
public static final AuthenticationEndpoint GLOBAL2
public static final AuthenticationEndpoint CHINA
public static final AuthenticationEndpoint GERMANY
public static final AuthenticationEndpoint US_GOVERNMENT
public static AuthenticationEndpoint[] values()
for (AuthenticationEndpoint c : AuthenticationEndpoint.values()) System.out.println(c);
public static AuthenticationEndpoint 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 url()
Copyright © 2018–2020. All rights reserved.