NegativeKeywordListIterator

Contains the methods for iterating through a list of negative keyword lists. For information about iterators, see Iterators.

Example usage:

    // Gets the iterator that iterates all negative keyword
    // lists in the account.
    var iterator = AdsApp.negativeKeywordLists().get();

    // Loops through all lists in the account.
    while (iterator.hasNext()) {
        var nkwList = iterator.next();
    }

Methods

Method Name Return Type Description
hasNext Boolean Gets a Boolean value that indicates whether this iterator has more elements.
next NegativeKeywordList Advances the iterator and returns the next negative keyword list.
totalNumEntities int Gets the number of negative keywords lists that matched selector's selection criteria.

hasNext

Gets a Boolean value that indicates whether this iterator has more elements.

Returns

Type Description
Boolean Is true if this iterator has more elements; otherwise, false.

next

Advances the iterator and returns the next negative keyword list.

Returns

Type Description
NegativeKeywordList The next negative keywords list in the iterator.

totalNumEntities

Gets the number of negative keywords lists that matched the selector's selection criteria.

Returns

Type Description
int The number of negative keywords lists that matched the selector's selection criteria.

See also