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

com.github.tomakehurst.wiremock.matching.EagerMatchResult Maven / Gradle / Ivy

package com.github.tomakehurst.wiremock.matching;

public class EagerMatchResult extends MatchResult {

    private final double distance;

    EagerMatchResult(double distance) {
        this.distance = distance;
    }

    public double getDistance() {
        return distance;
    }

    public boolean isExactMatch() {
        return distance == 0;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy