public enum BeanType extends Enum<BeanType>
| Enum Constant and Description | 
|---|
BUSINESS_OBJECT  | 
DAO  | 
DAO_IMPL  | 
MANAGED_BEAN  | 
VIEW_CREATE  | 
VIEW_DETAIL  | 
VIEW_FORM_CREATE  | 
VIEW_LIST  | 
VIEW_MENU  | 
| Modifier and Type | Method and Description | 
|---|---|
String | 
getExtension()  | 
String | 
getTemplate()  | 
boolean | 
isBootstrapDependend()  | 
boolean | 
isPrimefacesVersionDependend()  | 
boolean | 
isView()  | 
static BeanType | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static BeanType[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final BeanType MANAGED_BEAN
public static final BeanType BUSINESS_OBJECT
public static final BeanType DAO
public static final BeanType DAO_IMPL
public static final BeanType VIEW_LIST
public static final BeanType VIEW_DETAIL
public static final BeanType VIEW_FORM_CREATE
public static final BeanType VIEW_MENU
public static final BeanType VIEW_CREATE
public static BeanType[] values()
for (BeanType c : BeanType.values()) System.out.println(c);
public static BeanType 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 getTemplate()
public String getExtension()
public boolean isView()
public boolean isPrimefacesVersionDependend()
public boolean isBootstrapDependend()
Copyright © 2015. All rights reserved.