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

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

本文整理了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

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

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

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

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

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

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

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

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

  1. /** @param object May be null if mayBeNull is true.
  2. * @return true if no bytes need to be written for the object. */
  3. boolean writeReferenceOrNull (Output output, Object object, boolean mayBeNull) {
  4. if (object == null) {
  5. if (TRACE || (DEBUG && depth == 1)) log("Write", null);
  6. output.writeVarInt(Kryo.NULL, true);
  7. return true;
  8. }
  9. if (!referenceResolver.useReferences(object.getClass())) {
  10. if (mayBeNull) output.writeVarInt(Kryo.NOT_NULL, true);
  11. return false;
  12. }
  13. // Determine if this object has already been seen in this object graph.
  14. int id = referenceResolver.getWrittenId(object);
  15. // If not the first time encountered, only write reference ID.
  16. if (id != -1) {
  17. if (DEBUG) debug("kryo", "Write object reference " + id + ": " + string(object));
  18. output.writeVarInt(id + 2, true); // + 2 because 0 and 1 are used for NULL and NOT_NULL.
  19. return true;
  20. }
  21. // Otherwise write NOT_NULL and then the object bytes.
  22. id = referenceResolver.addWrittenObject(object);
  23. output.writeVarInt(NOT_NULL, true);
  24. if (TRACE) trace("kryo", "Write initial object reference " + id + ": " + string(object));
  25. return false;
  26. }

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

  1. /** @param object May be null if mayBeNull is true.
  2. * @return true if no bytes need to be written for the object. */
  3. boolean writeReferenceOrNull (Output output, Object object, boolean mayBeNull) {
  4. if (object == null) {
  5. if (TRACE || (DEBUG && depth == 1)) log("Write", null);
  6. output.writeVarInt(Kryo.NULL, true);
  7. return true;
  8. }
  9. if (!referenceResolver.useReferences(object.getClass())) {
  10. if (mayBeNull) output.writeVarInt(Kryo.NOT_NULL, true);
  11. return false;
  12. }
  13. // Determine if this object has already been seen in this object graph.
  14. int id = referenceResolver.getWrittenId(object);
  15. // If not the first time encountered, only write reference ID.
  16. if (id != -1) {
  17. if (DEBUG) debug("kryo", "Write object reference " + id + ": " + string(object));
  18. output.writeVarInt(id + 2, true); // + 2 because 0 and 1 are used for NULL and NOT_NULL.
  19. return true;
  20. }
  21. // Otherwise write NOT_NULL and then the object bytes.
  22. id = referenceResolver.addWrittenObject(object);
  23. output.writeVarInt(NOT_NULL, true);
  24. if (TRACE) trace("kryo", "Write initial object reference " + id + ": " + string(object));
  25. return false;
  26. }

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

  1. /** @param object May be null if mayBeNull is true.
  2. * @return true if no bytes need to be written for the object. */
  3. boolean writeReferenceOrNull (Output output, Object object, boolean mayBeNull) {
  4. if (object == null) {
  5. if (TRACE || (DEBUG && depth == 1)) log("Write", null);
  6. output.writeVarInt(Kryo.NULL, true);
  7. return true;
  8. }
  9. if (!referenceResolver.useReferences(object.getClass())) {
  10. if (mayBeNull) output.writeVarInt(Kryo.NOT_NULL, true);
  11. return false;
  12. }
  13. // Determine if this object has already been seen in this object graph.
  14. int id = referenceResolver.getWrittenId(object);
  15. // If not the first time encountered, only write reference ID.
  16. if (id != -1) {
  17. if (DEBUG) debug("kryo", "Write object reference " + id + ": " + string(object));
  18. output.writeVarInt(id + 2, true); // + 2 because 0 and 1 are used for NULL and NOT_NULL.
  19. return true;
  20. }
  21. // Otherwise write NOT_NULL and then the object bytes.
  22. id = referenceResolver.addWrittenObject(object);
  23. output.writeVarInt(NOT_NULL, true);
  24. if (TRACE) trace("kryo", "Write initial object reference " + id + ": " + string(object));
  25. return false;
  26. }

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

  1. /** @param object May be null if mayBeNull is true.
  2. * @return true if no bytes need to be written for the object. */
  3. boolean writeReferenceOrNull (Output output, Object object, boolean mayBeNull) {
  4. if (object == null) {
  5. if (TRACE || (DEBUG && depth == 1)) log("Write", null);
  6. output.writeVarInt(Kryo.NULL, true);
  7. return true;
  8. }
  9. if (!referenceResolver.useReferences(object.getClass())) {
  10. if (mayBeNull) output.writeVarInt(Kryo.NOT_NULL, true);
  11. return false;
  12. }
  13. // Determine if this object has already been seen in this object graph.
  14. int id = referenceResolver.getWrittenId(object);
  15. // If not the first time encountered, only write reference ID.
  16. if (id != -1) {
  17. if (DEBUG) debug("kryo", "Write object reference " + id + ": " + string(object));
  18. output.writeVarInt(id + 2, true); // + 2 because 0 and 1 are used for NULL and NOT_NULL.
  19. return true;
  20. }
  21. // Otherwise write NOT_NULL and then the object bytes.
  22. id = referenceResolver.addWrittenObject(object);
  23. output.writeVarInt(NOT_NULL, true);
  24. if (TRACE) trace("kryo", "Write initial object reference " + id + ": " + string(object));
  25. return false;
  26. }

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

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

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

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

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

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

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

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

相关文章