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

org.jdice.calc.Step Maven / Gradle / Ivy

Go to download

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