public enum MustacheProblem extends Enum<MustacheProblem> implements ProblemCode
Modifier and Type | Method and Description |
---|---|
static MustacheProblem |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MustacheProblem[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MustacheProblem COMPILE_INVALID_DELIMITERS
public static final MustacheProblem COMPILE_INVALID_TAG
public static final MustacheProblem COMPILE_INVALID_SECTION_END
public static final MustacheProblem COMPILE_INVALID_TEMPLATE
public static final MustacheProblem COMPILE_IO_ERROR
public static final MustacheProblem COMPILE_HELPER_VALIDATION_FAILURE
public static final MustacheProblem COMPILE_NESTED_TEMPLATE_ERROR
public static final MustacheProblem TEMPLATE_NOT_READY
public static final MustacheProblem TEMPLATE_MODIFICATION_NOT_ALLOWED
public static final MustacheProblem TEMPLATE_LOCATOR_INVALID_CONFIGURATION
public static final MustacheProblem TEMPLATE_LOADING_ERROR
public static final MustacheProblem RENDER_INVALID_PARTIAL_KEY
public static final MustacheProblem RENDER_INVALID_EXTEND_KEY
public static final MustacheProblem RENDER_IO_ERROR
public static final MustacheProblem RENDER_REFLECT_INVOCATION_ERROR
public static final MustacheProblem RENDER_NO_VALUE
public static final MustacheProblem RENDER_TEMPLATE_INVOCATION_RECURSIVE_LIMIT_EXCEEDED
public static final MustacheProblem RENDER_HELPER_INVALID_OPTIONS
public static final MustacheProblem RENDER_HELPER_INVALID_POP_OPERATION
public static final MustacheProblem RENDER_GENERIC_ERROR
public static final MustacheProblem RENDER_ASYNC_PROCESSING_ERROR
public static final MustacheProblem CONFIG_PROPERTY_INVALID_VALUE
public static MustacheProblem[] values()
for (MustacheProblem c : MustacheProblem.values()) System.out.println(c);
public static MustacheProblem 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 © 2017. All rights reserved.