org.yx.common.matcher.WildcardMatcher 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
/**
* Copyright (C) 2016 - 2030 youtongluan.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.yx.common.matcher;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Set;
import java.util.function.Predicate;
import org.yx.common.ItemJoiner;
import org.yx.util.CollectionUtil;
public class WildcardMatcher implements Predicate {
private final Set exacts;
private final String[] matchStarts;
private final String[] matchEnds;
private final String[] contains;
WildcardMatcher(Set exacts, String[] matchStarts, String[] matchEnds, String[] contains) {
this.exacts = exacts;
this.matchStarts = matchStarts;
this.matchEnds = matchEnds;
this.contains = contains;
}
@Override
public boolean test(String text) {
if (this.exacts != null && this.exacts.contains(text)) {
return true;
}
if (this.matchStarts != null) {
for (String start : this.matchStarts) {
if (text.startsWith(start)) {
return true;
}
}
}
if (this.matchEnds != null) {
for (String end : this.matchEnds) {
if (text.endsWith(end)) {
return true;
}
}
}
if (this.contains != null) {
for (String c : this.contains) {
if (text.contains(c)) {
return true;
}
}
}
return false;
}
public Collection exacts() {
return exacts == null ? null : Collections.unmodifiableSet(exacts);
}
public List matchStarts() {
return CollectionUtil.unmodifyList(matchStarts);
}
public List matchEnds() {
return CollectionUtil.unmodifyList(matchEnds);
}
public List contains() {
return CollectionUtil.unmodifyList(contains);
}
@Override
public String toString() {
ItemJoiner join = new ItemJoiner(",");
if (exacts != null) {
join.item().append("exacts=").append(exacts);
}
if (matchStarts != null) {
join.item().append("matchStarts=").append(Arrays.toString(matchStarts));
}
if (matchEnds != null) {
join.item().append("matchEnds=").append(Arrays.toString(matchEnds));
}
if (contains != null) {
join.item().append("contains=").append(Arrays.toString(contains));
}
return join.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy