Uses of Enum
nom.tam.fits.header.Bitpix

Packages that use Bitpix
Package
Description
The core classes of nom-tam-fits.
Standardized FITS header keywords.
  • Uses of Bitpix in nom.tam.fits

    Methods in nom.tam.fits that return Bitpix
    Modifier and Type
    Method
    Description
    BasicHDU.getBitpix()
    Return the Bitpix enum type for this HDU.
    final Bitpix
    UndefinedData.getBitpix()
    Returns the FITS element type as a Bitpux value.
    Methods in nom.tam.fits with parameters of type Bitpix
    Modifier and Type
    Method
    Description
    void
    Header.setBitpix(Bitpix bitpix)
    Deprecated.
    (for internall use) Visibility will be reduced to the package level in the future.
  • Uses of Bitpix in nom.tam.fits.header

    Methods in nom.tam.fits.header that return Bitpix
    Modifier and Type
    Method
    Description
    static Bitpix
    Bitpix.forArrayID(char id)
    Returns the standard BITPIX object for the given Java array ID.
    static Bitpix
    Bitpix.forNumberType(Class<? extends Number> dataType)
    Returns the standard BITPIX object for a number type.
    static Bitpix
    Bitpix.forPrimitiveType(Class<?> dataType)
    Returns the standard BITPIX object for a primitive type.
    static Bitpix
    Bitpix.forValue(int ival)
    Returns the standard BITPIX enum value for a given integer value, such as 8, 16, 32, 64, -32, or -64.
    static Bitpix
    Bitpix.forValue(int ival, boolean allowRepair)
    Returns the standard BITPIX enum value for a given integer value, such as 8, 16, 32, 64, -32, or -64.
    static Bitpix
    Bitpix.fromHeader(Header h)
    Returns the standard BITPIX object based on the value assigned to the BITPIX keyword in the header
    static Bitpix
    Bitpix.fromHeader(Header h, boolean allowRepair)
    Returns the standard BITPIX object based on the value assigned to the BITPIX keyword in the header
    static Bitpix
    Bitpix.valueOf(String name)
    Returns the enum constant of this type with the specified name.
    static Bitpix[]
    Bitpix.values()
    Returns an array containing the constants of this enum type, in the order they are declared.