public static enum Symbol.Type extends Enum<Symbol.Type>
Enum Constant and Description |
---|
DEST_IMAGE
Destination image.
|
LIST
A list variable.
|
LOOP_VAR
A foreach loop variable.
|
SCALAR
General scalar user variable.
|
SOURCE_IMAGE
Source image.
|
UNKNOWN
A placeholder type used by the compiler.
|
Modifier and Type | Method and Description |
---|---|
static Symbol.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Symbol.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Symbol.Type SCALAR
public static final Symbol.Type LOOP_VAR
public static final Symbol.Type LIST
public static final Symbol.Type SOURCE_IMAGE
public static final Symbol.Type DEST_IMAGE
public static final Symbol.Type UNKNOWN
public static Symbol.Type[] values()
for (Symbol.Type c : Symbol.Type.values()) System.out.println(c);
public static Symbol.Type 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.