All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jcamp.spectrum.IDataArray1D Maven / Gradle / Ivy

Go to download

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy