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.cfacc.v2_0.CFAccRam.CFAccRamISOCountryLanguageTable.java

public void deleteISOCountryLanguageByIdIdx(CFAccAuthorization Authorization,
        CFAccISOCountryLanguagePKey argKey) {
    CFAccISOCountryLanguageBuff cur;/*w w  w.j  av a  2 s  .c  o m*/
    LinkedList<CFAccISOCountryLanguageBuff> matchSet = new LinkedList<CFAccISOCountryLanguageBuff>();
    Iterator<CFAccISOCountryLanguageBuff> values = dictByPKey.values().iterator();
    while (values.hasNext()) {
        cur = values.next();
        if (argKey.equals(cur)) {
            matchSet.add(cur);
        }
    }
    Iterator<CFAccISOCountryLanguageBuff> iterMatch = matchSet.iterator();
    while (iterMatch.hasNext()) {
        cur = iterMatch.next();
        deleteISOCountryLanguage(Authorization, cur);
    }
}

From source file:net.sourceforge.msscodefactory.cfacc.v2_0.CFAccRam.CFAccRamISOCountryLanguageTable.java

public void deleteISOCountryLanguageByCountryIdx(CFAccAuthorization Authorization,
        CFAccISOCountryLanguageByCountryIdxKey argKey) {
    CFAccISOCountryLanguageBuff cur;/*from   w  w  w .j  ava  2 s . c o m*/
    LinkedList<CFAccISOCountryLanguageBuff> matchSet = new LinkedList<CFAccISOCountryLanguageBuff>();
    Iterator<CFAccISOCountryLanguageBuff> values = dictByPKey.values().iterator();
    while (values.hasNext()) {
        cur = values.next();
        if (argKey.equals(cur)) {
            matchSet.add(cur);
        }
    }
    Iterator<CFAccISOCountryLanguageBuff> iterMatch = matchSet.iterator();
    while (iterMatch.hasNext()) {
        cur = iterMatch.next();
        deleteISOCountryLanguage(Authorization, cur);
    }
}

From source file:net.sourceforge.msscodefactory.cfacc.v2_0.CFAccRam.CFAccRamISOCountryLanguageTable.java

public void deleteISOCountryLanguageByLanguageIdx(CFAccAuthorization Authorization,
        CFAccISOCountryLanguageByLanguageIdxKey argKey) {
    CFAccISOCountryLanguageBuff cur;/*from   www.  j  a  va2 s  . co  m*/
    LinkedList<CFAccISOCountryLanguageBuff> matchSet = new LinkedList<CFAccISOCountryLanguageBuff>();
    Iterator<CFAccISOCountryLanguageBuff> values = dictByPKey.values().iterator();
    while (values.hasNext()) {
        cur = values.next();
        if (argKey.equals(cur)) {
            matchSet.add(cur);
        }
    }
    Iterator<CFAccISOCountryLanguageBuff> iterMatch = matchSet.iterator();
    while (iterMatch.hasNext()) {
        cur = iterMatch.next();
        deleteISOCountryLanguage(Authorization, cur);
    }
}

From source file:net.sourceforge.msscodefactory.cfacc.v2_0.CFAccRam.CFAccRamISOTimezoneTable.java

public void deleteISOTimezoneByOffsetIdx(CFAccAuthorization Authorization,
        CFAccISOTimezoneByOffsetIdxKey argKey) {
    CFAccISOTimezoneBuff cur;/*from w  w  w . j a v  a2  s . c  o  m*/
    LinkedList<CFAccISOTimezoneBuff> matchSet = new LinkedList<CFAccISOTimezoneBuff>();
    Iterator<CFAccISOTimezoneBuff> values = dictByPKey.values().iterator();
    while (values.hasNext()) {
        cur = values.next();
        if (argKey.equals(cur)) {
            matchSet.add(cur);
        }
    }
    Iterator<CFAccISOTimezoneBuff> iterMatch = matchSet.iterator();
    while (iterMatch.hasNext()) {
        cur = iterMatch.next();
        deleteISOTimezone(Authorization, cur);
    }
}

From source file:net.sourceforge.msscodefactory.cfacc.v2_0.CFAccRam.CFAccRamISOTimezoneTable.java

public void deleteISOTimezoneByUTZNameIdx(CFAccAuthorization Authorization,
        CFAccISOTimezoneByUTZNameIdxKey argKey) {
    CFAccISOTimezoneBuff cur;//from w  w  w  .  j  a  v a 2s  .  co  m
    LinkedList<CFAccISOTimezoneBuff> matchSet = new LinkedList<CFAccISOTimezoneBuff>();
    Iterator<CFAccISOTimezoneBuff> values = dictByPKey.values().iterator();
    while (values.hasNext()) {
        cur = values.next();
        if (argKey.equals(cur)) {
            matchSet.add(cur);
        }
    }
    Iterator<CFAccISOTimezoneBuff> iterMatch = matchSet.iterator();
    while (iterMatch.hasNext()) {
        cur = iterMatch.next();
        deleteISOTimezone(Authorization, cur);
    }
}

From source file:net.sourceforge.msscodefactory.cfacc.v2_0.CFAccRam.CFAccRamISOTimezoneTable.java

public void deleteISOTimezoneByIso8601Idx(CFAccAuthorization Authorization,
        CFAccISOTimezoneByIso8601IdxKey argKey) {
    CFAccISOTimezoneBuff cur;//from   w  w w .jav a  2  s  .c om
    LinkedList<CFAccISOTimezoneBuff> matchSet = new LinkedList<CFAccISOTimezoneBuff>();
    Iterator<CFAccISOTimezoneBuff> values = dictByPKey.values().iterator();
    while (values.hasNext()) {
        cur = values.next();
        if (argKey.equals(cur)) {
            matchSet.add(cur);
        }
    }
    Iterator<CFAccISOTimezoneBuff> iterMatch = matchSet.iterator();
    while (iterMatch.hasNext()) {
        cur = iterMatch.next();
        deleteISOTimezone(Authorization, cur);
    }
}

From source file:net.sourceforge.msscodefactory.cfasterisk.v2_0.CFAstRam.CFAstRamHostNodeTable.java

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

From source file:net.sourceforge.msscodefactory.cfasterisk.v2_0.CFAstRam.CFAstRamHostNodeTable.java

public void deleteHostNodeByClusterIdx(CFAstAuthorization Authorization, CFAstHostNodeByClusterIdxKey argKey) {
    CFAstHostNodeBuff cur;//from   www  .  j a  v a2  s  .  c om
    LinkedList<CFAstHostNodeBuff> matchSet = new LinkedList<CFAstHostNodeBuff>();
    Iterator<CFAstHostNodeBuff> values = dictByPKey.values().iterator();
    while (values.hasNext()) {
        cur = values.next();
        if (argKey.equals(cur)) {
            matchSet.add(cur);
        }
    }
    Iterator<CFAstHostNodeBuff> iterMatch = matchSet.iterator();
    while (iterMatch.hasNext()) {
        cur = iterMatch.next();
        deleteHostNode(Authorization, cur);
    }
}

From source file:net.sourceforge.msscodefactory.cfasterisk.v2_0.CFAstRam.CFAstRamHostNodeTable.java

public void deleteHostNodeByUDescrIdx(CFAstAuthorization Authorization, CFAstHostNodeByUDescrIdxKey argKey) {
    CFAstHostNodeBuff cur;/*from  w ww.  j ava2 s.  c om*/
    LinkedList<CFAstHostNodeBuff> matchSet = new LinkedList<CFAstHostNodeBuff>();
    Iterator<CFAstHostNodeBuff> values = dictByPKey.values().iterator();
    while (values.hasNext()) {
        cur = values.next();
        if (argKey.equals(cur)) {
            matchSet.add(cur);
        }
    }
    Iterator<CFAstHostNodeBuff> iterMatch = matchSet.iterator();
    while (iterMatch.hasNext()) {
        cur = iterMatch.next();
        deleteHostNode(Authorization, cur);
    }
}

From source file:net.sourceforge.msscodefactory.cfasterisk.v2_0.CFAstRam.CFAstRamISOCountryCurrencyTable.java

public void deleteISOCountryCurrencyByIdIdx(CFAstAuthorization Authorization,
        CFAstISOCountryCurrencyPKey argKey) {
    CFAstISOCountryCurrencyBuff cur;//from  w  w  w  .jav a 2s. com
    LinkedList<CFAstISOCountryCurrencyBuff> matchSet = new LinkedList<CFAstISOCountryCurrencyBuff>();
    Iterator<CFAstISOCountryCurrencyBuff> values = dictByPKey.values().iterator();
    while (values.hasNext()) {
        cur = values.next();
        if (argKey.equals(cur)) {
            matchSet.add(cur);
        }
    }
    Iterator<CFAstISOCountryCurrencyBuff> iterMatch = matchSet.iterator();
    while (iterMatch.hasNext()) {
        cur = iterMatch.next();
        deleteISOCountryCurrency(Authorization, cur);
    }
}