Package gov.nasa.arc.pds.xml.generated
Class PackedDataFields
- java.lang.Object
- 
- gov.nasa.arc.pds.xml.generated.PackedDataFields
 
- 
 public class PackedDataFields extends java.lang.ObjectThe Packed_Data_Fields class contains field definitions for extracting packed data from the associated byte string field.Java class for Packed_Data_Fields complex type .The following schema fragment specifies the expected content contained within this class. <complexType name="Packed_Data_Fields"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="bit_fields" type="{http://pds.nasa.gov/pds4/pds/v1}bit_fields"/> <element name="description" type="{http://pds.nasa.gov/pds4/pds/v1}description" minOccurs="0"/> <element name="Field_Bit" type="{http://pds.nasa.gov/pds4/pds/v1}Field_Bit" maxOccurs="unbounded"/> </sequence> </restriction> </complexContent> </complexType>
- 
- 
Field SummaryFields Modifier and Type Field Description protected java.math.BigIntegerbitFieldsprotected java.lang.Stringdescriptionprotected java.util.List<FieldBit>fieldBits
 - 
Constructor SummaryConstructors Constructor Description PackedDataFields()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.math.BigIntegergetBitFields()Gets the value of the bitFields property.java.lang.StringgetDescription()Gets the value of the description property.java.util.List<FieldBit>getFieldBits()Gets the value of the fieldBits property.voidsetBitFields(java.math.BigInteger value)Sets the value of the bitFields property.voidsetDescription(java.lang.String value)Sets the value of the description property.
 
- 
- 
- 
Field Detail- 
bitFieldsprotected java.math.BigInteger bitFields 
 - 
descriptionprotected java.lang.String description 
 - 
fieldBitsprotected java.util.List<FieldBit> fieldBits 
 
- 
 - 
Method Detail- 
getBitFieldspublic java.math.BigInteger getBitFields() Gets the value of the bitFields property.- Returns:
- possible object is
     BigInteger
 
 - 
setBitFieldspublic void setBitFields(java.math.BigInteger value) Sets the value of the bitFields property.- Parameters:
- value- allowed object is- BigInteger
 
 - 
getDescriptionpublic java.lang.String getDescription() Gets the value of the description property.- Returns:
- possible object is
     String
 
 - 
setDescriptionpublic void setDescription(java.lang.String value) Sets the value of the description property.- Parameters:
- value- allowed object is- String
 
 - 
getFieldBitspublic java.util.List<FieldBit> getFieldBits() Gets the value of the fieldBits 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 fieldBits property.For example, to add a new item, do as follows: getFieldBits().add(newItem); Objects of the following type(s) are allowed in the list FieldBit- Returns:
- The value of the fieldBits property.
 
 
- 
 
-