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

com.vtence.molecule.lib.IsEqual Maven / Gradle / Ivy

There is a newer version: 0.15.0
Show newest version
package com.vtence.molecule.lib;

public class IsEqual implements Matcher {
    private final T other;

    public IsEqual(T other) {
        this.other = other;
    }

    public boolean matches(T actual) {
        return other.equals(actual);
    }

    public static  IsEqual equalTo(T other) {
        return new IsEqual(other);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy