Uses of Class
org.neociclo.odetteftp.protocol.RecordFormat

Packages that use RecordFormat
org.neociclo.odetteftp.protocol   
org.neociclo.odetteftp.protocol.data   
org.neociclo.odetteftp.protocol.v13   
org.neociclo.odetteftp.protocol.v14   
org.neociclo.odetteftp.protocol.v20   
org.neociclo.odetteftp.util   
 

Uses of RecordFormat in org.neociclo.odetteftp.protocol
 

Methods in org.neociclo.odetteftp.protocol that return RecordFormat
 RecordFormat VirtualFile.getRecordFormat()
           
 RecordFormat DefaultVirtualFile.getRecordFormat()
           
static RecordFormat RecordFormat.parse(String code)
          Convenient method for parsing the proper RecordFormat enum given a code character.
static RecordFormat RecordFormat.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static RecordFormat[] RecordFormat.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.neociclo.odetteftp.protocol with parameters of type RecordFormat
 void DefaultVirtualFile.setRecordFormat(RecordFormat recordFormat)
           
 

Uses of RecordFormat in org.neociclo.odetteftp.protocol.data
 

Methods in org.neociclo.odetteftp.protocol.data with parameters of type RecordFormat
static AbstractMapping AbstractMapping.getInstance(OdetteFtpVersion version, boolean compression, RecordFormat recordFormat)
           
 

Uses of RecordFormat in org.neociclo.odetteftp.protocol.v13
 

Methods in org.neociclo.odetteftp.protocol.v13 with parameters of type RecordFormat
static CommandExchangeBuffer CommandBuilderVer13.startFile(String datasetName, Date dateTime, String userData, String destination, String originator, RecordFormat recordFormat, int maxRecordSize, long fileSize, long restartOffset)
          Create the Start File command with given parameters.
The Start File command includes a count allowing the restart of an interrupted transmission to be negotiated.
 

Uses of RecordFormat in org.neociclo.odetteftp.protocol.v14
 

Methods in org.neociclo.odetteftp.protocol.v14 with parameters of type RecordFormat
static CommandExchangeBuffer CommandBuilderVer14.startFile(String datasetName, Date dateTime, short ticker, String userData, String destination, String originator, RecordFormat recordFormat, int maxRecordSize, long fileSize, long restartOffset)
          Create the Start File command with given parameters.
The Start File command includes a count allowing the restart of an interrupted transmission to be negotiated.
 

Uses of RecordFormat in org.neociclo.odetteftp.protocol.v20
 

Methods in org.neociclo.odetteftp.protocol.v20 with parameters of type RecordFormat
static CommandExchangeBuffer CommandBuilderVer20.startFile(String dsn, Date dateTime, short ticker, String userData, String destination, String originator, RecordFormat recordFormat, int recordSize, long fileSize, long originalFileSize, long offset, SecurityLevel sec, CipherSuite cipherSuite, FileCompression compressionAlgorithm, FileEnveloping envelopingFormat, boolean signedAck, String fileDescription)
           
 

Uses of RecordFormat in org.neociclo.odetteftp.util
 

Methods in org.neociclo.odetteftp.util with parameters of type RecordFormat
static long ProtocolUtil.computeFileSizeInOctets(long size, RecordFormat recordFormat, int recordSize)
           
static long ProtocolUtil.computeOffsetFilePosition(long answerCount, RecordFormat recordFormat, int recordSize)
           
static long ProtocolUtil.computeVirtualFileOffset(long position, RecordFormat recordFormat, int recordSize)
           
static long ProtocolUtil.computeVirtualFileRecordCount(long unitCount, RecordFormat recordFormat, int recordSize)
           
static long ProtocolUtil.computeVirtualFileSize(long unitCount, RecordFormat recordFormat, int recordSize)
           
 



ACCORD