org.lastaflute.di.util.LdiArrayUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lasta-di Show documentation
Show all versions of lasta-di Show documentation
DI Container for LastaFlute, super forked from Seasar as Java8
/*
* Copyright 2015-2021 the original author or authors.
*
* 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.
*/
package org.lastaflute.di.util;
import java.lang.reflect.Array;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import org.lastaflute.di.exception.EmptyRuntimeException;
/**
* @author modified by jflute (originated in Seasar)
*/
public class LdiArrayUtil {
protected LdiArrayUtil() {
}
public static Object[] add(Object[] array, Object obj) {
if (array == null) {
throw new EmptyRuntimeException("array");
}
Object[] newArray = (Object[]) Array.newInstance(array.getClass().getComponentType(), array.length + 1);
System.arraycopy(array, 0, newArray, 0, array.length);
newArray[array.length] = obj;
return newArray;
}
public static int[] add(int[] array, int value) {
if (array == null) {
throw new EmptyRuntimeException("array");
}
int[] newArray = (int[]) Array.newInstance(int.class, array.length + 1);
System.arraycopy(array, 0, newArray, 0, array.length);
newArray[array.length] = value;
return newArray;
}
public static Object[] add(final Object[] a, final Object[] b) {
if (a != null && b != null) {
if (a.length != 0 && b.length != 0) {
Object[] array = (Object[]) Array.newInstance(a.getClass().getComponentType(), a.length + b.length);
System.arraycopy(a, 0, array, 0, a.length);
System.arraycopy(b, 0, array, a.length, b.length);
return array;
} else if (b.length == 0) {
return a;
} else {
return b;
}
} else if (b == null) {
return a;
} else {
return b;
}
}
public static int indexOf(Object[] array, Object obj) {
if (array != null) {
for (int i = 0; i < array.length; ++i) {
Object o = array[i];
if (o != null) {
if (o.equals(obj)) {
return i;
}
} else if (obj == null) {
return i;
}
}
}
return -1;
}
public static int indexOf(char[] array, char ch) {
if (array != null) {
for (int i = 0; i < array.length; ++i) {
char c = array[i];
if (ch == c) {
return i;
}
}
}
return -1;
}
public static Object[] remove(Object[] array, Object obj) {
int index = indexOf(array, obj);
if (index < 0) {
return array;
}
Object[] newArray = (Object[]) Array.newInstance(array.getClass().getComponentType(), array.length - 1);
if (index > 0) {
System.arraycopy(array, 0, newArray, 0, index);
}
if (index < array.length - 1) {
System.arraycopy(array, index + 1, newArray, index, newArray.length - index);
}
return newArray;
}
public static boolean isEmpty(Object[] arrays) {
return (arrays == null || arrays.length == 0);
}
public static boolean contains(Object[] array, Object obj) {
return -1 < indexOf(array, obj);
}
public static boolean contains(char[] array, char ch) {
return -1 < indexOf(array, ch);
}
public static boolean equalsIgnoreSequence(Object[] array1, Object[] array2) {
if (array1 == null && array2 == null) {
return true;
} else if (array1 == null || array2 == null) {
return false;
}
if (array1.length != array2.length) {
return false;
}
List