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

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

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

Bytes.indexOf介绍

[英]Returns the index of the first appearance of the value target in array.
[中]返回数组中值目标的第一次出现的索引。

代码示例

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

/**
 * @param array  an array of {@code byte} values, possibly empty
 * @param target an array of {@code byte}
 * @return {@code true} if {@code target} is present anywhere in {@code array}
 */
public static boolean contains(byte[] array, byte[] target) {
  return indexOf(array, target) > -1;
}

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

/**
 * @param array  an array of {@code byte} values, possibly empty
 * @param target a primitive {@code byte} value
 * @return {@code true} if {@code target} is present as an element anywhere in {@code array}.
 */
public static boolean contains(byte[] array, byte target) {
  return indexOf(array, target) > -1;
}

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

/**
 * @param array  an array of {@code byte} values, possibly empty
 * @param target an array of {@code byte}
 * @return {@code true} if {@code target} is present anywhere in {@code array}
 */
public static boolean contains(byte[] array, byte[] target) {
  return indexOf(array, target) > -1;
}

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

/**
 * @param array  an array of {@code byte} values, possibly empty
 * @param target a primitive {@code byte} value
 * @return {@code true} if {@code target} is present as an element anywhere in {@code array}.
 */
public static boolean contains(byte[] array, byte target) {
  return indexOf(array, target) > -1;
}

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

/**
 * @param array  an array of {@code byte} values, possibly empty
 * @param target an array of {@code byte}
 * @return {@code true} if {@code target} is present anywhere in {@code array}
 */
public static boolean contains(byte[] array, byte[] target) {
  return indexOf(array, target) > -1;
}

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

/**
 * @param array  an array of {@code byte} values, possibly empty
 * @param target a primitive {@code byte} value
 * @return {@code true} if {@code target} is present as an element anywhere in {@code array}.
 */
public static boolean contains(byte[] array, byte target) {
  return indexOf(array, target) > -1;
}

相关文章