All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.mongock.driver.mongodb.reactive.util.MongoIterable Maven / Gradle / Ivy

The newest version!
package io.mongock.driver.mongodb.reactive.util;

import java.util.ArrayList;

public class MongoIterable extends ArrayList {

  public T first() {
    if(size() > 0) {
      return get(0);
    } else {
      return null;
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy