@Deprecated @InterfaceAudience.Public @InterfaceStability.Stable public class CsvRecordOutput extends Object implements RecordOutput
| コンストラクタと説明 |
|---|
CsvRecordOutput(OutputStream out)
非推奨です。
Creates a new instance of CsvRecordOutput
|
| 修飾子とタイプ | メソッドと説明 |
|---|---|
void |
endMap(TreeMap v,
String tag)
非推奨です。
Mark the end of a serialized map.
|
void |
endRecord(Record r,
String tag)
非推奨です。
Mark the end of a serialized record.
|
void |
endVector(ArrayList v,
String tag)
非推奨です。
Mark the end of a serialized vector.
|
void |
startMap(TreeMap v,
String tag)
非推奨です。
Mark the start of a map to be serialized.
|
void |
startRecord(Record r,
String tag)
非推奨です。
Mark the start of a record to be serialized.
|
void |
startVector(ArrayList v,
String tag)
非推奨です。
Mark the start of a vector to be serialized.
|
void |
writeBool(boolean b,
String tag)
非推奨です。
Write a boolean to serialized record.
|
void |
writeBuffer(Buffer buf,
String tag)
非推奨です。
Write a buffer to serialized record.
|
void |
writeByte(byte b,
String tag)
非推奨です。
Write a byte to serialized record.
|
void |
writeDouble(double d,
String tag)
非推奨です。
Write a double precision floating point number to serialized record.
|
void |
writeFloat(float f,
String tag)
非推奨です。
Write a single-precision float to serialized record.
|
void |
writeInt(int i,
String tag)
非推奨です。
Write an integer to serialized record.
|
void |
writeLong(long l,
String tag)
非推奨です。
Write a long integer to serialized record.
|
void |
writeString(String s,
String tag)
非推奨です。
Write a unicode string to serialized record.
|
public CsvRecordOutput(OutputStream out)
public void writeByte(byte b, String tag) throws IOException
RecordOutputwriteByte インタフェース内 RecordOutputb - Byte to be serializedtag - Used by tagged serialization formats (such as XML)IOException - Indicates error in serializationpublic void writeBool(boolean b, String tag) throws IOException
RecordOutputwriteBool インタフェース内 RecordOutputb - Boolean to be serializedtag - Used by tagged serialization formats (such as XML)IOException - Indicates error in serializationpublic void writeInt(int i, String tag) throws IOException
RecordOutputwriteInt インタフェース内 RecordOutputi - Integer to be serializedtag - Used by tagged serialization formats (such as XML)IOException - Indicates error in serializationpublic void writeLong(long l, String tag) throws IOException
RecordOutputwriteLong インタフェース内 RecordOutputl - Long to be serializedtag - Used by tagged serialization formats (such as XML)IOException - Indicates error in serializationpublic void writeFloat(float f, String tag) throws IOException
RecordOutputwriteFloat インタフェース内 RecordOutputf - Float to be serializedtag - Used by tagged serialization formats (such as XML)IOException - Indicates error in serializationpublic void writeDouble(double d, String tag) throws IOException
RecordOutputwriteDouble インタフェース内 RecordOutputd - Double to be serializedtag - Used by tagged serialization formats (such as XML)IOException - Indicates error in serializationpublic void writeString(String s, String tag) throws IOException
RecordOutputwriteString インタフェース内 RecordOutputs - String to be serializedtag - Used by tagged serialization formats (such as XML)IOException - Indicates error in serializationpublic void writeBuffer(Buffer buf, String tag) throws IOException
RecordOutputwriteBuffer インタフェース内 RecordOutputbuf - Buffer to be serializedtag - Used by tagged serialization formats (such as XML)IOException - Indicates error in serializationpublic void startRecord(Record r, String tag) throws IOException
RecordOutputstartRecord インタフェース内 RecordOutputr - Record to be serializedtag - Used by tagged serialization formats (such as XML)IOException - Indicates error in serializationpublic void endRecord(Record r, String tag) throws IOException
RecordOutputendRecord インタフェース内 RecordOutputr - Record to be serializedtag - Used by tagged serialization formats (such as XML)IOException - Indicates error in serializationpublic void startVector(ArrayList v, String tag) throws IOException
RecordOutputstartVector インタフェース内 RecordOutputv - Vector to be serializedtag - Used by tagged serialization formats (such as XML)IOException - Indicates error in serializationpublic void endVector(ArrayList v, String tag) throws IOException
RecordOutputendVector インタフェース内 RecordOutputv - Vector to be serializedtag - Used by tagged serialization formats (such as XML)IOException - Indicates error in serializationpublic void startMap(TreeMap v, String tag) throws IOException
RecordOutputstartMap インタフェース内 RecordOutputv - Map to be serializedtag - Used by tagged serialization formats (such as XML)IOException - Indicates error in serializationpublic void endMap(TreeMap v, String tag) throws IOException
RecordOutputendMap インタフェース内 RecordOutputv - Map to be serializedtag - Used by tagged serialization formats (such as XML)IOException - Indicates error in serializationCopyright © 2016 Apache Software Foundation. All rights reserved.