Example usage for java.util LinkedList iterator

List of usage examples for java.util LinkedList iterator

Introduction

In this page you can find the example usage for java.util LinkedList iterator.

Prototype

Iterator<E> iterator();

Source Link

Document

Returns an iterator over the elements in this list in proper sequence.

Usage

From source file:net.sourceforge.msscodefactory.cfcore.v2_1.CFGenKbRam.CFGenKbRamISOCountryCurrencyTable.java

public void deleteISOCountryCurrencyByCountryIdx(CFGenKbAuthorization Authorization,
        CFGenKbISOCountryCurrencyByCountryIdxKey argKey) {
    CFGenKbISOCountryCurrencyBuff cur;/*from   w  w w  .ja va  2s.c o m*/
    LinkedList<CFGenKbISOCountryCurrencyBuff> matchSet = new LinkedList<CFGenKbISOCountryCurrencyBuff>();
    Iterator<CFGenKbISOCountryCurrencyBuff> values = dictByPKey.values().iterator();
    while (values.hasNext()) {
        cur = values.next();
        if (argKey.equals(cur)) {
            matchSet.add(cur);
        }
    }
    Iterator<CFGenKbISOCountryCurrencyBuff> iterMatch = matchSet.iterator();
    while (iterMatch.hasNext()) {
        cur = iterMatch.next();
        deleteISOCountryCurrency(Authorization, cur);
    }
}

From source file:net.sourceforge.msscodefactory.cfcore.v2_1.CFGenKbRam.CFGenKbRamISOCountryCurrencyTable.java

public void deleteISOCountryCurrencyByCurrencyIdx(CFGenKbAuthorization Authorization,
        CFGenKbISOCountryCurrencyByCurrencyIdxKey argKey) {
    CFGenKbISOCountryCurrencyBuff cur;//from   w  ww  .  j  a v a 2s. c om
    LinkedList<CFGenKbISOCountryCurrencyBuff> matchSet = new LinkedList<CFGenKbISOCountryCurrencyBuff>();
    Iterator<CFGenKbISOCountryCurrencyBuff> values = dictByPKey.values().iterator();
    while (values.hasNext()) {
        cur = values.next();
        if (argKey.equals(cur)) {
            matchSet.add(cur);
        }
    }
    Iterator<CFGenKbISOCountryCurrencyBuff> iterMatch = matchSet.iterator();
    while (iterMatch.hasNext()) {
        cur = iterMatch.next();
        deleteISOCountryCurrency(Authorization, cur);
    }
}

From source file:net.sourceforge.msscodefactory.cfcore.v2_1.CFGenKbRam.CFGenKbRamISOCountryLanguageTable.java

public void deleteISOCountryLanguageByIdIdx(CFGenKbAuthorization Authorization,
        CFGenKbISOCountryLanguagePKey argKey) {
    CFGenKbISOCountryLanguageBuff cur;//  w w  w  . j a  va2  s .  com
    LinkedList<CFGenKbISOCountryLanguageBuff> matchSet = new LinkedList<CFGenKbISOCountryLanguageBuff>();
    Iterator<CFGenKbISOCountryLanguageBuff> values = dictByPKey.values().iterator();
    while (values.hasNext()) {
        cur = values.next();
        if (argKey.equals(cur)) {
            matchSet.add(cur);
        }
    }
    Iterator<CFGenKbISOCountryLanguageBuff> iterMatch = matchSet.iterator();
    while (iterMatch.hasNext()) {
        cur = iterMatch.next();
        deleteISOCountryLanguage(Authorization, cur);
    }
}

From source file:net.sourceforge.msscodefactory.cfcore.v2_1.CFGenKbRam.CFGenKbRamISOCountryLanguageTable.java

public void deleteISOCountryLanguageByCountryIdx(CFGenKbAuthorization Authorization,
        CFGenKbISOCountryLanguageByCountryIdxKey argKey) {
    CFGenKbISOCountryLanguageBuff cur;/*from   w ww.  j  a v a2  s.  c o m*/
    LinkedList<CFGenKbISOCountryLanguageBuff> matchSet = new LinkedList<CFGenKbISOCountryLanguageBuff>();
    Iterator<CFGenKbISOCountryLanguageBuff> values = dictByPKey.values().iterator();
    while (values.hasNext()) {
        cur = values.next();
        if (argKey.equals(cur)) {
            matchSet.add(cur);
        }
    }
    Iterator<CFGenKbISOCountryLanguageBuff> iterMatch = matchSet.iterator();
    while (iterMatch.hasNext()) {
        cur = iterMatch.next();
        deleteISOCountryLanguage(Authorization, cur);
    }
}

From source file:net.sourceforge.msscodefactory.cfcore.v2_1.CFGenKbRam.CFGenKbRamISOCountryLanguageTable.java

public void deleteISOCountryLanguageByLanguageIdx(CFGenKbAuthorization Authorization,
        CFGenKbISOCountryLanguageByLanguageIdxKey argKey) {
    CFGenKbISOCountryLanguageBuff cur;// w  w  w .j a v a  2  s .co  m
    LinkedList<CFGenKbISOCountryLanguageBuff> matchSet = new LinkedList<CFGenKbISOCountryLanguageBuff>();
    Iterator<CFGenKbISOCountryLanguageBuff> values = dictByPKey.values().iterator();
    while (values.hasNext()) {
        cur = values.next();
        if (argKey.equals(cur)) {
            matchSet.add(cur);
        }
    }
    Iterator<CFGenKbISOCountryLanguageBuff> iterMatch = matchSet.iterator();
    while (iterMatch.hasNext()) {
        cur = iterMatch.next();
        deleteISOCountryLanguage(Authorization, cur);
    }
}

From source file:net.sourceforge.msscodefactory.cfcore.v2_1.CFGenKbRam.CFGenKbRamHostNodeTable.java

public void deleteHostNodeByIdIdx(CFGenKbAuthorization Authorization, CFGenKbHostNodePKey argKey) {
    CFGenKbHostNodeBuff cur;/*from   w  ww  .j  a  v a  2s.c o m*/
    LinkedList<CFGenKbHostNodeBuff> matchSet = new LinkedList<CFGenKbHostNodeBuff>();
    Iterator<CFGenKbHostNodeBuff> values = dictByPKey.values().iterator();
    while (values.hasNext()) {
        cur = values.next();
        if (argKey.equals(cur)) {
            matchSet.add(cur);
        }
    }
    Iterator<CFGenKbHostNodeBuff> iterMatch = matchSet.iterator();
    while (iterMatch.hasNext()) {
        cur = iterMatch.next();
        deleteHostNode(Authorization, cur);
    }
}

From source file:net.sourceforge.msscodefactory.cfcore.v2_1.CFGenKbRam.CFGenKbRamHostNodeTable.java

public void deleteHostNodeByClusterIdx(CFGenKbAuthorization Authorization,
        CFGenKbHostNodeByClusterIdxKey argKey) {
    CFGenKbHostNodeBuff cur;//  ww w.  j  ava  2s.  c  om
    LinkedList<CFGenKbHostNodeBuff> matchSet = new LinkedList<CFGenKbHostNodeBuff>();
    Iterator<CFGenKbHostNodeBuff> values = dictByPKey.values().iterator();
    while (values.hasNext()) {
        cur = values.next();
        if (argKey.equals(cur)) {
            matchSet.add(cur);
        }
    }
    Iterator<CFGenKbHostNodeBuff> iterMatch = matchSet.iterator();
    while (iterMatch.hasNext()) {
        cur = iterMatch.next();
        deleteHostNode(Authorization, cur);
    }
}

From source file:net.sourceforge.msscodefactory.cfcore.v2_1.CFGenKbRam.CFGenKbRamHostNodeTable.java

public void deleteHostNodeByUDescrIdx(CFGenKbAuthorization Authorization,
        CFGenKbHostNodeByUDescrIdxKey argKey) {
    CFGenKbHostNodeBuff cur;/*from w  w  w. j  a v a  2 s  .c  o  m*/
    LinkedList<CFGenKbHostNodeBuff> matchSet = new LinkedList<CFGenKbHostNodeBuff>();
    Iterator<CFGenKbHostNodeBuff> values = dictByPKey.values().iterator();
    while (values.hasNext()) {
        cur = values.next();
        if (argKey.equals(cur)) {
            matchSet.add(cur);
        }
    }
    Iterator<CFGenKbHostNodeBuff> iterMatch = matchSet.iterator();
    while (iterMatch.hasNext()) {
        cur = iterMatch.next();
        deleteHostNode(Authorization, cur);
    }
}

From source file:net.sourceforge.msscodefactory.cfcore.v2_1.CFGenKbRam.CFGenKbRamHostNodeTable.java

public void deleteHostNodeByHostNameIdx(CFGenKbAuthorization Authorization,
        CFGenKbHostNodeByHostNameIdxKey argKey) {
    CFGenKbHostNodeBuff cur;/* w w  w.ja  va  2s.c  om*/
    LinkedList<CFGenKbHostNodeBuff> matchSet = new LinkedList<CFGenKbHostNodeBuff>();
    Iterator<CFGenKbHostNodeBuff> values = dictByPKey.values().iterator();
    while (values.hasNext()) {
        cur = values.next();
        if (argKey.equals(cur)) {
            matchSet.add(cur);
        }
    }
    Iterator<CFGenKbHostNodeBuff> iterMatch = matchSet.iterator();
    while (iterMatch.hasNext()) {
        cur = iterMatch.next();
        deleteHostNode(Authorization, cur);
    }
}

From source file:net.sourceforge.msscodefactory.cfcore.v2_1.CFGenKbRam.CFGenKbRamISOTimezoneTable.java

public void deleteISOTimezoneByIdIdx(CFGenKbAuthorization Authorization, CFGenKbISOTimezonePKey argKey) {
    CFGenKbISOTimezoneBuff cur;// w w w .j  av a2s.  c o m
    LinkedList<CFGenKbISOTimezoneBuff> matchSet = new LinkedList<CFGenKbISOTimezoneBuff>();
    Iterator<CFGenKbISOTimezoneBuff> values = dictByPKey.values().iterator();
    while (values.hasNext()) {
        cur = values.next();
        if (argKey.equals(cur)) {
            matchSet.add(cur);
        }
    }
    Iterator<CFGenKbISOTimezoneBuff> iterMatch = matchSet.iterator();
    while (iterMatch.hasNext()) {
        cur = iterMatch.next();
        deleteISOTimezone(Authorization, cur);
    }
}