Examples of asFloatBuffer()


Examples of java.nio.MappedByteBuffer.asFloatBuffer()

    public FITSDataFloat(FITSImage fitsImage) {
        super(fitsImage);

        MappedByteBuffer byteBuffer = fitsImage.getByteBuffer();
        if (byteBuffer != null) {
            _mappedBuffer = byteBuffer.asFloatBuffer();
        }
    }


    /**
 
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.