Class AccountIterator
- java.lang.Object
-
- com.infinitekind.moneydance.model.AccountIterator
-
-
Constructor Summary
Constructors Constructor Description AccountIterator(Account topLevelAcct)
AccountIterator(AccountBook book)
Build an iterator over all accountsAccountIterator(AccountBook book, Account ancestorAccount)
Build an iterator over all accounts, or if ancestorAccount is non-null then all descendants of it.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasNext()
Account
next()
void
remove()
-
-
-
Constructor Detail
-
AccountIterator
public AccountIterator(AccountBook book, Account ancestorAccount)
Build an iterator over all accounts, or if ancestorAccount is non-null then all descendants of it.- Since:
- build 1188 This constructor is only available as of build 1188 (Moneydance 2015.4)
-
AccountIterator
public AccountIterator(AccountBook book)
Build an iterator over all accounts
-
AccountIterator
public AccountIterator(Account topLevelAcct)
-
-