Class ArrayUtils


  • public final class ArrayUtils
    extends Object
    Functions used from commons-lang
    • Constructor Detail

      • ArrayUtils

        public ArrayUtils()
    • Method Detail

      • contains

        public static boolean contains​(Object[] array,
                                       Object objectToFind)
      • filterByType

        public static <S,​T extends S> Stream<T> filterByType​(S[] array,
                                                                   Class<T> type)
      • without

        public static <T> Stream<T> without​(T[] array,
                                            T obj)
      • with

        public static <T> Stream<T> with​(T[] array,
                                         T obj)