![JAR search and dependency download from the Maven repository](/logo.png)
com.intuit.ipp.services.ReportName Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ipp-v3-java-devkit Show documentation
Show all versions of ipp-v3-java-devkit Show documentation
IPP Java V3 DevKit Project - Core
/*******************************************************************************
* Copyright (c) 2017 Intuit
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*******************************************************************************/
package com.intuit.ipp.services;
public enum ReportName {
/**
* Profit and Loss report
*/
PROFITANDLOSS("ProfitAndLoss"),
/**
* BalanceSheet report
*/
BALANCESHEET("BalanceSheet"),
/**
* CashFlow report
*/
CASHFLOW("CashFlow"),
/**
* Customer Income report
*/
CUSTOMERINCOME("CustomerIncome"),
/**
* AR Aging summary report
*/
AGEDRECEIVABLES("AgedReceivables"),
/**
* AP Aging summary report
*/
AGEDPAYABLES("AgedPayables"),
/**
* Customer Balance report
*/
CUSTOMERBALANCE("CustomerBalance"),
/**
* CustomerSales report
*/
CUSTOMERSALES("CustomerSales"),
/**
* ItemSales report
*/
ITEMSALES("ItemSales"),
/**
* DepartmentSales report
*/
DEPARTMENTSALES("DepartmentSales"),
/**
* ClassSales report
*/
CLASSSALES("ClassSales"),
/**
* Trial Balance report
*/
TRIALBALANCE("TrialBalance"),
/**
* Trial Balance report for France
*/
TRIALBALANCE_FR("TrialBalanceFR"),
/**
* Vendor Balance report
*/
VENDORBALANCE("VendorBalance"),
/**
* Trial Balance report
*/
VENDOREXPENSES("VendorExpenses"),
/**
* Inventory Valuation Summary report
*/
INVENTORYVALUATIONSUMMARY("InventoryValuationSummary"),
/**
* BAS report
*/
BAS("BAS"),
/**
* Vendor Balance Detail report
*/
VENDORBALANCEDETAIL( "VendorBalanceDetail"),
/**
* General Ledger report
*/
GENERALLEDGER( "GeneralLedger"),
/**
* General Ledger report for France
*/
GENERALLEDGER_FR( "GeneralLedgerFR"),
/**
* Aged Payable Detail report
*/
AGEDPAYABLEDETAIL( "AgedPayableDetail");
/*
* Transaction List By Date report
*/
//TRANSACTIONLISTBYDATE( "TransactionListByDate");
private String name;
/**
* Constructor operation type
*
* @param name the operation type
*/
private ReportName(String name) {
this.name = name;
}
/**
* Method to get the string value of operation type
*/
@Override
public String toString() {
return name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy