Java Array Trim trimLeft(byte[] src, int trimSize)

Here you can find the source of trimLeft(byte[] src, int trimSize)

Description

Returns a byte array left trimmed of trimSize elements

License

Apache License

Parameter

Parameter Description
src a parameter
trimSize a parameter

Declaration

public static byte[] trimLeft(byte[] src, int trimSize) 

Method Source Code

//package com.java2s;
/*/*from  www  .  j ava  2s .c  om*/
Copyright 2013 Stefano Fratini (mail@stefanofratini.it)
    
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
    
   http://www.apache.org/licenses/LICENSE-2.0
    
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

import java.util.Arrays;

public class Main {
    /**
     * Returns a byte array left trimmed of trimSize elements
     * @param src
     * @param trimSize
     * @return 
     */
    public static byte[] trimLeft(byte[] src, int trimSize) {

        if (trimSize >= src.length)
            throw new IllegalArgumentException(
                    "Unable to trim " + trimSize + " elements from an array of " + src.length + " elements ");

        return Arrays.copyOfRange(src, trimSize, src.length);
    }
}

Related

  1. trim(String[] strings)
  2. trimArray(char[] buffer, int read)
  3. trimArray(final byte[] seq, final int trimFromFront, final int trimFromBack)
  4. trimBytes(byte[] source, int fromIndex, int toIndex)
  5. trimLeadingZeros(byte[] original)
  6. trimRecords(String[] records)
  7. trimStringArray(final String[] input)
  8. trimZeroTail(final double[] data)