// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2012.07.24 at 11:42:28 PM CEST // package eu.prestoprime.model.ext.qa; import java.io.Serializable; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * <p> * Java class for AudioLLDScalarType complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="AudioLLDScalarType"> * <complexContent> * <extension base="{urn:mpeg:mpeg7:schema:2004}AudioDType"> * <choice> * <element name="Scalar" type="{http://www.w3.org/2001/XMLSchema}float"/> * <element name="SeriesOfScalar" maxOccurs="unbounded"> * <complexType> * <complexContent> * <extension base="{urn:mpeg:mpeg7:schema:2004}SeriesOfScalarType"> * <attribute name="hopSize" type="{urn:mpeg:mpeg7:schema:2004}mediaDurationType" default="PT10N1000F" /> * </extension> * </complexContent> * </complexType> * </element> * </choice> * <attribute name="confidence" type="{urn:mpeg:mpeg7:schema:2004}zeroToOneType" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AudioLLDScalarType", propOrder = { "scalar", "seriesOfScalar" }) @XmlSeeAlso({ HarmonicSpectralCentroidType.class, AudioBPMType.class, HarmonicSpectralVariationType.class, AudioWaveformType.class, HarmonicSpectralSpreadType.class, HarmonicSpectralDeviationType.class, AudioSpectrumSpreadType.class, AudioSpectrumCentroidType.class, TemporalCentroidType.class, LogAttackTimeType.class, AudioPowerType.class, AudioFundamentalFrequencyType.class, SpectralCentroidType.class }) public abstract class AudioLLDScalarType extends AudioDType implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(name = "Scalar") protected Float scalar; @XmlElement(name = "SeriesOfScalar") protected List<AudioLLDScalarType.SeriesOfScalar> seriesOfScalar; @XmlAttribute(name = "confidence") protected Float confidence; /** * Gets the value of the scalar property. * * @return possible object is {@link Float } * */ public Float getScalar() { return scalar; } /** * Sets the value of the scalar property. * * @param value * allowed object is {@link Float } * */ public void setScalar(Float value) { this.scalar = value; } /** * Gets the value of the seriesOfScalar property. * * <p> * This accessor method returns a reference to the live list, not a * snapshot. Therefore any modification you make to the returned list will * be present inside the JAXB object. This is why there is not a * <CODE>set</CODE> method for the seriesOfScalar property. * * <p> * For example, to add a new item, do as follows: * * <pre> * getSeriesOfScalar().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link AudioLLDScalarType.SeriesOfScalar } * * */ public List<AudioLLDScalarType.SeriesOfScalar> getSeriesOfScalar() { if (seriesOfScalar == null) { seriesOfScalar = new ArrayList<AudioLLDScalarType.SeriesOfScalar>(); } return this.seriesOfScalar; } /** * Gets the value of the confidence property. * * @return possible object is {@link Float } * */ public Float getConfidence() { return confidence; } /** * Sets the value of the confidence property. * * @param value * allowed object is {@link Float } * */ public void setConfidence(Float value) { this.confidence = value; } /** * <p> * Java class for anonymous complex type. * * <p> * The following schema fragment specifies the expected content contained * within this class. * * <pre> * <complexType> * <complexContent> * <extension base="{urn:mpeg:mpeg7:schema:2004}SeriesOfScalarType"> * <attribute name="hopSize" type="{urn:mpeg:mpeg7:schema:2004}mediaDurationType" default="PT10N1000F" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class SeriesOfScalar extends SeriesOfScalarType implements Serializable { private final static long serialVersionUID = 1L; @XmlAttribute(name = "hopSize") protected String hopSize; /** * Gets the value of the hopSize property. * * @return possible object is {@link String } * */ public String getHopSize() { if (hopSize == null) { return "PT10N1000F"; } else { return hopSize; } } /** * Sets the value of the hopSize property. * * @param value * allowed object is {@link String } * */ public void setHopSize(String value) { this.hopSize = value; } } }