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

com.rapleaf.jack.queries.Insertions Maven / Gradle / Ivy

There is a newer version: 1.8
Show newest version
package com.rapleaf.jack.queries;

import java.util.List;

import com.google.common.base.Joiner;
import com.google.common.collect.ImmutableList;

public class Insertions {

  private final List ids;

  public Insertions(List ids) {
    this.ids = ImmutableList.copyOf(ids);
  }

  public List getIds() {
    return ids;
  }

  public long getFirstId() {
    return ids.get(0);
  }

  @Override
  public String toString() {
    return Insertions.class.getSimpleName() +
        "{" +
        "ids=" + Joiner.on(",").join(ids) +
        "}";
  }

  @Override
  public int hashCode() {
    return ids.hashCode();
  }

  @Override
  public boolean equals(Object other) {
    return this == other
        || other instanceof Insertions
        && this.ids.equals(((Insertions)other).ids);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy