Class ProtocolsType
- java.lang.Object
-
- org.bidib.jbidibc.decoder.schema.decoderdetection.ProtocolsType
-
public class ProtocolsType extends Object
<p>Java class for ProtocolsType complex type. <p>The following schema fragment specifies the expected content contained within this class. <pre> <complexType name="ProtocolsType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="protocol" type="{http://www.decoderdb.de/schema/decoderDetection/1.1}DecoderDetectionProtocolType" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType> </pre>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<DecoderDetectionProtocolType>protocol
-
Constructor Summary
Constructors Constructor Description ProtocolsType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object that)List<DecoderDetectionProtocolType>getProtocol()Gets the value of the protocol property.inthashCode()StringtoString()ProtocolsTypewithProtocol(Collection<DecoderDetectionProtocolType> values)ProtocolsTypewithProtocol(DecoderDetectionProtocolType... values)
-
-
-
Field Detail
-
protocol
protected List<DecoderDetectionProtocolType> protocol
-
-
Method Detail
-
getProtocol
public List<DecoderDetectionProtocolType> getProtocol()
Gets the value of the protocol property. <p> 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 <CODE>set</CODE> method for the protocol property. <p> For example, to add a new item, do as follows: <pre> getProtocol().add(newItem); </pre> <p> Objects of the following type(s) are allowed in the listDecoderDetectionProtocolType
-
withProtocol
public ProtocolsType withProtocol(DecoderDetectionProtocolType... values)
-
withProtocol
public ProtocolsType withProtocol(Collection<DecoderDetectionProtocolType> values)
-
-