Class Spectrum
- java.lang.Object
-
- nz.ac.waikato.adams.webservice.spectral.put.Spectrum
-
public class Spectrum extends Object
Java class for Spectrum complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Spectrum"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="waves" type="{http://put.spectral.webservice.adams.waikato.ac.nz/}Waves"/> <element name="props" type="{http://put.spectral.webservice.adams.waikato.ac.nz/}Properties" minOccurs="0"/> </sequence> <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="format" type="{http://www.w3.org/2001/XMLSchema}string" default="nir" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description Spectrum()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getFormat()
Gets the value of the format property.String
getId()
Gets the value of the id property.Properties
getProps()
Gets the value of the props property.Waves
getWaves()
Gets the value of the waves property.void
setFormat(String value)
Sets the value of the format property.void
setId(String value)
Sets the value of the id property.void
setProps(Properties value)
Sets the value of the props property.void
setWaves(Waves value)
Sets the value of the waves property.
-
-
-
Field Detail
-
waves
protected Waves waves
-
props
protected Properties props
-
id
protected String id
-
format
protected String format
-
-
Method Detail
-
getWaves
public Waves getWaves()
Gets the value of the waves property.- Returns:
- possible object is
Waves
-
setWaves
public void setWaves(Waves value)
Sets the value of the waves property.- Parameters:
value
- allowed object isWaves
-
getProps
public Properties getProps()
Gets the value of the props property.- Returns:
- possible object is
Properties
-
setProps
public void setProps(Properties value)
Sets the value of the props property.- Parameters:
value
- allowed object isProperties
-
setId
public void setId(String value)
Sets the value of the id property.- Parameters:
value
- allowed object isString
-
getFormat
public String getFormat()
Gets the value of the format property.- Returns:
- possible object is
String
-
-