org.apache.kylin.common.util.Bytes.lexicographicalComparerJavaImpl()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(2.0k)|赞(0)|评价(0)|浏览(114)

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

Bytes.lexicographicalComparerJavaImpl介绍

暂无

代码示例

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

/**
 * Returns the Unsafe-using Comparer, or falls back to the pure-Java
 * implementation if unable to do so.
 */
static Comparer<byte[]> getBestComparer() {
  try {
    Class<?> theClass = Class.forName(UNSAFE_COMPARER_NAME);
    // yes, UnsafeComparer does implement Comparer<byte[]>
    @SuppressWarnings("unchecked")
    Comparer<byte[]> comparer = (Comparer<byte[]>) theClass.getEnumConstants()[0];
    return comparer;
  } catch (Throwable t) { // ensure we really catch *everything*
    return lexicographicalComparerJavaImpl();
  }
}

代码示例来源:origin: org.apache.kylin/kylin-core-common

/**
 * Returns the Unsafe-using Comparer, or falls back to the pure-Java
 * implementation if unable to do so.
 */
static Comparer<byte[]> getBestComparer() {
  try {
    Class<?> theClass = Class.forName(UNSAFE_COMPARER_NAME);
    // yes, UnsafeComparer does implement Comparer<byte[]>
    @SuppressWarnings("unchecked")
    Comparer<byte[]> comparer = (Comparer<byte[]>) theClass.getEnumConstants()[0];
    return comparer;
  } catch (Throwable t) { // ensure we really catch *everything*
    return lexicographicalComparerJavaImpl();
  }
}

代码示例来源:origin: org.apache.kylin/kylin-common

/**
 * Returns the Unsafe-using Comparer, or falls back to the pure-Java
 * implementation if unable to do so.
 */
static Comparer<byte[]> getBestComparer() {
  try {
    Class<?> theClass = Class.forName(UNSAFE_COMPARER_NAME);
    // yes, UnsafeComparer does implement Comparer<byte[]>
    @SuppressWarnings("unchecked")
    Comparer<byte[]> comparer = (Comparer<byte[]>) theClass.getEnumConstants()[0];
    return comparer;
  } catch (Throwable t) { // ensure we really catch *everything*
    return lexicographicalComparerJavaImpl();
  }
}

相关文章