public class

Iterators

extends java.lang.Object

 java.lang.Object

↳androidx.test.espresso.util.Iterators

Gradle dependencies

compile group: 'androidx.test.espresso', name: 'espresso-core', version: '3.6.1'

  • groupId: androidx.test.espresso
  • artifactId: espresso-core
  • version: 3.6.1

Artifact androidx.test.espresso:espresso-core:3.6.1 it located at Google repository (https://maven.google.com/)

Androidx artifact mapping:

androidx.test.espresso:espresso-core com.android.support.test.espresso:espresso-core

Overview

A reimplementation of needed methods from Guava, to avoid the direct dependency.

Summary

Methods
public static java.lang.ObjecttoArray(java.util.Iterator<java.lang.Object> iterator, java.lang.Class<java.lang.Object> clazz)

Converts an iterator into a array.

from java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Methods

public static java.lang.Object toArray(java.util.Iterator<java.lang.Object> iterator, java.lang.Class<java.lang.Object> clazz)

Converts an iterator into a array.

Parameters:

iterator: the java.util.Iterator to convert
clazz: the element type

Returns:

an array of all of the iterators' elements

Source

/*
 * Copyright (C) 2022 The Android Open Source Project
 *
 * 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 androidx.test.espresso.util;

import androidx.annotation.RestrictTo;
import androidx.annotation.RestrictTo.Scope;
import java.lang.reflect.Array;
import java.util.ArrayList;
import java.util.Iterator;

/**
 * A reimplementation of needed methods from Guava, to avoid the direct dependency.
 *
 * @hide
 */
@RestrictTo(Scope.LIBRARY_GROUP)
public class Iterators {

  private Iterators() {}

  /**
   * Converts an iterator into a array.
   *
   * @param iterator the {@link Iterator} to convert
   * @param clazz the element type
   * @return an array of all of the iterators' elements
   * @hide
   */
  @RestrictTo(Scope.LIBRARY_GROUP)
  public static <T> T[] toArray(Iterator<T> iterator, Class<T> clazz) {
    ArrayList<T> arrayList = new ArrayList<>();
    while (iterator.hasNext()) {
      arrayList.add(iterator.next());
    }
    return arrayList.toArray((T[]) Array.newInstance(clazz, arrayList.size()));
  }
}