public enum ElementType extends Enum<ElementType>
Used in AnnotatedWith and TypeOf annotation to specify the type of the element should be returned by TypedElementLoader and AnnotatedElementLoader respectively
| Enum Constant and Description |
|---|
BEAN
Specify the element loader shall return the bean instantiated
|
CLASS
Specify the element loader shall return the Class found
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
loadAbstract() |
abstract List<Object> |
transform(List<Class<?>> classes,
Genie genie) |
static ElementType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ElementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ElementType CLASS
public static final ElementType BEAN
public static ElementType[] values()
for (ElementType c : ElementType.values()) System.out.println(c);
public static ElementType 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 boolean loadAbstract()
Copyright © 2017. All Rights Reserved.