Package net.ivoa.fits.hdu

Examples of net.ivoa.fits.hdu.RandomGroupsHDU


  public static BasicHDU HDUFactory(Header hdr, Data d) throws FitsException {

    if (d instanceof ImageData) {
      return new ImageHDU(hdr, d);
    } else if (d instanceof RandomGroupsData) {
      return new RandomGroupsHDU(hdr, d);
    } else if (d instanceof AsciiTable) {
      return new AsciiTableHDU(hdr, d);
    } else if (d instanceof BinaryTable) {
      return new BinaryTableHDU(hdr, d);
    } else if (d instanceof UndefinedData) {
View Full Code Here

TOP

Related Classes of net.ivoa.fits.hdu.RandomGroupsHDU

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.