Package org.apache.sis.image
Enum ImageProcessor.Mode
- All Implemented Interfaces:
Serializable
,Comparable<ImageProcessor.Mode>
,java.lang.constant.Constable
- Enclosing class:
ImageProcessor
Execution modes specifying whether operations can be executed in parallel.
If
SEQUENTIAL
, operations are executed sequentially in the caller thread.
If PARALLEL
, some operations may be parallelized using an arbitrary number of threads.- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionOperations are executed in multi-threaded mode if theRenderedImage
instance is an implementation known to be thread-safe.Operations executed in multi-threaded mode if possible.Operations executed in the caller thread, without parallelization. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic ImageProcessor.Mode
Returns the enum constant of this type with the specified name.static ImageProcessor.Mode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
PARALLEL
Operations executed in multi-threaded mode if possible. This mode can be used if theRenderedImage
instances are thread-safe and provide a concurrent (or very fast) implementation ofRenderedImage.getTile(int, int)
. -
SEQUENTIAL
Operations executed in the caller thread, without parallelization. Sequential operations may be useful for processingRenderedImage
implementations that may not be thread-safe. -
DEFAULT
Operations are executed in multi-threaded mode if theRenderedImage
instance is an implementation known to be thread-safe. All operations on image implementations unknown to Apache SIS are executed in sequential mode.
-
-
Constructor Details
-
Mode
private Mode()
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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 nameNullPointerException
- if the argument is null
-