org.jcamp.spectrum.IDataArray1D Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcamp-dx Show documentation
Show all versions of jcamp-dx Show documentation
The JCAMP-DX project is the reference implemention of the IUPAC JCAMP-DX spectroscopy data standard.
The newest version!
package org.jcamp.spectrum;
import java.io.Serializable;
import org.jcamp.math.IArray1D;
import org.jcamp.units.IMeasurable;
/**
* 1D data arrays extended by a unit and label.
*
* @author Thomas Weber
*/
public interface IDataArray1D
extends IArray1D, IMeasurable, Cloneable, Serializable {
/**
* sets data label
*
* @param label java.lang.String
*/
void setLabel(String label);
public Object clone();
/**
* get data label.
*
* @return java.lang.String
*/
String getLabel();
}