Searched defs:collator (Results 1 - 21 of 21) sorted by relevance

/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/property/
H A DAttributeSchemaComparator.java40 private Collator collator = null; field in class:AttributeSchemaComparator
45 * @param collator for locale base sorting
47 public AttributeSchemaComparator(Collator collator) { argument
48 this.collator = collator;
67 if (collator != null) {
68 return collator.compare(key1, key2);
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/property/
H A DAttributeSchemaComparator.java40 private Collator collator = null; field in class:AttributeSchemaComparator
45 * @param collator for locale base sorting
47 public AttributeSchemaComparator(Collator collator) { argument
48 this.collator = collator;
67 if (collator != null) {
68 return collator.compare(key1, key2);
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/base/model/
H A DAMAttrSchemaComparator.java43 private Collator collator = null; field in class:AMAttrSchemaComparator
48 * @param collator for locale base sorting
50 public AMAttrSchemaComparator(Collator collator) { argument
51 this.collator = collator;
67 if (collator != null) {
68 return collator.compare(attr1.getI18NKey(), attr2.getI18NKey());
H A DAttributeI18NKeyComparator.java41 private Collator collator = null; field in class:AttributeI18NKeyComparator
46 * @param collator for locale base sorting
48 public AttributeI18NKeyComparator(Collator collator) { argument
49 this.collator = collator;
64 return (collator != null) ?
65 collator.compare(attr1.getI18NKey(), attr2.getI18NKey()) :
H A DSMSubConfigComparator.java42 private Collator collator = null; field in class:SMSubConfigComparator
47 * @param collator for locale base sorting
49 public SMSubConfigComparator(Collator collator) { argument
50 this.collator = collator;
69 int compareType = collator.compare(s1.getType(), s2.getType());
71 ? compareType : collator.compare(s1.getName(), s2.getName());
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/base/model/
H A DAMAttrSchemaComparator.java43 private Collator collator = null; field in class:AMAttrSchemaComparator
48 * @param collator for locale base sorting
50 public AMAttrSchemaComparator(Collator collator) { argument
51 this.collator = collator;
67 if (collator != null) {
68 return collator.compare(attr1.getI18NKey(), attr2.getI18NKey());
H A DAttributeI18NKeyComparator.java41 private Collator collator = null; field in class:AttributeI18NKeyComparator
46 * @param collator for locale base sorting
48 public AttributeI18NKeyComparator(Collator collator) { argument
49 this.collator = collator;
64 return (collator != null) ?
65 collator.compare(attr1.getI18NKey(), attr2.getI18NKey()) :
H A DSMSubConfigComparator.java42 private Collator collator = null; field in class:SMSubConfigComparator
47 * @param collator for locale base sorting
49 public SMSubConfigComparator(Collator collator) { argument
50 this.collator = collator;
69 int compareType = collator.compare(s1.getType(), s2.getType());
71 ? compareType : collator.compare(s1.getName(), s2.getName());
/forgerock/opendj-b2.6/src/server/org/opends/server/schema/
H A DCollationMatchingRuleFactory.java223 * Locale for the collator
228 Collator collator = Collator.getInstance(locale);
229 collator.setStrength(Collator.PRIMARY);
230 collator.setDecomposition(Collator.FULL_DECOMPOSITION);
231 return collator;
722 protected final Collator collator; field in class:CollationMatchingRuleFactory.CollationMatchingRule
749 this.collator = createCollator(locale);
901 CollationKey key = collator.getCollationKey(value.toString());
996 CollationKey key = collator.getCollationKey(value.toString());
1261 key = collator
[all...]
/forgerock/opendj2/src/server/org/opends/server/schema/
H A DCollationMatchingRuleFactory.java222 * Locale for the collator
227 Collator collator = Collator.getInstance(locale);
228 collator.setStrength(Collator.PRIMARY);
229 collator.setDecomposition(Collator.FULL_DECOMPOSITION);
230 return collator;
721 protected final Collator collator; field in class:CollationMatchingRuleFactory.CollationMatchingRule
748 this.collator = createCollator(locale);
900 CollationKey key = collator.getCollationKey(value.toString());
995 CollationKey key = collator.getCollationKey(value.toString());
1260 key = collator
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/schema/
H A DCollationMatchingRuleFactory.java223 * Locale for the collator
228 Collator collator = Collator.getInstance(locale);
229 collator.setStrength(Collator.PRIMARY);
230 collator.setDecomposition(Collator.FULL_DECOMPOSITION);
231 return collator;
722 protected final Collator collator; field in class:CollationMatchingRuleFactory.CollationMatchingRule
749 this.collator = createCollator(locale);
901 CollationKey key = collator.getCollationKey(value.toString());
996 CollationKey key = collator.getCollationKey(value.toString());
1261 key = collator
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/schema/
H A DCollationMatchingRuleFactory.java223 * Locale for the collator
228 Collator collator = Collator.getInstance(locale);
229 collator.setStrength(Collator.PRIMARY);
230 collator.setDecomposition(Collator.FULL_DECOMPOSITION);
231 return collator;
722 protected final Collator collator; field in class:CollationMatchingRuleFactory.CollationMatchingRule
749 this.collator = createCollator(locale);
901 CollationKey key = collator.getCollationKey(value.toString());
996 CollationKey key = collator.getCollationKey(value.toString());
1261 key = collator
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/schema/
H A DCollationMatchingRuleFactory.java222 * Locale for the collator
227 Collator collator = Collator.getInstance(locale);
228 collator.setStrength(Collator.PRIMARY);
229 collator.setDecomposition(Collator.FULL_DECOMPOSITION);
230 return collator;
721 protected final Collator collator; field in class:CollationMatchingRuleFactory.CollationMatchingRule
748 this.collator = createCollator(locale);
900 CollationKey key = collator.getCollationKey(value.toString());
995 CollationKey key = collator.getCollationKey(value.toString());
1260 key = collator
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/sdk/ldap/
H A DDirectoryServicesImpl.java1996 SortKey skey, String[] attrNames, Collator collator,
2001 tm = new TreeMap(collator);
2139 Collator collator = Collator.getInstance(Locale
2173 amResults = getSearchResults(results, skey, attrNames, collator, sc
1995 getSearchResults(SearchResults results, SortKey skey, String[] attrNames, Collator collator, boolean getAllAttrs) argument
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/sdk/ldap/
H A DDirectoryServicesImpl.java1996 SortKey skey, String[] attrNames, Collator collator,
2001 tm = new TreeMap(collator);
2139 Collator collator = Collator.getInstance(Locale
2173 amResults = getSearchResults(results, skey, attrNames, collator, sc
1995 getSearchResults(SearchResults results, SortKey skey, String[] attrNames, Collator collator, boolean getAllAttrs) argument
/forgerock/opendj2/ext/xalan-j/
H A Dxalan.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/xalan/ org/apache/xalan/client/ ...
/forgerock/opendj-b2.6/ext/xalan-j/
H A Dxalan.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/xalan/ org/apache/xalan/client/ ...
/forgerock/opendj2.6.2/ext/xalan-j/
H A Dxalan.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/xalan/ org/apache/xalan/client/ ...
/forgerock/opendj2-jel-hg/ext/xalan-j/
H A Dxalan.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/xalan/ org/apache/xalan/client/ ...
/forgerock/opendj2-hg/ext/xalan-j/
H A Dxalan.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/xalan/ org/apache/xalan/client/ ...
/forgerock/opendj-v3/opendj-server-legacy/ext/xalan-j/
H A Dxalan.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/xalan/ org/apache/xalan/client/ ...

Completed in 94 milliseconds