-
public interface AccountFlags
-
-
Field Summary
Fields Modifier and Type Field Description static int
CREDITS_MUST_NOT_EXCEED_DEBITS
static int
DEBITS_MUST_NOT_EXCEED_CREDITS
static int
LINKED
static int
NONE
-
Method Summary
Static Methods Modifier and Type Method Description static boolean
hasCreditsMustNotExceedDebits(int flags)
static boolean
hasDebitsMustNotExceedCredits(int flags)
static boolean
hasLinked(int flags)
-
-
-
Field Detail
-
NONE
static final int NONE
- See Also:
- Constant Field Values
-
LINKED
static final int LINKED
- See Also:
- linked, Constant Field Values
-
DEBITS_MUST_NOT_EXCEED_CREDITS
static final int DEBITS_MUST_NOT_EXCEED_CREDITS
-
CREDITS_MUST_NOT_EXCEED_DEBITS
static final int CREDITS_MUST_NOT_EXCEED_DEBITS
-
-