Uses of Class
nom.tam.util.type.ElementType
Package
Description
Standardized FITS header keywords.
(for internal use) FITS 'primitive' element types.
-
Uses of ElementType in nom.tam.fits.header
Modifier and TypeMethodDescriptionfinal ElementType<?>
Bitpix.getElementType()
Returns the FITS element type corresponding to this bitpix value -
Uses of ElementType in nom.tam.util.type
Modifier and TypeClassDescriptionclass
PrimitiveType<B extends Buffer>
Deprecated.class
PrimitiveTypeBase<B extends Buffer>
Deprecated.UseElementType
instead.Modifier and TypeFieldDescriptionstatic final ElementType<Buffer>
ElementType.BOOLEAN
The FITS representation of a boolean value in binary tablesstatic final ElementType<Buffer>
PrimitiveTypes.BOOLEAN
Deprecated.UseBOOLEAN
insteadstatic final ElementType<ByteBuffer>
ElementType.BYTE
The FITS representation of a single (signed) byte value in images and binary tablesstatic final ElementType<ByteBuffer>
PrimitiveTypes.BYTE
Deprecated.UseBYTE
insteadstatic final ElementType<ByteBuffer>
ElementType.CHAR
The FITS representation of a Javachar
value in binary tablesstatic final ElementType<ByteBuffer>
PrimitiveTypes.CHAR
Deprecated.UseCHAR
insteadstatic final ElementType<DoubleBuffer>
ElementType.DOUBLE
The FITS representation of a 64-bit double precison floating-point value in images and binary tablesstatic final ElementType<DoubleBuffer>
PrimitiveTypes.DOUBLE
Deprecated.UseDOUBLE
insteadstatic final ElementType<FloatBuffer>
ElementType.FLOAT
The FITS representation of a 32-bit single precison floating-point value in images and binary tablesstatic final ElementType<FloatBuffer>
PrimitiveTypes.FLOAT
Deprecated.UseFLOAT
insteadstatic final ElementType<IntBuffer>
ElementType.INT
The FITS representation of a 32-bit sined integer value in images and binary tablesstatic final ElementType<IntBuffer>
PrimitiveTypes.INT
Deprecated.UseINT
insteadstatic final ElementType<LongBuffer>
ElementType.LONG
The FITS representation of a 64-bit sined integer value in images and binary tablesstatic final ElementType<LongBuffer>
PrimitiveTypes.LONG
Deprecated.UseLONG
insteadstatic final ElementType<ShortBuffer>
ElementType.SHORT
The FITS representation of a 16-bit sined integer value in images and binary tablesstatic final ElementType<ShortBuffer>
PrimitiveTypes.SHORT
Deprecated.UseSHORT
insteadstatic final ElementType<Buffer>
ElementType.STRING
The FITS representation of an ASCII string in binary tablesstatic final ElementType<Buffer>
PrimitiveTypes.STRING
Deprecated.UseSTRING
insteadstatic final ElementType<Buffer>
ElementType.UNKNOWN
Anything else for which we do not have a supported FITS representationstatic final ElementType<Buffer>
PrimitiveTypes.UNKNOWN
Deprecated.UseUNKNOWN
insteadModifier and TypeMethodDescriptionstatic ElementType<Buffer>
ElementType.forBitpix
(int bitPix) Returns the FITS element type that matches the specified BITPIX value exactly.static <B extends Buffer>
ElementType<B>ElementType.forBuffer
(B b) Returns the FITS element type that can transact with the specified buffer type directly.static <B extends Buffer>
ElementType<B>Returns the FITS element type for a given Java typestatic ElementType<Buffer>
ElementType.forDataID
(char type) Returns the Fits element type for a given Java array type letter.static ElementType<Buffer>
ElementType.forNearestBitpix
(int bitPix) Returns the FITS element type that is nearest to the specified BITPIX value.static ElementType<Buffer>
PrimitiveTypeHandler.nearestValueOf
(int bitPix) Deprecated.UseforNearestBitpix(int)
instead.static ElementType<Buffer>
PrimitiveTypeHandler.valueOf
(char type) Deprecated.UseforDataID(char)
instead.static ElementType<Buffer>
PrimitiveTypeHandler.valueOf
(int bitPix) Deprecated.UseforBitpix(int)
instead.static <B extends Buffer>
ElementType<B>Deprecated.UseforClass(Class)
instead.Modifier and TypeMethodDescriptionboolean
ElementType.is
(ElementType<? extends Buffer> other) Checks if this element type is the same as another.
ElementType
instead.