在应用程序中,我有以下TreeMap对象:
treePath = new TreeMap<String, DLFolder>();
第一个String参数应该是键,而DLFolder是值。
确定DLFolder对象具有返回String的方法dlFolder.getPath()
所以我想知道treePath对象是否包含具有特定路径值的DLFolder对象
我可以做这个事吗?
特纳克斯
最佳答案
for (DLFolder dlf : treePath.values()) {
if ("A SPECIFIC PATH".equals(dlf.getPath()) {
// do someting with the dlf
}