Package eu.stratosphere.api.java.record.io

Examples of eu.stratosphere.api.java.record.io.CollectionInputFormat


   *        The input data. It should be a collection, an array or a serializable iterator.
   * @param name
   *        The given name for the Pact, used in plans, logs and progress messages.
   */
  public CollectionDataSource(String name, Object... args) {
    this(new CollectionInputFormat(), name, args);
  }
View Full Code Here


  public CollectionDataSource(String name, Object... args) {
    this(new CollectionInputFormat(), name, args);
  }

  public CollectionDataSource(String name, Object[][] args) {
    this(new CollectionInputFormat(), name, args);
  }
View Full Code Here

  public CollectionDataSource(String name, Object[][] args) {
    this(new CollectionInputFormat(), name, args);
  }

  public CollectionDataSource(Collection<?> args, String name) {
    this(new CollectionInputFormat(), args, name);
  }
View Full Code Here

  public CollectionDataSource(Collection<?> args, String name) {
    this(new CollectionInputFormat(), args, name);
  }

  public <T extends Iterator<?>, Serializable> CollectionDataSource(T args, String name) {
    this(new CollectionInputFormat(), args, name);
  }
View Full Code Here

  // --------------------------------------------------------------------------------------------
  /**
   * for scala compatible, scala-to-java type conversion always has an object wrapper
   */
  public CollectionDataSource(Object... args) {
    this(new CollectionInputFormat(), args);
  }
View Full Code Here

TOP

Related Classes of eu.stratosphere.api.java.record.io.CollectionInputFormat

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.