Package qupath.lib.images.writers.ome
Enum Class OMEPyramidWriter.ChannelExportType
java.lang.Object
java.lang.Enum<OMEPyramidWriter.ChannelExportType>
qupath.lib.images.writers.ome.OMEPyramidWriter.ChannelExportType
- All Implemented Interfaces:
Serializable
,Comparable<OMEPyramidWriter.ChannelExportType>
,java.lang.constant.Constable
- Enclosing class:
- OMEPyramidWriter
public static enum OMEPyramidWriter.ChannelExportType
extends Enum<OMEPyramidWriter.ChannelExportType>
Enum representing different ways in which channels may be written to a file.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionLeave it up to the writer to choose the appropriate method.Channels are stored as separate images (this is not yet supported!).Channels are interleaved ('PLANARCONFIG_CONTIG').Channels are stored as separate image planes ('PLANARCONFIG_SEPARATE'). -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static OMEPyramidWriter.ChannelExportType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DEFAULT
Leave it up to the writer to choose the appropriate method. -
INTERLEAVED
Channels are interleaved ('PLANARCONFIG_CONTIG'). -
PLANAR
Channels are stored as separate image planes ('PLANARCONFIG_SEPARATE'). -
IMAGES
Channels are stored as separate images (this is not yet supported!).
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-