Package gov.nasa.arc.pds.xml.generated
Class ByteStream
- java.lang.Object
- 
- gov.nasa.arc.pds.xml.generated.ByteStream
 
- 
- Direct Known Subclasses:
- Array,- EncodedByteStream,- ParsableByteStream,- TableBase
 
 public class ByteStream extends java.lang.ObjectThe Byte Stream class defines a stream of bytes.Java class for Byte_Stream complex type .The following schema fragment specifies the expected content contained within this class. <complexType name="Byte_Stream"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="name" type="{http://pds.nasa.gov/pds4/pds/v1}name" minOccurs="0"/> <element name="local_identifier" type="{http://pds.nasa.gov/pds4/pds/v1}local_identifier" minOccurs="0"/> <element name="md5_checksum" type="{http://pds.nasa.gov/pds4/pds/v1}md5_checksum" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
- 
- 
Field SummaryFields Modifier and Type Field Description protected java.lang.StringlocalIdentifierprotected java.lang.Stringmd5Checksumprotected java.lang.Stringname
 - 
Constructor SummaryConstructors Constructor Description ByteStream()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetLocalIdentifier()Gets the value of the localIdentifier property.java.lang.StringgetMd5Checksum()Gets the value of the md5Checksum property.java.lang.StringgetName()Gets the value of the name property.voidsetLocalIdentifier(java.lang.String value)Sets the value of the localIdentifier property.voidsetMd5Checksum(java.lang.String value)Sets the value of the md5Checksum property.voidsetName(java.lang.String value)Sets the value of the name property.
 
- 
- 
- 
Method Detail- 
getNamepublic java.lang.String getName() Gets the value of the name property.- Returns:
- possible object is
     String
 
 - 
setNamepublic void setName(java.lang.String value) Sets the value of the name property.- Parameters:
- value- allowed object is- String
 
 - 
getLocalIdentifierpublic java.lang.String getLocalIdentifier() Gets the value of the localIdentifier property.- Returns:
- possible object is
     String
 
 - 
setLocalIdentifierpublic void setLocalIdentifier(java.lang.String value) Sets the value of the localIdentifier property.- Parameters:
- value- allowed object is- String
 
 - 
getMd5Checksumpublic java.lang.String getMd5Checksum() Gets the value of the md5Checksum property.- Returns:
- possible object is
     String
 
 - 
setMd5Checksumpublic void setMd5Checksum(java.lang.String value) Sets the value of the md5Checksum property.- Parameters:
- value- allowed object is- String
 
 
- 
 
-