Class DimensionsType
- java.lang.Object
-
- org.bidib.jbidibc.decoder.schema.decoder.DimensionsType
-
public class DimensionsType extends Object
Java class for DimensionsType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="DimensionsType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="length" type="{http://www.w3.org/2001/XMLSchema}decimal" /> <attribute name="width" type="{http://www.w3.org/2001/XMLSchema}decimal" /> <attribute name="height" type="{http://www.w3.org/2001/XMLSchema}decimal" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected BigDecimalheightprotected BigDecimallengthprotected BigDecimalwidth
-
Constructor Summary
Constructors Constructor Description DimensionsType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object that)BigDecimalgetHeight()Gets the value of the height property.BigDecimalgetLength()Gets the value of the length property.BigDecimalgetWidth()Gets the value of the width property.inthashCode()voidsetHeight(BigDecimal value)Sets the value of the height property.voidsetLength(BigDecimal value)Sets the value of the length property.voidsetWidth(BigDecimal value)Sets the value of the width property.StringtoString()DimensionsTypewithHeight(BigDecimal value)DimensionsTypewithLength(BigDecimal value)DimensionsTypewithWidth(BigDecimal value)
-
-
-
Field Detail
-
length
protected BigDecimal length
-
width
protected BigDecimal width
-
height
protected BigDecimal height
-
-
Method Detail
-
getLength
public BigDecimal getLength()
Gets the value of the length property.- Returns:
- possible object is
BigDecimal
-
setLength
public void setLength(BigDecimal value)
Sets the value of the length property.- Parameters:
value- allowed object isBigDecimal
-
getWidth
public BigDecimal getWidth()
Gets the value of the width property.- Returns:
- possible object is
BigDecimal
-
setWidth
public void setWidth(BigDecimal value)
Sets the value of the width property.- Parameters:
value- allowed object isBigDecimal
-
getHeight
public BigDecimal getHeight()
Gets the value of the height property.- Returns:
- possible object is
BigDecimal
-
setHeight
public void setHeight(BigDecimal value)
Sets the value of the height property.- Parameters:
value- allowed object isBigDecimal
-
withLength
public DimensionsType withLength(BigDecimal value)
-
withWidth
public DimensionsType withWidth(BigDecimal value)
-
withHeight
public DimensionsType withHeight(BigDecimal value)
-
-