Serializable, Comparable<ApiRoute>public enum ApiRoute extends Enum<ApiRoute>
| Enum Constant | Description |
|---|---|
CONFIG |
|
ERROR |
|
FLOW |
|
HEARTBEAT |
|
LOGIN |
|
LOGOUT |
|
RISK |
|
TRACK |
|
VERIFY |
| Modifier and Type | Method | Description |
|---|---|---|
String |
getRoute() |
|
static ApiRoute |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static ApiRoute[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApiRoute LOGIN
public static final ApiRoute LOGOUT
public static final ApiRoute ERROR
public static final ApiRoute CONFIG
public static final ApiRoute HEARTBEAT
public static final ApiRoute TRACK
public static final ApiRoute VERIFY
public static final ApiRoute RISK
public static final ApiRoute FLOW
public static ApiRoute[] values()
for (ApiRoute c : ApiRoute.values()) System.out.println(c);
public static ApiRoute 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 getRoute()
Copyright © 2020. All rights reserved.