com.eprosima.xmlschemas.fastrtps_profiles.BitsetDcl Maven / Gradle / Ivy
package com.eprosima.xmlschemas.fastrtps_profiles;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for bitsetDcl complex type
.
*
* The following schema fragment specifies the expected content contained within this class.
*
* {@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "bitsetDcl", propOrder = {
"bitfield"
})
public class BitsetDcl {
@XmlElement(required = true)
protected List bitfield;
@XmlAttribute(name = "name", required = true)
protected String name;
@XmlAttribute(name = "baseType")
protected String baseType;
/**
* Gets the value of the bitfield 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 set
method for the bitfield property.
*
*
* For example, to add a new item, do as follows:
*
*
* getBitfield().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link BitsetDcl.Bitfield }
*
*
*
* @return
* The value of the bitfield property.
*/
public List getBitfield() {
if (bitfield == null) {
bitfield = new ArrayList<>();
}
return this.bitfield;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the baseType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBaseType() {
return baseType;
}
/**
* Sets the value of the baseType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBaseType(String value) {
this.baseType = value;
}
/**
* Java class for anonymous complex type
.
*
* The following schema fragment specifies the expected content contained within this class.
*
* {@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
public static class Bitfield {
@XmlAttribute(name = "name")
protected String name;
@XmlAttribute(name = "type")
protected IntPrimitiveTypes type;
@XmlAttribute(name = "bit_bound", required = true)
protected short bitBound;
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link IntPrimitiveTypes }
*
*/
public IntPrimitiveTypes getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link IntPrimitiveTypes }
*
*/
public void setType(IntPrimitiveTypes value) {
this.type = value;
}
/**
* Gets the value of the bitBound property.
*
*/
public short getBitBound() {
return bitBound;
}
/**
* Sets the value of the bitBound property.
*
*/
public void setBitBound(short value) {
this.bitBound = value;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy