當前位置: 首頁>>代碼示例>>Java>>正文


Java SearchControls.OBJECT_SCOPE屬性代碼示例

本文整理匯總了Java中javax.naming.directory.SearchControls.OBJECT_SCOPE屬性的典型用法代碼示例。如果您正苦於以下問題:Java SearchControls.OBJECT_SCOPE屬性的具體用法?Java SearchControls.OBJECT_SCOPE怎麽用?Java SearchControls.OBJECT_SCOPE使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在javax.naming.directory.SearchControls的用法示例。


在下文中一共展示了SearchControls.OBJECT_SCOPE屬性的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: ContextEnumerator

protected ContextEnumerator(Context context, int scope, String contextName,
                         boolean returnSelf)
    throws NamingException {
    if(context == null) {
        throw new IllegalArgumentException("null context passed");
    }

    root = context;

    // No need to list children if we're only searching object
    if (scope != SearchControls.OBJECT_SCOPE) {
        children = getImmediateChildren(context);
    }
    this.scope = scope;
    this.contextName = contextName;
    // pretend root is processed, if we're not supposed to return ourself
    rootProcessed = !returnSelf;
    prepNextChild();
}
 
開發者ID:SunburstApps,項目名稱:OpenJSharp,代碼行數:19,代碼來源:ContextEnumerator.java

示例2: next

public Binding next() throws NamingException {
    if (!rootProcessed) {
        rootProcessed = true;
        return new Binding("", root.getClass().getName(),
                           root, true);
    }

    if (scope != SearchControls.OBJECT_SCOPE && hasMoreDescendants()) {
        return getNextDescendant();
    }

    throw new NoSuchElementException();
}
 
開發者ID:SunburstApps,項目名稱:OpenJSharp,代碼行數:13,代碼來源:ContextEnumerator.java

示例3: hasMore

public boolean hasMore() throws NamingException {
    return !rootProcessed ||
        (scope != SearchControls.OBJECT_SCOPE && hasMoreDescendants());
}
 
開發者ID:SunburstApps,項目名稱:OpenJSharp,代碼行數:4,代碼來源:ContextEnumerator.java


注:本文中的javax.naming.directory.SearchControls.OBJECT_SCOPE屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。