Interface AcctFilter
-
- All Known Implementing Classes:
CombinedAccountFilter
public interface AcctFilter
Represents a filter for account objects- Author:
- Sean D. Reilly
-
-
Field Summary
Fields Modifier and Type Field Description static AcctFilter
ACTIVE_ACCOUNTS_FILTER
static AcctFilter
ACTIVE_CATEGORY_CHOICE_FILTER
common filter that excludes securities, the root account, and any inactive accountsstatic AcctFilter
ALL_ACCOUNTS_FILTER
common filter that matches all accountsstatic AcctFilter
CATEGORY_CHOICE_FILTER
common filter that excludes securities and rootstatic AcctFilter
CATEGORY_FILTER
common filter that matches all category accountsstatic AcctFilter
EDITABLE_ACCOUNTS_FILTER
static AcctFilter
INACTIVE_ACCOUNTS_FILTER
static AcctFilter
NON_CATEGORY_FILTER
common filter that matches all non-category accountsstatic AcctFilter
VIEWABLE_ACCOUNTS_FILTER
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
format(Account acct)
Returns the String representation of the given account in the context of this search.boolean
matches(Account acct)
Returns true iff the given account matches the current search criteria
-
-
-
Field Detail
-
NON_CATEGORY_FILTER
static final AcctFilter NON_CATEGORY_FILTER
common filter that matches all non-category accounts
-
ACTIVE_ACCOUNTS_FILTER
static final AcctFilter ACTIVE_ACCOUNTS_FILTER
-
INACTIVE_ACCOUNTS_FILTER
static final AcctFilter INACTIVE_ACCOUNTS_FILTER
-
VIEWABLE_ACCOUNTS_FILTER
static final AcctFilter VIEWABLE_ACCOUNTS_FILTER
-
EDITABLE_ACCOUNTS_FILTER
static final AcctFilter EDITABLE_ACCOUNTS_FILTER
-
CATEGORY_FILTER
static final AcctFilter CATEGORY_FILTER
common filter that matches all category accounts
-
ALL_ACCOUNTS_FILTER
static final AcctFilter ALL_ACCOUNTS_FILTER
common filter that matches all accounts
-
CATEGORY_CHOICE_FILTER
static final AcctFilter CATEGORY_CHOICE_FILTER
common filter that excludes securities and root
-
ACTIVE_CATEGORY_CHOICE_FILTER
static final AcctFilter ACTIVE_CATEGORY_CHOICE_FILTER
common filter that excludes securities, the root account, and any inactive accounts- Since:
- build 968
-
-