Community
Participate
Working Groups
// Check the scheme ids.
final String schemeId = binding.getSchemeId();
found = false;
for (int j = 0; j < activeSchemeIds.length; j++) {
if (activeSchemeIds != null) {
if (Util.equals(schemeId, activeSchemeIds[j])) {
found = true;
break;
}
if (!found) {
* This method completes in <code>O(1)</code>.
* </p>
*
* @return The array of defined schemes; this value may be empty, but it is
* @return The array of defined schemes; this value may be empty, and it may
* never <code>null</code>.
* be <code>null</code>.
*/
public final Scheme[] getDefinedSchemes() {
if ((definedSchemes == null) || (definedSchemeCount == 0)) {