org.jdice.calc.Step Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcalc Show documentation
Show all versions of jcalc Show documentation
Fluent Java API for easier work with numbers, writing formula and calculations in Java.
The newest version!
package org.jdice.calc;
/**
* Describe individual step of calculation process.
* Provided by {@link AbstractCalculator#getTracedSteps()}
*
* @author Davor Sauer
*
*/
public class Step {
private String step;
private String detailStep;
public Step(String step, String detailStep) {
this.step = step;
this.detailStep = detailStep;
}
public String getDetail() {
return detailStep;
}
@Override
public String toString() {
return step;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy