Package ome.xml.model.enums
Enum Class PixelType
- All Implemented Interfaces:
Serializable,Comparable<PixelType>,Constable,Enumeration
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionbit mask.complex double-precision floating point.complex single-precision floating point.double-precision floating point.single-precision floating point.16 bit signed integer.32 bit signed integer.8 bit signed integer.16 bit unsigned integer.32 bit unsigned integer.8 bit unsigned integer. -
Method Summary
Modifier and TypeMethodDescriptionstatic PixelTypefromString(String value) getValue()toString()static PixelTypeReturns the enum constant of this class with the specified name.static PixelType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INT8
8 bit signed integer. -
INT16
16 bit signed integer. -
INT32
32 bit signed integer. -
UINT8
8 bit unsigned integer. -
UINT16
16 bit unsigned integer. -
UINT32
32 bit unsigned integer. -
FLOAT
single-precision floating point. -
DOUBLE
double-precision floating point. -
COMPLEXFLOAT
complex single-precision floating point. -
COMPLEXDOUBLE
complex double-precision floating point. -
BIT
bit mask.
-
-
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
-
fromString
- Throws:
EnumerationException
-
getValue
-
toString
-