com.esotericsoftware.kryo.util.Util.string()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(7.7k)|赞(0)|评价(0)|浏览(91)

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

Util.string介绍

[英]Returns the object formatted as a string. The format depends on the object's type and whether Object#toString() has been overridden.
[中]返回格式化为字符串的对象。格式取决于对象的类型以及对象#toString()是否已被重写。

代码示例

代码示例来源:origin: com.esotericsoftware/kryo

/** Logs a message about an object. The log level and the string format of the object depend on the object type. */
static public void log (String message, Object object) {
  if (object == null) {
    if (TRACE) trace("kryo", message + ": null");
    return;
  }
  Class type = object.getClass();
  if (type.isPrimitive() || type == Boolean.class || type == Byte.class || type == Character.class || type == Short.class
    || type == Integer.class || type == Long.class || type == Float.class || type == Double.class || type == String.class) {
    if (TRACE) trace("kryo", message + ": " + string(object));
  } else {
    debug("kryo", message + ": " + string(object));
  }
}

代码示例来源:origin: com.esotericsoftware.kryo/kryo

/** Logs a message about an object. The log level and the string format of the object depend on the object type. */
static public void log (String message, Object object) {
  if (object == null) {
    if (TRACE) trace("kryo", message + ": null");
    return;
  }
  Class type = object.getClass();
  if (type.isPrimitive() || type == Boolean.class || type == Byte.class || type == Character.class || type == Short.class
    || type == Integer.class || type == Long.class || type == Float.class || type == Double.class || type == String.class) {
    if (TRACE) trace("kryo", message + ": " + string(object));
  } else {
    debug("kryo", message + ": " + string(object));
  }
}

代码示例来源:origin: com.esotericsoftware/kryo-shaded

/** Logs a message about an object. The log level and the string format of the object depend on the object type. */
static public void log (String message, Object object) {
  if (object == null) {
    if (TRACE) trace("kryo", message + ": null");
    return;
  }
  Class type = object.getClass();
  if (type.isPrimitive() || type == Boolean.class || type == Byte.class || type == Character.class || type == Short.class
    || type == Integer.class || type == Long.class || type == Float.class || type == Double.class || type == String.class) {
    if (TRACE) trace("kryo", message + ": " + string(object));
  } else {
    debug("kryo", message + ": " + string(object));
  }
}

代码示例来源:origin: svn2github/kryo

/** Logs a message about an object. The log level and the string format of the object depend on the object type. */
static public void log (String message, Object object) {
  if (object == null) {
    if (TRACE) trace("kryo", message + ": null");
    return;
  }
  Class type = object.getClass();
  if (type.isPrimitive() || type == Boolean.class || type == Byte.class || type == Character.class || type == Short.class
    || type == Integer.class || type == Long.class || type == Float.class || type == Double.class || type == String.class) {
    if (TRACE) trace("kryo", message + ": " + string(object));
  } else {
    debug("kryo", message + ": " + string(object));
  }
}

代码示例来源:origin: com.esotericsoftware/kryo-shaded

/** @param object May be null if mayBeNull is true.
 * @return true if no bytes need to be written for the object. */
boolean writeReferenceOrNull (Output output, Object object, boolean mayBeNull) {
  if (object == null) {
    if (TRACE || (DEBUG && depth == 1)) log("Write", null);
    output.writeVarInt(Kryo.NULL, true);
    return true;
  }
  if (!referenceResolver.useReferences(object.getClass())) {
    if (mayBeNull) output.writeVarInt(Kryo.NOT_NULL, true);
    return false;
  }
  // Determine if this object has already been seen in this object graph.
  int id = referenceResolver.getWrittenId(object);
  // If not the first time encountered, only write reference ID.
  if (id != -1) {
    if (DEBUG) debug("kryo", "Write object reference " + id + ": " + string(object));
    output.writeVarInt(id + 2, true); // + 2 because 0 and 1 are used for NULL and NOT_NULL.
    return true;
  }
  // Otherwise write NOT_NULL and then the object bytes.
  id = referenceResolver.addWrittenObject(object);
  output.writeVarInt(NOT_NULL, true);
  if (TRACE) trace("kryo", "Write initial object reference " + id + ": " + string(object));
  return false;
}

代码示例来源:origin: com.esotericsoftware/kryo

/** @param object May be null if mayBeNull is true.
 * @return true if no bytes need to be written for the object. */
boolean writeReferenceOrNull (Output output, Object object, boolean mayBeNull) {
  if (object == null) {
    if (TRACE || (DEBUG && depth == 1)) log("Write", null);
    output.writeVarInt(Kryo.NULL, true);
    return true;
  }
  if (!referenceResolver.useReferences(object.getClass())) {
    if (mayBeNull) output.writeVarInt(Kryo.NOT_NULL, true);
    return false;
  }
  // Determine if this object has already been seen in this object graph.
  int id = referenceResolver.getWrittenId(object);
  // If not the first time encountered, only write reference ID.
  if (id != -1) {
    if (DEBUG) debug("kryo", "Write object reference " + id + ": " + string(object));
    output.writeVarInt(id + 2, true); // + 2 because 0 and 1 are used for NULL and NOT_NULL.
    return true;
  }
  // Otherwise write NOT_NULL and then the object bytes.
  id = referenceResolver.addWrittenObject(object);
  output.writeVarInt(NOT_NULL, true);
  if (TRACE) trace("kryo", "Write initial object reference " + id + ": " + string(object));
  return false;
}

代码示例来源:origin: com.esotericsoftware.kryo/kryo

/** @param object May be null if mayBeNull is true.
 * @return true if no bytes need to be written for the object. */
boolean writeReferenceOrNull (Output output, Object object, boolean mayBeNull) {
  if (object == null) {
    if (TRACE || (DEBUG && depth == 1)) log("Write", null);
    output.writeVarInt(Kryo.NULL, true);
    return true;
  }
  if (!referenceResolver.useReferences(object.getClass())) {
    if (mayBeNull) output.writeVarInt(Kryo.NOT_NULL, true);
    return false;
  }
  // Determine if this object has already been seen in this object graph.
  int id = referenceResolver.getWrittenId(object);
  // If not the first time encountered, only write reference ID.
  if (id != -1) {
    if (DEBUG) debug("kryo", "Write object reference " + id + ": " + string(object));
    output.writeVarInt(id + 2, true); // + 2 because 0 and 1 are used for NULL and NOT_NULL.
    return true;
  }
  // Otherwise write NOT_NULL and then the object bytes.
  id = referenceResolver.addWrittenObject(object);
  output.writeVarInt(NOT_NULL, true);
  if (TRACE) trace("kryo", "Write initial object reference " + id + ": " + string(object));
  return false;
}

代码示例来源:origin: svn2github/kryo

/** @param object May be null if mayBeNull is true.
 * @return true if no bytes need to be written for the object. */
boolean writeReferenceOrNull (Output output, Object object, boolean mayBeNull) {
  if (object == null) {
    if (TRACE || (DEBUG && depth == 1)) log("Write", null);
    output.writeVarInt(Kryo.NULL, true);
    return true;
  }
  if (!referenceResolver.useReferences(object.getClass())) {
    if (mayBeNull) output.writeVarInt(Kryo.NOT_NULL, true);
    return false;
  }
  // Determine if this object has already been seen in this object graph.
  int id = referenceResolver.getWrittenId(object);
  // If not the first time encountered, only write reference ID.
  if (id != -1) {
    if (DEBUG) debug("kryo", "Write object reference " + id + ": " + string(object));
    output.writeVarInt(id + 2, true); // + 2 because 0 and 1 are used for NULL and NOT_NULL.
    return true;
  }
  // Otherwise write NOT_NULL and then the object bytes.
  id = referenceResolver.addWrittenObject(object);
  output.writeVarInt(NOT_NULL, true);
  if (TRACE) trace("kryo", "Write initial object reference " + id + ": " + string(object));
  return false;
}

代码示例来源:origin: com.esotericsoftware/kryo

if (DEBUG) debug("kryo", "Read object reference " + id + ": " + string(readObject));
return REF;

代码示例来源:origin: com.esotericsoftware.kryo/kryo

if (DEBUG) debug("kryo", "Read object reference " + id + ": " + string(readObject));
return REF;

代码示例来源:origin: com.esotericsoftware/kryo-shaded

if (DEBUG) debug("kryo", "Read object reference " + id + ": " + string(readObject));
return REF;

代码示例来源:origin: svn2github/kryo

if (DEBUG) debug("kryo", "Read object reference " + id + ": " + string(readObject));
return REF;

相关文章