public enum Errors extends Enum<Errors>
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static Errors |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Errors[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Errors ASSIGNMENT_LIST_TO_SCALAR
public static final Errors ASSIGNMENT_SCALAR_TO_LIST
public static final Errors ASSIGNMENT_TO_CONSTANT
public static final Errors ASSIGNMENT_TO_LOOP_VAR
public static final Errors CON_CONDITION_MUST_BE_SCALAR
public static final Errors CON_RESULTS_MUST_BE_SAME_TYPE
public static final Errors DUPLICATE_VAR_DECL
public static final Errors EXPECTED_SCALAR
public static final Errors IMAGE_VAR_INIT_BLOCK
public static final Errors INVALID_ASSIGNMENT_OP_WITH_DEST_IMAGE
public static final Errors INVALID_BINARY_EXPRESSION
public static final Errors LIST_AS_TERNARY_CONDITION
public static final Errors LIST_IN_RANGE
public static final Errors NOT_OP_IS_INVALID_FOR_LIST
public static final Errors POW_EXPR_WITH_LIST_EXPONENT
public static final Errors INVALID_OPERATION_FOR_LIST
public static final Errors READING_FROM_DEST_IMAGE
public static final Errors UNKNOWN_FUNCTION
public static final Errors VAR_UNDEFINED
public static final Errors WRITING_TO_SOURCE_IMAGE
public static final Errors UNDEFINED_SOURCE
public static final Errors UNINIT_VAR
public static final Errors IMAGE_POS_ON_NON_IMAGE
public static Errors[] values()
for (Errors c : Errors.values()) System.out.println(c);
public static Errors 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 © 2006–2018 GeoSolutions. All rights reserved.