public enum ViewsType extends Enum<ViewsType>
| Modifier and Type | Method and Description |
|---|---|
static ViewsType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ViewsType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ViewsType JSP
public static final ViewsType THYMELEAF
public static ViewsType[] values()
for (ViewsType c : ViewsType.values()) System.out.println(c);
public static ViewsType 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 nullCopyright © 2016. All rights reserved.