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