public enum LexerInjectionStrategy extends Enum<LexerInjectionStrategy>
Enum Constant and Description |
---|
add
Adds value into result's property, which has to be a Collection.
|
other
Injection is handled by lexer.
|
set
Sets value into result's property.
|
Modifier and Type | Method and Description |
---|---|
static LexerInjectionStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LexerInjectionStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LexerInjectionStrategy set
public static final LexerInjectionStrategy add
public static final LexerInjectionStrategy other
public static LexerInjectionStrategy[] values()
for (LexerInjectionStrategy c : LexerInjectionStrategy.values()) System.out.println(c);
public static LexerInjectionStrategy 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 null