org.esa.beam.framework.gpf.internal
Enum OperatorExecutor.ExecutionOrder
java.lang.Object
java.lang.Enum<OperatorExecutor.ExecutionOrder>
org.esa.beam.framework.gpf.internal.OperatorExecutor.ExecutionOrder
- All Implemented Interfaces:
- Serializable, Comparable<OperatorExecutor.ExecutionOrder>
- Enclosing class:
- OperatorExecutor
public static enum OperatorExecutor.ExecutionOrder
- extends Enum<OperatorExecutor.ExecutionOrder>
ROW_COLUMN_BAND
public static final OperatorExecutor.ExecutionOrder ROW_COLUMN_BAND
ROW_BAND_COLUMN
public static final OperatorExecutor.ExecutionOrder ROW_BAND_COLUMN
BAND_ROW_COLUMN
public static final OperatorExecutor.ExecutionOrder BAND_ROW_COLUMN
- Minimize disk seeks if following conditions are met:
1. Bands can be computed independently of each other
2. I/O-bound processing (time to compute band pixels will less than
time for I/O).
values
public static OperatorExecutor.ExecutionOrder[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (OperatorExecutor.ExecutionOrder c : OperatorExecutor.ExecutionOrder.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static OperatorExecutor.ExecutionOrder valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
Copyright © 2002-2012 Brockmann Consult GmbH. All Rights Reserved.