return attributeCond;
}
private SearchCond visitPrimitive(final SearchCondition<SearchBean> sc) {
String name = getRealPropertyName(sc.getStatement().getProperty());
SpecialAttr specialAttrName = SpecialAttr.fromString(name);
String value = SearchUtils.toSqlWildcardString(sc.getStatement().getValue().toString(), false).
replaceAll("\\\\_", "_");
SpecialAttr specialAttrValue = SpecialAttr.fromString(value);
AttributeCond attributeCond = createAttributeCond(name);
attributeCond.setExpression(value);
SearchCond leaf;