gpt4 book ai didi

org.geotools.resources.XArray.doRemove()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-26 00:21:05 28 4
gpt4 key购买 nike

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

XArray.doRemove介绍

[英]Grabs elements from the middle of a table.
[中]从桌子中间抓取元素。

代码示例

代码示例来源:origin: org.geotools/gt-metadata

/**
 * Removes elements from the middle of an array.
 *
 * @param array   Array from which to remove elements.
 * @param index   Index of the first element to remove from the given {@code array}.
 * @param length  Number of elements to remove.
 * @return        Array with the same elements than the given {@code array} except for the
 *                removed elements, or {@code array} if {@code length} is 0.
 */
public static float[] remove(final float[] array, final int index, final int length) {
  return doRemove(array, index, length);
}

代码示例来源:origin: org.geotools/gt-metadata

/**
 * Removes elements from the middle of an array.
 *
 * @param array   Array from which to remove elements.
 * @param index   Index of the first element to remove from the given {@code array}.
 * @param length  Number of elements to remove.
 * @return        Array with the same elements than the given {@code array} except for the
 *                removed elements, or {@code array} if {@code length} is 0.
 */
public static short[] remove(final short[] array, final int index, final int length) {
  return doRemove(array, index, length);
}

代码示例来源:origin: org.geotools/gt-metadata

/**
 * Removes elements from the middle of an array.
 *
 * @param array   Array from which to remove elements.
 * @param index   Index of the first element to remove from the given {@code array}.
 * @param length  Number of elements to remove.
 * @return        Array with the same elements than the given {@code array} except for the
 *                removed elements, or {@code array} if {@code length} is 0.
 */
public static double[] remove(final double[] array, final int index, final int length) {
  return doRemove(array, index, length);
}

代码示例来源:origin: org.geotools/gt-metadata

/**
 * Removes elements from the middle of an array.
 *
 * @param array   Array from which to remove elements.
 * @param index   Index of the first element to remove from the given {@code array}.
 * @param length  Number of elements to remove.
 * @return        Array with the same elements than the given {@code array} except for the
 *                removed elements, or {@code array} if {@code length} is 0.
 */
public static int[] remove(final int[] array, final int index, final int length) {
  return doRemove(array, index, length);
}

代码示例来源:origin: org.geotools/gt-metadata

/**
 * Removes elements from the middle of an array.
 *
 * @param array   Array from which to remove elements.
 * @param index   Index of the first element to remove from the given {@code array}.
 * @param length  Number of elements to remove.
 * @return        Array with the same elements than the given {@code array} except for the
 *                removed elements, or {@code array} if {@code length} is 0.
 */
public static boolean[] remove(final boolean[] array, final int index, final int length) {
  return doRemove(array, index, length);
}

代码示例来源:origin: org.geotools/gt-metadata

/**
 * Removes elements from the middle of an array.
 *
 * @param array   Array from which to remove elements.
 * @param index   Index of the first element to remove from the given {@code array}.
 * @param length  Number of elements to remove.
 * @return        Array with the same elements than the given {@code array} except for the
 *                removed elements, or {@code array} if {@code length} is 0.
 */
public static byte[] remove(final byte[] array, final int index, final int length) {
  return doRemove(array, index, length);
}

代码示例来源:origin: org.geotools/gt-metadata

/**
 * Removes elements from the middle of an array.
 *
 * @param array   Array from which to remove elements.
 * @param index   Index of the first element to remove from the given {@code array}.
 * @param length  Number of elements to remove.
 * @return        Array with the same elements than the given {@code array} except for the
 *                removed elements, or {@code array} if {@code length} is 0.
 */
public static long[] remove(final long[] array, final int index, final int length) {
  return doRemove(array, index, length);
}

代码示例来源:origin: org.geotools/gt-metadata

/**
 * Removes elements from the middle of an array.
 *
 * @param array   Array from which to remove elements.
 * @param index   Index of the first element to remove from the given {@code array}.
 * @param length  Number of elements to remove.
 * @return        Array with the same elements than the given {@code array} except for the
 *                removed elements, or {@code array} if {@code length} is 0.
 */
public static char[] remove(final char[] array, final int index, final int length) {
  return doRemove(array, index, length);
}

代码示例来源:origin: org.geotools/gt-metadata

/**
 * Removes elements from the middle of an array.
 *
 * @param <E>     The type of array elements.
 * @param array   Array from which to remove elements.
 * @param index   Index of the first element to remove from the given {@code array}.
 * @param length  Number of elements to remove.
 * @return        Array with the same elements than the given {@code array} except for the
 *                removed elements, or {@code array} if {@code length} is 0.
 */
public static <E> E[] remove(final E[] array, final int index, final int length) {
  return doRemove(array, index, length);
}

代码示例来源:origin: org.geotools/gt2-metadata

/**
  * Grabs elements from the middle of a table.
  *
  * @param array   Table from which to grab elements.
  * @param index   {@code array} index of the first element to grab.
  *                All subsequent elements of {@code array}
  *                can be moved forward.
  * @param length  Number of elements to grab.
  * @return        Table which contains the {@code array} data with the
  *                extracted elements.  This method can directly return 
  *                {@code dst}, but most often it returns a newly created
  *                table.
  */
 public static long[] remove(final long[] array, final int index, final int length) {
   return (long[]) doRemove(array, index, length);
 }

代码示例来源:origin: org.geotools/gt2-metadata

/**
 * Grabs elements from the middle of a table.
 *
 * @param array   Table from which to grab elements.
 * @param index   {@code array} index of the first element to grab.
 *                All subsequent elements of {@code array}
 *                can be moved forward.
 * @param length  Number of elements to grab.
 * @return        Table which contains the {@code array} data with the
 *                extracted elements.  This method can directly return 
 *                {@code dst}, but most often it returns a newly created
 *                table.
 */
public static char[] remove(final char[] array, final int index, final int length) {
  return (char[]) doRemove(array, index, length);
}

代码示例来源:origin: org.geotools/gt2-metadata

/**
 * Grabs elements from the middle of a table.
 *
 * @param array   Table from which to grab the elements.
 * @param index   {@code array} index of the first element to grab.
 *                All subsequent {@code array} elements can be moved forward.
 * @param length  Number of elements to grab.
 * @return        Table which contains the {@code array} data with the
 *                extracted elements.  This method can directly return 
 *                {@code dst}, but most often it returns a newly created
 *                table.
 */
public static Object[] remove(final Object[] array, final int index, final int length) {
  return (Object[]) doRemove(array, index, length);
}

代码示例来源:origin: org.geotools/gt2-metadata

/**
 * Grabs elements from the middle of a table.
 *
 * @param array   Table from which to grab elements.
 * @param index   {@code array} index of the first element to grab.
 *                All subsequent elements of {@code array}
 *                can be moved forward.
 * @param length  Number of elements to grab.
 * @return        Table which contains the {@code array} data with the
 *                extracted elements.  This method can directly return 
 *                {@code dst}, but most often it returns a newly created
 *                table.
 */
public static double[] remove(final double[] array, final int index, final int length) {
  return (double[]) doRemove(array, index, length);
}

代码示例来源:origin: org.geotools/gt2-metadata

/**
 * Grabs elements from the middle of a table.
 *
 * @param array   Table from which to grab elements.
 * @param index   {@code array} index of the first element to grab.
 *                All subsequent elements of {@code array}
 *                can be moved forward.
 * @param length  Number of elements to grab.
 * @return        Table which contains the {@code array} data with the
 *                extracted elements.  This method can directly return 
 *                {@code dst}, but most often it returns a newly created
 *                table.
 */
public static float[] remove(final float[] array, final int index, final int length) {
  return (float[]) doRemove(array, index, length);
}

代码示例来源:origin: org.geotools/gt2-metadata

/**
 * Grabs elements from the middle of a table.
 *
 * @param array   Table from which to grab elements.
 * @param index   {@code array} index of the first element to grab.
 *                All subsequent elements of {@code array}
 *                can be moved forward.
 * @param length  Number of elements to grab.
 * @return        Table which contains the {@code array} data with the
 *                extracted elements.  This method can directly return 
 *                {@code dst}, but most often it returns a newly created
 *                table.
 */
public static int[] remove(final int[] array, final int index, final int length) {
  return (int[]) doRemove(array, index, length);
}

代码示例来源:origin: org.geotools/gt2-metadata

/**
 * Grabs elements from the middle of a table.
 *
 * @param array   Table from which to grab elements.
 * @param index   {@code array} index of the first element to grab.
 *                All subsequent elements of {@code array}
 *                can be moved forward.
 * @param length  Number of elements to grab.
 * @return        Table which contains the {@code array} data with the
 *                extracted elements.  This method can directly return 
 *                {@code dst}, but most often it returns a newly created
 *                table.
 */
public static short[] remove(final short[] array, final int index, final int length) {
  return (short[]) doRemove(array, index, length);
}

代码示例来源:origin: org.geotools/gt2-metadata

/**
 * Grabs elements from the middle of a table.
 *
 * @param array   Table from which to grab elements.
 * @param index   {@code array} index of the first element to grab.
 *                All subsequent elements of {@code array}
 *                can be moved forward.
 * @param length  Number of elements to grab.
 * @return        Table which contains the {@code array} data with the
 *                extracted elements.  This method can directly return 
 *                {@code dst}, but most often it returns a newly created
 *                table.
 */
public static byte[] remove(final byte[] array, final int index, final int length) {
  return (byte[]) doRemove(array, index, length);
}

代码示例来源:origin: org.geotools/gt2-metadata

/**
 * Grabs elements from the middle of a table.
 *
 * @param array   Table from which to grab elements.
 * @param index   {@code array} index of the first element to grab.
 *                All subsequent elements of {@code array}
 *                can be moved forward.
 * @param length  Number of elements to grab.
 * @return        Table which contains the {@code array} data with the
 *                extracted elements.  This method can directly return 
 *                {@code dst}, but most often it returns a newly created
 *                table.
 */
public static boolean[] remove(final boolean[] array, final int index, final int length) {
  return (boolean[]) doRemove(array, index, length);
}

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com