org.esa.beam.framework.gpf.internal
Enum OperatorExecutor.ExecutionOrder

java.lang.Object
  extended by java.lang.Enum<OperatorExecutor.ExecutionOrder>
      extended by 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>


Enum Constant Summary
BAND_ROW_COLUMN
          Minimize disk seeks if following conditions are met:
1.
ROW_BAND_COLUMN
           
ROW_COLUMN_BAND
           
 
Method Summary
static OperatorExecutor.ExecutionOrder valueOf(String name)
          Returns the enum constant of this type with the specified name.
static OperatorExecutor.ExecutionOrder[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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).

Method Detail

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.