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

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

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

Util.className介绍

[英]Returns the class formatted as a string. The format varies depending on the type.
[中]返回格式化为字符串的类。格式因类型而异。

代码示例

代码示例来源:origin: apache/metron

  1. @Override
  2. public Object newInstance () {
  3. try {
  4. return constructor.newInstance();
  5. } catch (Exception ex) {
  6. throw new KryoException("Error constructing instance of class: " + className(type), ex);
  7. }
  8. }
  9. };

代码示例来源:origin: apache/metron

  1. @Override
  2. public Object newInstance () {
  3. try {
  4. return constructor.newInstance();
  5. } catch (Exception ex) {
  6. throw new KryoException("Error constructing instance of class: " + className(type), ex);
  7. }
  8. }
  9. };

代码示例来源:origin: apache/metron

  1. @Override
  2. public Object newInstance () {
  3. try {
  4. return access.newInstance();
  5. } catch (Exception ex) {
  6. throw new KryoException("Error constructing instance of class: " + className(type), ex);
  7. }
  8. }
  9. };

代码示例来源:origin: apache/metron

  1. @Override
  2. public Object newInstance () {
  3. try {
  4. return access.newInstance();
  5. } catch (Exception ex) {
  6. throw new KryoException("Error constructing instance of class: " + className(type), ex);
  7. }
  8. }
  9. };

代码示例来源:origin: apache/metron

  1. throw new KryoException("Class cannot be created (non-static member class): " + className(type));
  2. else
  3. throw new KryoException("Class cannot be created (missing no-arg constructor): " + className(type));

代码示例来源:origin: apache/metron

  1. throw new KryoException("Class cannot be created (non-static member class): " + className(type));
  2. else
  3. throw new KryoException("Class cannot be created (missing no-arg constructor): " + className(type));

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

  1. protected String unregisteredClassMessage (Class type) {
  2. return "Class is not registered: " + className(type) + "\nNote: To register this class use: kryo.register("
  3. + className(type) + ".class);";
  4. }

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

  1. public String toString () {
  2. return "[" + id + ", " + className(type) + "]";
  3. }
  4. }

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

  1. public String toString () {
  2. return "[" + id + ", " + className(type) + "]";
  3. }
  4. }

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

  1. public String toString () {
  2. return "[" + id + ", " + className(type) + "]";
  3. }
  4. }

代码示例来源:origin: com.haulmont.cuba/cuba-global

  1. protected void checkIncorrectClass(Class type) {
  2. if (type != null && !Serializable.class.isAssignableFrom(type)) {
  3. throw new IllegalArgumentException(String.format("Class is not registered: %s\nNote: To register this class use: kryo.register(\"%s\".class);",
  4. Util.className(type), Util.className(type)));
  5. }
  6. }

代码示例来源:origin: com.haulmont.cuba/cuba-global

  1. protected void checkIncorrectObject(T object) {
  2. if (object != null && !(object instanceof Serializable)) {
  3. String className = Util.className(object.getClass());
  4. throw new IllegalArgumentException(String.format("Class is not registered: %s\nNote: To register this class use: kryo.register(\"%s\".class);",
  5. className, className));
  6. }
  7. }
  8. }

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

  1. /** Returns the object formatted as a string. The format depends on the object's type and whether {@link Object#toString()} has
  2. * been overridden. */
  3. static public String string (Object object) {
  4. if (object == null) return "null";
  5. Class type = object.getClass();
  6. if (type.isArray()) return className(type);
  7. try {
  8. if (type.getMethod("toString", new Class[0]).getDeclaringClass() == Object.class)
  9. return TRACE ? className(type) : type.getSimpleName();
  10. } catch (Exception ignored) {
  11. }
  12. return String.valueOf(object);
  13. }

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

  1. public Object newInstance () {
  2. try {
  3. return constructor.newInstance();
  4. } catch (Exception ex) {
  5. throw new KryoException("Error constructing instance of class: " + className(type), ex);
  6. }
  7. }
  8. };

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

  1. public Object newInstance () {
  2. try {
  3. return constructor.newInstance();
  4. } catch (Exception ex) {
  5. throw new KryoException("Error constructing instance of class: " + className(type), ex);
  6. }
  7. }
  8. };

代码示例来源:origin: com.twitter/chill-java

  1. @Override
  2. public void apply(Kryo k) {
  3. try {
  4. k.register(klass, serializerKlass.newInstance());
  5. } catch (Exception ex) {
  6. throw new IllegalArgumentException("Unable to create serializer \"" + serializerKlass.getName() + "\" for class: "
  7. + Util.className(klass), ex);
  8. }
  9. }
  10. @Override

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

  1. public Object newInstance () {
  2. try {
  3. return constructor.newInstance();
  4. } catch (Exception ex) {
  5. throw new KryoException("Error constructing instance of class: " + className(type), ex);
  6. }
  7. }
  8. };

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

  1. public Object newInstance () {
  2. try {
  3. return access.newInstance();
  4. } catch (Exception ex) {
  5. throw new KryoException("Error constructing instance of class: " + className(type), ex);
  6. }
  7. }
  8. };

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

  1. public Object newInstance () {
  2. try {
  3. return access.newInstance();
  4. } catch (Exception ex) {
  5. throw new KryoException("Error constructing instance of class: " + className(type), ex);
  6. }
  7. }
  8. };

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

  1. public Object newInstance () {
  2. try {
  3. return access.newInstance();
  4. } catch (Exception ex) {
  5. throw new KryoException("Error constructing instance of class: " + className(type), ex);
  6. }
  7. }
  8. };

相关文章