for (PathDef pathDef : PathDef.values()) {
if (!pathDef.isVip()) {
nonViPathes.add(_zkConf.getZkPath(pathDef));
}
}
string = ZkPathUtil.toString(_zkClient, _zkConf.getZkRootPath(), new PathFilter() {
@Override
public boolean showChilds(String path) {
return !nonViPathes.contains(path);
}
});