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

com.arextest.diff.model.key.RatioEntity Maven / Gradle / Ivy

There is a newer version: 0.2.15
Show newest version
package com.arextest.diff.model.key;

public class RatioEntity {

  private int firstIndex;

  private int secondIndex;

  private float ratio;

  public RatioEntity() {
  }

  public RatioEntity(int firstIndex, int secondInedx, float ratio) {
    this.firstIndex = firstIndex;
    this.secondIndex = secondInedx;
    this.ratio = ratio;
  }

  public int getFirstIndex() {
    return firstIndex;
  }

  public int getSecondIndex() {
    return secondIndex;
  }

  public float getRatio() {
    return ratio;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy