public enum TemplateKind extends Enum<TemplateKind>
Enum Constant and Description |
---|
CONSTRUCTOR
The template is the fixed constructor template (which can handle many different arguments).
|
PROPERTY
The template is the fixed property template (which can handle many different arguments).
|
TYPED
The template name is the name of the method followed by underscore seperated unqualified type names in parenthesis.
|
UNTYPED
The template name is the name of the method.
|
Modifier and Type | Method and Description |
---|---|
static TemplateKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TemplateKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TemplateKind TYPED
public static final TemplateKind UNTYPED
public static final TemplateKind CONSTRUCTOR
public static final TemplateKind PROPERTY
public static TemplateKind[] values()
for (TemplateKind c : TemplateKind.values()) System.out.println(c);
public static TemplateKind 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
Version 2.0.0 generated on 2014-11-22 at 09:45 - (C) 41concepts Aps. Refer to project homepage valjogen.41concepts.com for more information.