public enum ErrorType extends Enum<ErrorType>
Modifier and Type | Method and Description |
---|---|
static ErrorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ErrorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ErrorType NO_SUCH_TEMPLATE
public static final ErrorType NO_IMPORTED_TEMPLATE
public static final ErrorType NO_SUCH_ATTRIBUTE
public static final ErrorType NO_SUCH_ATTRIBUTE_PASS_THROUGH
public static final ErrorType REF_TO_IMPLICIT_ATTRIBUTE_OUT_OF_SCOPE
public static final ErrorType MISSING_FORMAL_ARGUMENTS
public static final ErrorType NO_SUCH_PROPERTY
public static final ErrorType MAP_ARGUMENT_COUNT_MISMATCH
public static final ErrorType ARGUMENT_COUNT_MISMATCH
public static final ErrorType EXPECTING_STRING
public static final ErrorType WRITER_CTOR_ISSUE
public static final ErrorType CANT_IMPORT
public static final ErrorType SYNTAX_ERROR
public static final ErrorType TEMPLATE_REDEFINITION
public static final ErrorType EMBEDDED_REGION_REDEFINITION
public static final ErrorType REGION_REDEFINITION
public static final ErrorType MAP_REDEFINITION
public static final ErrorType ALIAS_TARGET_UNDEFINED
public static final ErrorType TEMPLATE_REDEFINITION_AS_MAP
public static final ErrorType LEXER_ERROR
public static final ErrorType NO_DEFAULT_VALUE
public static final ErrorType NO_SUCH_FUNCTION
public static final ErrorType NO_SUCH_REGION
public static final ErrorType NO_SUCH_OPTION
public static final ErrorType INVALID_TEMPLATE_NAME
public static final ErrorType ANON_ARGUMENT_MISMATCH
public static final ErrorType REQUIRED_PARAMETER_AFTER_OPTIONAL
public static final ErrorType INTERNAL_ERROR
public static final ErrorType WRITE_IO_ERROR
public static final ErrorType CANT_LOAD_GROUP_FILE
public String message
public static ErrorType[] values()
for (ErrorType c : ErrorType.values()) System.out.println(c);
public static ErrorType 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 © 2024. All rights reserved.