Package nom.tam.fits.header
Class FitsHeaderImpl
java.lang.Object
nom.tam.fits.header.FitsKey
nom.tam.fits.header.FitsHeaderImpl
- All Implemented Interfaces:
Serializable
,IFitsHeader
Deprecated.
The old concrete implementation of standardized FITS keywords, with a very
unintuitive class name.
- Author:
- ritchie
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface nom.tam.fits.header.IFitsHeader
IFitsHeader.HDU, IFitsHeader.SOURCE, IFitsHeader.VALUE
-
Field Summary
Fields inherited from interface nom.tam.fits.header.IFitsHeader
MAX_INDEX
-
Constructor Summary
ConstructorDescriptionFitsHeaderImpl
(String headerName, IFitsHeader.SOURCE status, IFitsHeader.HDU hdu, IFitsHeader.VALUE valueType, String comment) Deprecated.Creates a new standardized FITS keyword with the specific usage constraints -
Method Summary
Methods inherited from class nom.tam.fits.header.FitsKey
comment, hdu, impl, isCommentStyleKey, key, status, valueType
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface nom.tam.fits.header.IFitsHeader
extractIndices, n
-
Constructor Details
-
FitsHeaderImpl
public FitsHeaderImpl(String headerName, IFitsHeader.SOURCE status, IFitsHeader.HDU hdu, IFitsHeader.VALUE valueType, String comment) throws IllegalArgumentException Deprecated.Creates a new standardized FITS keyword with the specific usage constraints- Parameters:
headerName
- The keyword as it will appear in the FITS headers, usually a string with up to 8 characters, containing uppper case letters (A-Z), digits (0-9), and/or underscore (_
) or hyphen (-
) characters for standard FITS keywords.status
- The convention that defines this keywordhdu
- the type of HDU this keyword may appear invalueType
- the type of value that may be associated with this keywordcomment
- the standard comment to include with this keyword- Throws:
IllegalArgumentException
- if the keyword name is invalid.
-
FitsKey
class instead. This class is provided for compatibility with prior releases.