com.eprosima.xmlschemas.fastrtps_profiles.BitmaskDcl 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.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for bitmaskDcl complex type
.
*
* The following schema fragment specifies the expected content contained within this class.
*
* {@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "bitmaskDcl", propOrder = {
"bitValue"
})
public class BitmaskDcl {
@XmlElement(name = "bit_value")
protected List bitValue;
@XmlAttribute(name = "name", required = true)
@XmlSchemaType(name = "anySimpleType")
protected String name;
@XmlAttribute(name = "bit_bound")
protected Short bitBound;
/**
* Gets the value of the bitValue 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 bitValue property.
*
*
* For example, to add a new item, do as follows:
*
*
* getBitValue().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link BitmaskDcl.BitValue }
*
*
*
* @return
* The value of the bitValue property.
*/
public List getBitValue() {
if (bitValue == null) {
bitValue = new ArrayList<>();
}
return this.bitValue;
}
/**
* 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 bitBound property.
*
* @return
* possible object is
* {@link Short }
*
*/
public Short getBitBound() {
return bitBound;
}
/**
* Sets the value of the bitBound property.
*
* @param value
* allowed object is
* {@link Short }
*
*/
public void setBitBound(Short value) {
this.bitBound = 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 BitValue {
@XmlAttribute(name = "name", required = true)
protected String name;
@XmlAttribute(name = "position")
protected Integer position;
/**
* 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 position property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getPosition() {
return position;
}
/**
* Sets the value of the position property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setPosition(Integer value) {
this.position = value;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy