コード例 #1
0
 public BitFieldWriter(PositionedOutputStream output, int bitSize)
 {
     this.output  = new RunLengthByteWriter(output);
     this.bitSize = bitSize;
 }
コード例 #2
0
 public RunLengthByteWriter(PositionedOutputStream output)
 {
     this.output = output;
 }
コード例 #3
0
 public RunLengthByteWriter(PositionedOutputStream output)
 {
     this.output = output;
 }
コード例 #4
0
 public RunLengthIntegerWriter(PositionedOutputStream output, bool signed)
 {
     this.output = output;
     this.signed = signed;
     this.utils = new SerializationUtils();
 }
コード例 #5
0
 public RunLengthIntegerWriter(PositionedOutputStream output, bool signed)
 {
     this.output = output;
     this.signed = signed;
     this.utils  = new SerializationUtils();
 }