我有以下接口:
public interface Endpoint {
void reply(HttpExchange exchange, Map<String, String> parameters, boolean prettyPrint);
}
public interface Nameable {
String getName();
}
public interface Patternable { // I seriously suck at naming, you could also suggest a name for this one
String getPattern();
}
并且有一个管理器类,该类提供一个存储端点的列表,以及一个从该列表获取端点的方法。这就是我到目前为止为该方法所做的:
public Endpoint getEndpoint(String nameORpattern) {
return endpointList.stream().filter(endpoint -> {
if (endpoint instanceof Nameable) {
return ((Nameable) endpoint).getName().equalsIgnoreCase(nameORpattern);
} else if (endpoint instanceof Patternable) {
return Pattern.compile(((Patternable) endpoint).getPattern()).matcher(nameORpattern).find();
} else {
return false;
}
}).findFirst().orElse(null);
}
但我们都知道这是怎么回事,意大利面代码。。。所以,我的问题是:找到并返回端点的最佳方法是什么?
暂无答案!
目前还没有任何答案,快来回答吧!