Class ResetType
- java.lang.Object
-
- org.bidib.jbidibc.decoder.schema.decoderfirmware.ResetType
-
public class ResetType extends Object
Java class for ResetType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ResetType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{http://www.decoderdb.de/schema/commonTypes/1.2}description" maxOccurs="unbounded"/> </sequence> <attribute name="cv" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" /> <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedByte" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected intcvprotected List<DescriptionType>descriptionprotected shortvalue
-
Constructor Summary
Constructors Constructor Description ResetType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object that)intgetCv()Gets the value of the cv property.List<DescriptionType>getDescription()Gets the value of the description property.shortgetValue()Gets the value of the value property.inthashCode()voidsetCv(int value)Sets the value of the cv property.voidsetValue(short value)Sets the value of the value property.StringtoString()ResetTypewithCv(int value)ResetTypewithDescription(Collection<DescriptionType> values)ResetTypewithDescription(DescriptionType... values)ResetTypewithValue(short value)
-
-
-
Field Detail
-
description
protected List<DescriptionType> description
-
cv
protected int cv
-
value
protected short value
-
-
Method Detail
-
getDescription
public List<DescriptionType> getDescription()
Gets the value of the description 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 JAXB object. This is why there is not a
setmethod for the description property.For example, to add a new item, do as follows:
getDescription().add(newItem);Objects of the following type(s) are allowed in the list
DescriptionType
-
getCv
public int getCv()
Gets the value of the cv property.
-
setCv
public void setCv(int value)
Sets the value of the cv property.
-
getValue
public short getValue()
Gets the value of the value property.
-
setValue
public void setValue(short value)
Sets the value of the value property.
-
withDescription
public ResetType withDescription(DescriptionType... values)
-
withDescription
public ResetType withDescription(Collection<DescriptionType> values)
-
withCv
public ResetType withCv(int value)
-
withValue
public ResetType withValue(short value)
-
-