Interface MixedWritableValue
-
- All Superinterfaces:
WritableValue
- All Known Implementing Classes:
DefaultValueEncoder,IgnoreWriter,WritableValueDelegate
public interface MixedWritableValue extends WritableValue
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MixedWritableValueclone(WritableValue out)voidwriteBoolean(double value)voidwriteBoolean(float value)voidwriteBoolean(int value)voidwriteBoolean(long value)voidwriteDefault()voidwriteEnum(java.lang.CharSequence value)voidwriteFloat(double value)voidwriteInt(double value)voidwriteInt(long value)voidwriteLong(double value)voidwriteLong(float value)-
Methods inherited from interface deltix.qsrv.hf.pub.WritableValue
getFieldEncoder, nextWritableElement, setArrayLength, writeBinary, writeBoolean, writeChar, writeDouble, writeFloat, writeInt, writeLong, writeNull, writeString
-
-
-
-
Method Detail
-
writeBoolean
void writeBoolean(int value)
-
writeBoolean
void writeBoolean(long value)
-
writeBoolean
void writeBoolean(float value)
-
writeBoolean
void writeBoolean(double value)
-
writeInt
void writeInt(long value)
-
writeInt
void writeInt(double value)
-
writeLong
void writeLong(float value)
-
writeLong
void writeLong(double value)
-
writeFloat
void writeFloat(double value)
-
writeEnum
void writeEnum(java.lang.CharSequence value)
-
writeDefault
void writeDefault()
-
clone
MixedWritableValue clone(WritableValue out)
-
-