ArrayFill.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */

  17. package org.apache.commons.lang3;

  18. import java.util.Arrays;

  19. /**
  20.  * Fills and returns arrays in the fluent style.
  21.  *
  22.  * @since 3.14.0
  23.  */
  24. public final class ArrayFill {

  25.     /**
  26.      * Fills and returns the given array.
  27.      *
  28.      * @param a   the array to be filled (may be null).
  29.      * @param val the value to be stored in all elements of the array.
  30.      * @return the given array.
  31.      * @see Arrays#fill(byte[],byte)
  32.      */
  33.     public static byte[] fill(final byte[] a, final byte val) {
  34.         if (a != null) {
  35.             Arrays.fill(a, val);
  36.         }
  37.         return a;
  38.     }

  39.     /**
  40.      * Fills and returns the given array.
  41.      *
  42.      * @param a   the array to be filled (may be null).
  43.      * @param val the value to be stored in all elements of the array.
  44.      * @return the given array.
  45.      * @see Arrays#fill(char[],char)
  46.      */
  47.     public static char[] fill(final char[] a, final char val) {
  48.         if (a != null) {
  49.             Arrays.fill(a, val);
  50.         }
  51.         return a;
  52.     }

  53.     /**
  54.      * Fills and returns the given array.
  55.      *
  56.      * @param a   the array to be filled (may be null).
  57.      * @param val the value to be stored in all elements of the array.
  58.      * @return the given array.
  59.      * @see Arrays#fill(double[],double)
  60.      */
  61.     public static double[] fill(final double[] a, final double val) {
  62.         if (a != null) {
  63.             Arrays.fill(a, val);
  64.         }
  65.         return a;
  66.     }

  67.     /**
  68.      * Fills and returns the given array.
  69.      *
  70.      * @param a   the array to be filled (may be null).
  71.      * @param val the value to be stored in all elements of the array.
  72.      * @return the given array.
  73.      * @see Arrays#fill(float[],float)
  74.      */
  75.     public static float[] fill(final float[] a, final float val) {
  76.         if (a != null) {
  77.             Arrays.fill(a, val);
  78.         }
  79.         return a;
  80.     }

  81.     /**
  82.      * Fills and returns the given array.
  83.      *
  84.      * @param a   the array to be filled (may be null).
  85.      * @param val the value to be stored in all elements of the array.
  86.      * @return the given array.
  87.      * @see Arrays#fill(int[],int)
  88.      */
  89.     public static int[] fill(final int[] a, final int val) {
  90.         if (a != null) {
  91.             Arrays.fill(a, val);
  92.         }
  93.         return a;
  94.     }

  95.     /**
  96.      * Fills and returns the given array.
  97.      *
  98.      * @param a   the array to be filled (may be null).
  99.      * @param val the value to be stored in all elements of the array.
  100.      * @return the given array.
  101.      * @see Arrays#fill(long[],long)
  102.      */
  103.     public static long[] fill(final long[] a, final long val) {
  104.         if (a != null) {
  105.             Arrays.fill(a, val);
  106.         }
  107.         return a;
  108.     }

  109.     /**
  110.      * Fills and returns the given array.
  111.      *
  112.      * @param a   the array to be filled (may be null).
  113.      * @param val the value to be stored in all elements of the array.
  114.      * @return the given array.
  115.      * @see Arrays#fill(short[],short)
  116.      */
  117.     public static short[] fill(final short[] a, final short val) {
  118.         if (a != null) {
  119.             Arrays.fill(a, val);
  120.         }
  121.         return a;
  122.     }

  123.     /**
  124.      * Fills and returns the given array.
  125.      *
  126.      * @param <T> the array type.
  127.      * @param a   the array to be filled (may be null).
  128.      * @param val the value to be stored in all elements of the array.
  129.      * @return the given array.
  130.      * @see Arrays#fill(Object[],Object)
  131.      */
  132.     public static <T> T[] fill(final T[] a, final T val) {
  133.         if (a != null) {
  134.             Arrays.fill(a, val);
  135.         }
  136.         return a;
  137.     }

  138.     private ArrayFill() {
  139.         // no instances
  140.     }

  141. }