Package gov.nasa.arc.pds.xml.generated
Class Field
java.lang.Object
gov.nasa.arc.pds.xml.generated.Field
- Direct Known Subclasses:
- FieldBinary,- FieldBit,- FieldCharacter,- FieldDelimited
public class Field extends Object
The Field class defines a field of a record and
         is the parent class of all specific field classes.The Field
         class defines a field of a record or a field of a group and is
         the parent class of all specific field
         classes.
 
 
Java class for Field complex type.
The following schema fragment specifies the expected content contained within this class.
 <complexType name="Field">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="name" type="{http://pds.nasa.gov/pds4/pds/v1}name"/>
         <element name="field_number" type="{http://pds.nasa.gov/pds4/pds/v1}field_number" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 - 
Field SummaryFields Modifier and Type Field Description protected BigIntegerfieldNumberprotected Stringname
- 
Constructor SummaryConstructors Constructor Description Field()
- 
Method SummaryModifier and Type Method Description BigIntegergetFieldNumber()Gets the value of the fieldNumber property.StringgetName()Gets the value of the name property.voidsetFieldNumber(BigInteger value)Sets the value of the fieldNumber property.voidsetName(String value)Sets the value of the name property.
- 
Field Details- 
name
- 
fieldNumber
 
- 
- 
Constructor Details- 
Fieldpublic Field()
 
- 
- 
Method Details- 
getNameGets the value of the name property.- Returns:
- possible object is
     String
 
- 
setNameSets the value of the name property.- Parameters:
- value- allowed object is- String
 
- 
getFieldNumberGets the value of the fieldNumber property.- Returns:
- possible object is
     BigInteger
 
- 
setFieldNumberSets the value of the fieldNumber property.- Parameters:
- value- allowed object is- BigInteger
 
 
-