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

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

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

Util.getElementClass介绍

[英]Returns the base element type of an n-dimensional array class.
[中]返回n维数组类的基元素类型。

代码示例

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

/** Returns true if the specified type is final. Final types can be serialized more efficiently because they are
 * non-polymorphic.
 * <p>
 * This can be overridden to force non-final classes to be treated as final. Eg, if an application uses ArrayList extensively
 * but never uses an ArrayList subclass, treating ArrayList as final could allow FieldSerializer to save 1-2 bytes per
 * ArrayList field. */
public boolean isFinal (Class type) {
  if (type == null) throw new IllegalArgumentException("type cannot be null.");
  if (type.isArray()) return Modifier.isFinal(Util.getElementClass(type).getModifiers());
  return Modifier.isFinal(type.getModifiers());
}

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

/** Returns true if the specified type is final. Final types can be serialized more efficiently because they are
 * non-polymorphic.
 * <p>
 * This can be overridden to force non-final classes to be treated as final. Eg, if an application uses ArrayList extensively
 * but never uses an ArrayList subclass, treating ArrayList as final could allow FieldSerializer to save 1-2 bytes per
 * ArrayList field. */
public boolean isFinal (Class type) {
  if (type == null) throw new IllegalArgumentException("type cannot be null.");
  if (type.isArray()) return Modifier.isFinal(Util.getElementClass(type).getModifiers());
  return Modifier.isFinal(type.getModifiers());
}

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

/** Returns true if the specified type is final. Final types can be serialized more efficiently because they are
 * non-polymorphic.
 * <p>
 * This can be overridden to force non-final classes to be treated as final. Eg, if an application uses ArrayList extensively
 * but never uses an ArrayList subclass, treating ArrayList as final could allow FieldSerializer to save 1-2 bytes per
 * ArrayList field. */
public boolean isFinal (Class type) {
  if (type == null) throw new IllegalArgumentException("type cannot be null.");
  if (type.isArray()) return Modifier.isFinal(Util.getElementClass(type).getModifiers());
  return Modifier.isFinal(type.getModifiers());
}

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

/** Returns true if the specified type is final. Final types can be serialized more efficiently because they are
 * non-polymorphic.
 * <p>
 * This can be overridden to force non-final classes to be treated as final. Eg, if an application uses ArrayList extensively
 * but never uses an ArrayList subclass, treating ArrayList as final could allow FieldSerializer to save 1-2 bytes per
 * ArrayList field. */
public boolean isFinal (Class type) {
  if (type == null) throw new IllegalArgumentException("type cannot be null.");
  if (type.isArray()) return Modifier.isFinal(Util.getElementClass(type).getModifiers());
  return Modifier.isFinal(type.getModifiers());
}

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

/** Returns the class formatted as a string. The format varies depending on the type. */
static public String className (Class type) {
  if (type.isArray()) {
    Class elementClass = getElementClass(type);
    StringBuilder buffer = new StringBuilder(16);
    for (int i = 0, n = getDimensionCount(type); i < n; i++)
      buffer.append("[]");
    return className(elementClass) + buffer;
  }
  if (type.isPrimitive() || type == Object.class || 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) {
    return type.getSimpleName();
  }
  return type.getName();
}

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

/** Returns the class formatted as a string. The format varies depending on the type. */
static public String className (Class type) {
  if (type.isArray()) {
    Class elementClass = getElementClass(type);
    StringBuilder buffer = new StringBuilder(16);
    for (int i = 0, n = getDimensionCount(type); i < n; i++)
      buffer.append("[]");
    return className(elementClass) + buffer;
  }
  if (type.isPrimitive() || type == Object.class || 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) {
    return type.getSimpleName();
  }
  return type.getName();
}

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

/** Returns the class formatted as a string. The format varies depending on the type. */
static public String className (Class type) {
  if (type.isArray()) {
    Class elementClass = getElementClass(type);
    StringBuilder buffer = new StringBuilder(16);
    for (int i = 0, n = getDimensionCount(type); i < n; i++)
      buffer.append("[]");
    return className(elementClass) + buffer;
  }
  if (type.isPrimitive() || type == Object.class || 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) {
    return type.getSimpleName();
  }
  return type.getName();
}

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

/** Returns the class formatted as a string. The format varies depending on the type. */
static public String className (Class type) {
  if (type.isArray()) {
    Class elementClass = getElementClass(type);
    StringBuilder buffer = new StringBuilder(16);
    for (int i = 0, n = getDimensionCount(type); i < n; i++)
      buffer.append("[]");
    return className(elementClass) + buffer;
  }
  if (type.isPrimitive() || type == Object.class || 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) {
    return type.getSimpleName();
  }
  return type.getName();
}

相关文章