public enum ApiRoute extends Enum<ApiRoute>
| Modifier and Type | Method and Description |
|---|---|
String |
getApiRoute() |
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 TRACK
public static final ApiRoute VERIFY
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 getApiRoute()
Copyright © 2020. All rights reserved.