public class NeuralFunction extends Object
Java class for NeuralFunction complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="NeuralFunction">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="Type" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="Parameters" type="{http://uk.co.moons.pct/schema/Layers}Parameters" maxOccurs="unbounded" minOccurs="0"/>
<element name="Links" type="{http://uk.co.moons.pct/schema/Layers}Link" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected List<Link> |
links |
protected List<Parameters> |
parameters |
protected String |
type |
| Constructor and Description |
|---|
NeuralFunction() |
| Modifier and Type | Method and Description |
|---|---|
List<Link> |
getLinks()
Gets the value of the links property.
|
List<Parameters> |
getParameters()
Gets the value of the parameters property.
|
String |
getType()
Gets the value of the type property.
|
void |
setType(String value)
Sets the value of the type property.
|
protected String type
protected List<Parameters> parameters
public String getType()
Stringpublic void setType(String value)
value - allowed object is
Stringpublic List<Parameters> getParameters()
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 parameters property.
For example, to add a new item, do as follows:
getParameters().add(newItem);
Objects of the following type(s) are allowed in the list
Parameters
public List<Link> getLinks()
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 links property.
For example, to add a new item, do as follows:
getLinks().add(newItem);
Objects of the following type(s) are allowed in the list
Link
Copyright © 2017. All rights reserved.