Package org.datavec.api.formats.input
Class BaseInputFormat
- java.lang.Object
-
- org.datavec.api.formats.input.BaseInputFormat
-
- All Implemented Interfaces:
Serializable,InputFormat,Writable
- Direct Known Subclasses:
CSVInputFormat,LibSvmInputFormat,LineInputFormat,MatlabInputFormat,SVMLightInputFormat
public abstract class BaseInputFormat extends Object implements InputFormat
- Author:
- Adam Gibson
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BaseInputFormat()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RecordReadercreateReader(InputSplit split)Creates a reader from an input splitWritableTypegetType()Get the type of the writable.voidreadFields(DataInput in)Deserialize the fields of this object fromin.doubletoDouble()Convert Writable to double.floattoFloat()Convert Writable to float.inttoInt()Convert Writable to int.longtoLong()Convert Writable to long.voidwrite(DataOutput out)Serialize the fields of this object toout.voidwriteType(DataOutput out)Write the type (a single short value) to the DataOutput.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.datavec.api.formats.input.InputFormat
createReader
-
-
-
-
Method Detail
-
createReader
public RecordReader createReader(InputSplit split) throws IOException, InterruptedException
Description copied from interface:InputFormatCreates a reader from an input split- Specified by:
createReaderin interfaceInputFormat- Parameters:
split- the split to read- Returns:
- the reader from the given input split
- Throws:
IOExceptionInterruptedException
-
write
public void write(DataOutput out) throws IOException
Description copied from interface:WritableSerialize the fields of this object toout.- Specified by:
writein interfaceWritable- Parameters:
out-DataOuputto serialize this object into.- Throws:
IOException
-
readFields
public void readFields(DataInput in) throws IOException
Description copied from interface:WritableDeserialize the fields of this object fromin.For efficiency, implementations should attempt to re-use storage in the existing object where possible.
- Specified by:
readFieldsin interfaceWritable- Parameters:
in-DataInputto deseriablize this object from.- Throws:
IOException
-
toDouble
public double toDouble()
Description copied from interface:WritableConvert Writable to double. Whether this is supported depends on the specific writable.
-
toFloat
public float toFloat()
Description copied from interface:WritableConvert Writable to float. Whether this is supported depends on the specific writable.
-
toInt
public int toInt()
Description copied from interface:WritableConvert Writable to int. Whether this is supported depends on the specific writable.
-
toLong
public long toLong()
Description copied from interface:WritableConvert Writable to long. Whether this is supported depends on the specific writable.
-
writeType
public void writeType(DataOutput out) throws IOException
Description copied from interface:WritableWrite the type (a single short value) to the DataOutput. SeeWritableFactoryfor details.- Specified by:
writeTypein interfaceWritable- Parameters:
out- DataOutput to write to- Throws:
IOException- For errors during writing
-
getType
public WritableType getType()
Description copied from interface:WritableGet the type of the writable.
-
-