Enum ReportSpec.ReportGenerator
- java.lang.Object
-
- java.lang.Enum<ReportSpec.ReportGenerator>
-
- com.infinitekind.moneydance.model.ReportSpec.ReportGenerator
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ReportSpec.ReportGenerator>
- Enclosing class:
- ReportSpec
public static enum ReportSpec.ReportGenerator extends java.lang.Enum<ReportSpec.ReportGenerator>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getLongID()
ReportSpec.Type
getReportType()
java.lang.String
getShortID()
static ReportSpec.ReportGenerator
reportTypeForID(java.lang.String shortIDOrClassname)
static ReportSpec.ReportGenerator
reportTypeForLegacyID(java.lang.String reportID)
static ReportSpec.ReportGenerator
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ReportSpec.ReportGenerator[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NETWORTH_G
public static final ReportSpec.ReportGenerator NETWORTH_G
-
ACCBALANCE_G
public static final ReportSpec.ReportGenerator ACCBALANCE_G
-
ASSETALLOCATE_G
public static final ReportSpec.ReportGenerator ASSETALLOCATE_G
-
CURRENCY_G
public static final ReportSpec.ReportGenerator CURRENCY_G
-
EXPENSES_G
public static final ReportSpec.ReportGenerator EXPENSES_G
-
INCOME_EXPENSE_G
public static final ReportSpec.ReportGenerator INCOME_EXPENSE_G
-
INCOME_G
public static final ReportSpec.ReportGenerator INCOME_G
-
NETWORTH_T
public static final ReportSpec.ReportGenerator NETWORTH_T
-
ACCBALANCE_T
public static final ReportSpec.ReportGenerator ACCBALANCE_T
-
ASSETALLOCATE_T
public static final ReportSpec.ReportGenerator ASSETALLOCATE_T
-
DETAILEDCASHFLOW_T
public static final ReportSpec.ReportGenerator DETAILEDCASHFLOW_T
-
CASHFLOW_T
public static final ReportSpec.ReportGenerator CASHFLOW_T
-
INCEXP_T
public static final ReportSpec.ReportGenerator INCEXP_T
-
DETAILEDINCEXP_T
public static final ReportSpec.ReportGenerator DETAILEDINCEXP_T
-
TXN_T
public static final ReportSpec.ReportGenerator TXN_T
-
XFER_T
public static final ReportSpec.ReportGenerator XFER_T
-
DETAILEDXFER_T
public static final ReportSpec.ReportGenerator DETAILEDXFER_T
-
SEARCH_T
public static final ReportSpec.ReportGenerator SEARCH_T
-
INVSEARCH_T
public static final ReportSpec.ReportGenerator INVSEARCH_T
-
BUDGET_T
public static final ReportSpec.ReportGenerator BUDGET_T
-
MISSCHECKS_T
public static final ReportSpec.ReportGenerator MISSCHECKS_T
-
COSTBASIS_T
public static final ReportSpec.ReportGenerator COSTBASIS_T
-
CAPGAINS_T
public static final ReportSpec.ReportGenerator CAPGAINS_T
-
INVESTPERF_T
public static final ReportSpec.ReportGenerator INVESTPERF_T
-
PORTFOLIO_T
public static final ReportSpec.ReportGenerator PORTFOLIO_T
-
VAT_T
public static final ReportSpec.ReportGenerator VAT_T
-
TAGTOTAL_T
public static final ReportSpec.ReportGenerator TAGTOTAL_T
-
RECONCILIATION_T
public static final ReportSpec.ReportGenerator RECONCILIATION_T
-
-
Method Detail
-
values
public static ReportSpec.ReportGenerator[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ReportSpec.ReportGenerator c : ReportSpec.ReportGenerator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReportSpec.ReportGenerator valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getReportType
public ReportSpec.Type getReportType()
-
getLongID
public java.lang.String getLongID()
-
getShortID
public java.lang.String getShortID()
-
reportTypeForID
public static ReportSpec.ReportGenerator reportTypeForID(java.lang.String shortIDOrClassname)
-
reportTypeForLegacyID
public static ReportSpec.ReportGenerator reportTypeForLegacyID(java.lang.String reportID)
-
-