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

com.twitter.summingbird.javaapi.Wrapper Maven / Gradle / Ivy

The newest version!
package com.twitter.summingbird.javaapi;

/**
 * wraps a scala type to replace the path dependent types in Platform by a concrete type containing the same information
 *
 * @author Julien Le Dem
 *
 * @param  the wrapped type
 */
public class Wrapper {
  private final T wrapped;

  public T unwrap() {
    return wrapped;
  }

  public Wrapper(T wrapped) {
    this.wrapped = wrapped;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy