public enum Template extends Enum<Template>
| Enum Constant and Description |
|---|
DEFAULT |
| Modifier and Type | Method and Description |
|---|---|
String |
adminPath() |
String |
badRequest() |
String |
badRequestPath() |
String |
cachePath() |
String |
forbidden() |
String |
forbiddenPath() |
String |
metricsPath() |
String |
notFound() |
String |
notFoundPath() |
String |
routesPath() |
String |
schedulerPath() |
String |
serverError() |
String |
serverErrorPath() |
String |
unauthorized() |
String |
unauthorizedPath() |
static Template |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Template[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Template DEFAULT
public static Template[] values()
for (Template c : Template.values()) System.out.println(c);
public static Template 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 forbidden()
public String notFound()
public String badRequest()
public String unauthorized()
public String serverError()
public String forbiddenPath()
public String notFoundPath()
public String badRequestPath()
public String unauthorizedPath()
public String serverErrorPath()
public String routesPath()
public String cachePath()
public String metricsPath()
public String schedulerPath()
public String adminPath()
Copyright © 2016. All rights reserved.