public static enum TemplateEngineCustomizer.BuiltIn extends Enum<TemplateEngineCustomizer.BuiltIn> implements TemplateEngineCustomizer
TemplateEngineCustomizer.BuiltIn| Enum Constant and Description |
|---|
DO_NOTHING
Default instance.
|
| Modifier and Type | Method and Description |
|---|---|
static TemplateEngineCustomizer.BuiltIn |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TemplateEngineCustomizer.BuiltIn[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfaccept, customize, extractTemplateResolverpublic static final TemplateEngineCustomizer.BuiltIn DO_NOTHING
This customizer instance do nothing.
public static TemplateEngineCustomizer.BuiltIn[] values()
for (TemplateEngineCustomizer.BuiltIn c : TemplateEngineCustomizer.BuiltIn.values()) System.out.println(c);
public static TemplateEngineCustomizer.BuiltIn 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–2020 MyBatis.org. All rights reserved.