use of com.orientechnologies.orient.core.collate.OCollateFactory in project orientdb by orientechnologies.
the class OSQLEngine method getCollate.
public static OCollate getCollate(final String name) {
for (Iterator<OCollateFactory> iter = getCollateFactories(); iter.hasNext(); ) {
OCollateFactory f = iter.next();
final OCollate c = f.getCollate(name);
if (c != null)
return c;
}
return null;
}
Aggregations