io.protostuff.Output.writeSInt64()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(1.9k)|赞(0)|评价(0)|浏览(100)

本文整理了Java中io.protostuff.Output.writeSInt64()方法的一些代码示例,展示了Output.writeSInt64()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Output.writeSInt64()方法的具体详情如下:
包路径:io.protostuff.Output
类名称:Output
方法名:writeSInt64

Output.writeSInt64介绍

[英]Writes a signed long field.
[中]写入有符号的长字段。

代码示例

代码示例来源:origin: protostuff/protostuff

@Override
public void writeSInt64(int fieldNumber, long value, boolean repeated) throws IOException
{
  output.writeSInt64(fieldNumber, value, repeated);
}

代码示例来源:origin: protostuff/protostuff

@Override
public void writeTo(Output output, PojoWithInts message) throws IOException
{
  if (message.someInt32 != 0)
    output.writeInt32(1, message.someInt32, false);
  if (message.someUint32 != 0)
    output.writeUInt32(2, message.someUint32, false);
  if (message.someSint32 != 0)
    output.writeSInt32(3, message.someSint32, false);
  if (message.someFixed32 != 0)
    output.writeFixed32(4, message.someFixed32, false);
  if (message.someSfixed32 != 0)
    output.writeSFixed32(5, message.someSfixed32, false);
  if (message.someInt64 != 0)
    output.writeInt64(11, message.someInt64, false);
  if (message.someUint64 != 0)
    output.writeUInt64(12, message.someUint64, false);
  if (message.someSint64 != 0)
    output.writeSInt64(13, message.someSint64, false);
  if (message.someFixed64 != 0)
    output.writeFixed64(14, message.someFixed64, false);
  if (message.someSfixed64 != 0)
    output.writeSFixed64(15, message.someSfixed64, false);
}

代码示例来源:origin: org.apache.servicecomb/foundation-protobuf

@Override
 public void writeTo(Output output, Object value) throws IOException {
  if (value == null) {
   return;
  }

  if (value instanceof Number) {
   output.writeSInt64(number, ((Number) value).longValue(), repeated);
   return;
  }

  if (value instanceof String[]) {
   if (((String[]) value).length == 0) {
    return;
   }
   long v = Long.parseLong(((String[]) value)[0], 10);
   output.writeSInt64(number, v, repeated);
   return;
  }

  if (value instanceof String) {
   long v = Long.parseLong((String) value, 10);
   output.writeSInt64(number, v, repeated);
   return;
  }

  throwNotSupportValue(value);
 }
}

相关文章