public class MixtureModelType extends Object
Java class for mixtureModelType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="mixtureModelType">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="point" maxOccurs="unbounded" minOccurs="0">
<complexType>
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<attribute name="value" type="{http://www.w3.org/2001/XMLSchema}float" />
<attribute name="pos_dens" type="{http://www.w3.org/2001/XMLSchema}float" />
<attribute name="neg_dens" type="{http://www.w3.org/2001/XMLSchema}float" />
<attribute name="neg_obs_dens" type="{http://www.w3.org/2001/XMLSchema}float" />
<attribute name="pos_obs_dens" type="{http://www.w3.org/2001/XMLSchema}float" />
</restriction>
</complexContent>
</complexType>
</element>
</sequence>
<attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="pos_bandwidth" use="required" type="{http://www.w3.org/2001/XMLSchema}float" />
<attribute name="neg_bandwidth" use="required" type="{http://www.w3.org/2001/XMLSchema}float" />
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected String |
name |
protected float |
negBandwidth |
protected List<MixtureModelPoint> |
point |
protected float |
posBandwidth |
| Constructor and Description |
|---|
MixtureModelType() |
| Modifier and Type | Method and Description |
|---|---|
String |
getName()
Gets the value of the name property.
|
float |
getNegBandwidth()
Gets the value of the negBandwidth property.
|
List<MixtureModelPoint> |
getPoint()
Gets the value of the point property.
|
float |
getPosBandwidth()
Gets the value of the posBandwidth property.
|
void |
setName(String value)
Sets the value of the name property.
|
void |
setNegBandwidth(float value)
Sets the value of the negBandwidth property.
|
void |
setPosBandwidth(float value)
Sets the value of the posBandwidth property.
|
protected List<MixtureModelPoint> point
protected String name
protected float posBandwidth
protected float negBandwidth
public List<MixtureModelPoint> getPoint()
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 set method for the point property.
For example, to add a new item, do as follows:
getPoint().add(newItem);
Objects of the following type(s) are allowed in the list
MixtureModelPoint
public String getName()
Stringpublic void setName(String value)
value - allowed object is
Stringpublic float getPosBandwidth()
public void setPosBandwidth(float value)
public float getNegBandwidth()
public void setNegBandwidth(float value)
Copyright © 2017. All rights reserved.