org.yx.common.matcher.BooleanMatcher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sumk Show documentation
Show all versions of sumk Show documentation
A quick developing framewort for internet company
package org.yx.common.matcher;
import java.util.function.Predicate;
public enum BooleanMatcher implements Predicate {
TRUE(true), FALSE(false);
private boolean matched;
private BooleanMatcher(boolean matched) {
this.matched = matched;
}
@Override
public boolean test(String text) {
return matched;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy