Class Metal
Java class for Metal complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Metal"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="material" type="{http://www.fpml.org/FpML-5/confirmation}Material"/> <sequence> <element name="shape" type="{http://www.fpml.org/FpML-5/confirmation}CommodityMetalShape" maxOccurs="unbounded"/> </sequence> <sequence> <element name="brand" type="{http://www.fpml.org/FpML-5/confirmation}CommodityMetalBrand" maxOccurs="unbounded" minOccurs="0"/> </sequence> <sequence> <element name="grade" type="{http://www.fpml.org/FpML-5/confirmation}CommodityMetalGrade" maxOccurs="unbounded"/> </sequence> </sequence> </restriction> </complexContent> </complexType>
-
Field Summary
Modifier and TypeFieldDescriptionprotected List
<CommodityMetalBrand> protected List
<CommodityMetalGrade> protected Material
protected List
<CommodityMetalShape> -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetBrand()
Gets the value of the brand property.getGrade()
Gets the value of the grade property.Gets the value of the material property.getShape()
Gets the value of the shape property.void
setMaterial
(Material value) Sets the value of the material property.
-
Field Details
-
material
-
shape
-
brand
-
grade
-
-
Constructor Details
-
Metal
public Metal()
-
-
Method Details
-
getMaterial
-
setMaterial
-
getShape
Gets the value of the shape property.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 Jakarta XML Binding object. This is why there is not a
set
method for the shape property.For example, to add a new item, do as follows:
getShape().add(newItem);
Objects of the following type(s) are allowed in the list
CommodityMetalShape
-
getBrand
Gets the value of the brand property.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 Jakarta XML Binding object. This is why there is not a
set
method for the brand property.For example, to add a new item, do as follows:
getBrand().add(newItem);
Objects of the following type(s) are allowed in the list
CommodityMetalBrand
-
getGrade
Gets the value of the grade property.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 Jakarta XML Binding object. This is why there is not a
set
method for the grade property.For example, to add a new item, do as follows:
getGrade().add(newItem);
Objects of the following type(s) are allowed in the list
CommodityMetalGrade
-