Uses of Record Class
com.bluebell.greenhouse.sol.models.dto.parsers.ParsedDataDTO
Packages that use ParsedDataDTO
Package
Description
Contains the parsers used by sol.
Contains the parsers used by sol.
Contains the implementations of the market price parsers used by sol.
Contains
Position parsers.Contains
Position parser
implementations.Contains parsers for transactions.
Contains the implementations of the transaction parsers used by sol.
Contains the service-layer specific to FirstRateData.
-
Uses of ParsedDataDTO in com.bluebell.greenhouse.sol.parsers
Methods in com.bluebell.greenhouse.sol.parsers that return ParsedDataDTOModifier and TypeMethodDescriptionprotected ParsedDataDTO<T> AbstractParser.generateResults(List<org.javatuples.Pair<T, FailedParsedResultEntry>> parsedResults, String fileName) Compiles the parsed results into aParsedDataDTO.Methods in com.bluebell.greenhouse.sol.parsers that return types with arguments of type ParsedDataDTOModifier and TypeMethodDescriptionprotected org.javatuples.Pair<List<List<String>>, ParsedDataDTO<T>> AbstractParser.readDelimitedRecords(File file, String delimiter) Reads a delimited file into logical csv records for processing.protected org.javatuples.Pair<List<String>, ParsedDataDTO<T>> Reads the contents of the file into a list of strings for processing. -
Uses of ParsedDataDTO in com.bluebell.greenhouse.sol.parsers.market.price
Methods in com.bluebell.greenhouse.sol.parsers.market.price that return ParsedDataDTOModifier and TypeMethodDescriptionMarketPriceParser.parseMarketPrices(String delimiter, File file, SymbolAlias symbolAlias, MarketTimeInterval interval, ZoneId zoneId) Parses a file of market prices into aParsedDataDTO.default ParsedDataDTO<MarketPrice> MarketPriceParser.parseMarketPrices(String delimiter, File file, SymbolAlias symbolAlias, MarketTimeInterval interval, ZoneId zoneId, String dateTimeFormat) Parses a file of market prices into aParsedDataDTO. -
Uses of ParsedDataDTO in com.bluebell.greenhouse.sol.parsers.market.price.impl
Methods in com.bluebell.greenhouse.sol.parsers.market.price.impl that return ParsedDataDTOModifier and TypeMethodDescriptionCsvMarketPriceParser.parseMarketPrices(String delimiter, File file, SymbolAlias symbolAlias, MarketTimeInterval interval, ZoneId zoneId) Parses a file of market prices into aParsedDataDTO.CsvMarketPriceParser.parseMarketPrices(String delimiter, File file, SymbolAlias symbolAlias, MarketTimeInterval interval, ZoneId zoneId, String dateTimeFormat) Parses a file of market prices into aParsedDataDTO.MetaTrader4MarketPriceParser.parseMarketPrices(String delimiter, File file, SymbolAlias symbolAlias, MarketTimeInterval interval, ZoneId zoneId) Parses a file of market prices into aSetofMarketPrice. -
Uses of ParsedDataDTO in com.bluebell.greenhouse.sol.parsers.position
Methods in com.bluebell.greenhouse.sol.parsers.position that return ParsedDataDTOModifier and TypeMethodDescriptiondefault ParsedDataDTO<ImportedPositionEntry> PositionParser.parsePositions(String delimiter, File file, Account account) Parses a file of positions into aParsedDataDTO.PositionParser.parsePositions(String delimiter, File file, Account account, ZoneId zoneId) Parses a file of positions into aParsedDataDTO. -
Uses of ParsedDataDTO in com.bluebell.greenhouse.sol.parsers.position.impl
Methods in com.bluebell.greenhouse.sol.parsers.position.impl that return ParsedDataDTOModifier and TypeMethodDescriptionCsvPositionParser.parsePositions(String delimiter, File file, Account account, ZoneId zoneId) Parses a file of positions into aParsedDataDTO. -
Uses of ParsedDataDTO in com.bluebell.greenhouse.sol.parsers.transaction
Methods in com.bluebell.greenhouse.sol.parsers.transaction that return ParsedDataDTOModifier and TypeMethodDescriptiondefault ParsedDataDTO<Transaction> TransactionParser.parseTransactions(String delimiter, File file, Account account) Parses a file of transactions into aParsedDataDTO.TransactionParser.parseTransactions(String delimiter, File file, Account account, ZoneId zoneId) Parses a file of transactions into aParsedDataDTO. -
Uses of ParsedDataDTO in com.bluebell.greenhouse.sol.parsers.transaction.impl
Methods in com.bluebell.greenhouse.sol.parsers.transaction.impl that return ParsedDataDTOModifier and TypeMethodDescriptionCsvTransactionParser.parseTransactions(String delimiter, File file, Account account, ZoneId zoneId) Parses a file of transactions into aParsedDataDTO. -
Uses of ParsedDataDTO in com.bluebell.greenhouse.sol.services.firstratedata
Methods in com.bluebell.greenhouse.sol.services.firstratedata that return types with arguments of type ParsedDataDTOModifier and TypeMethodDescriptionFirstRateDataIntegrationService.processDataFiles(File zippedDataFile) Processes the contents of the given file.