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

/openjdk7/jdk/src/share/classes/javax/naming/ldap/
H A DSortControl.java124 * @param sortBy An attribute ID to sort by.
133 public SortControl(String sortBy, boolean criticality) throws IOException { argument
136 super.value = setEncodedValue(new SortKey[]{ new SortKey(sortBy) });
144 * @param sortBy A non-null list of attribute IDs to sort by.
155 public SortControl(String[] sortBy, boolean criticality) argument
159 SortKey[] sortKeys = new SortKey[sortBy.length];
160 for (int i = 0; i < sortBy.length; i++) {
161 sortKeys[i] = new SortKey(sortBy[i]);
170 * @param sortBy A non-null list of keys to sort by.
181 public SortControl(SortKey[] sortBy, boolea argument
[all...]

Completed in 21 milliseconds