Package nom.tam.fits.header
Enum IFitsHeader.SOURCE
- java.lang.Object
-
- java.lang.Enum<IFitsHeader.SOURCE>
-
- nom.tam.fits.header.IFitsHeader.SOURCE
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<IFitsHeader.SOURCE>
- Enclosing interface:
- IFitsHeader
public static enum IFitsHeader.SOURCE extends java.lang.Enum<IFitsHeader.SOURCE>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHECKSUM
CXC
ESO
HEASARC
INTEGRAL
integral.MANDATORY
defined mandatory by the fits standard.MaxImDL
NOAO
RESERVED
defined reserved by the fits standard.ROSAT
rosat no link available.SBIG
STScI
UCOLICK
UNKNOWN
developed over time, source long forgotten.
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
url
-
Constructor Summary
Constructors Modifier Constructor Description private
SOURCE(java.lang.String url)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
url()
static IFitsHeader.SOURCE
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IFitsHeader.SOURCE[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHECKSUM
public static final IFitsHeader.SOURCE CHECKSUM
- See Also:
- checksum doc
-
CXC
public static final IFitsHeader.SOURCE CXC
-
ESO
public static final IFitsHeader.SOURCE ESO
-
HEASARC
public static final IFitsHeader.SOURCE HEASARC
-
INTEGRAL
public static final IFitsHeader.SOURCE INTEGRAL
integral.
-
MANDATORY
public static final IFitsHeader.SOURCE MANDATORY
defined mandatory by the fits standard.
-
MaxImDL
public static final IFitsHeader.SOURCE MaxImDL
-
NOAO
public static final IFitsHeader.SOURCE NOAO
-
RESERVED
public static final IFitsHeader.SOURCE RESERVED
defined reserved by the fits standard.
-
ROSAT
public static final IFitsHeader.SOURCE ROSAT
rosat no link available.
-
SBIG
public static final IFitsHeader.SOURCE SBIG
-
STScI
public static final IFitsHeader.SOURCE STScI
-
UCOLICK
public static final IFitsHeader.SOURCE UCOLICK
- See Also:
- http://www.ucolick.org
-
UNKNOWN
public static final IFitsHeader.SOURCE UNKNOWN
developed over time, source long forgotten.
-
-
Method Detail
-
values
public static IFitsHeader.SOURCE[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IFitsHeader.SOURCE c : IFitsHeader.SOURCE.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IFitsHeader.SOURCE valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
url
public java.lang.String url()
-
-