Interface SplitService
-
- All Implemented Interfaces:
public interface SplitServiceCorporate actions are events that affect the ownership of a
Stock.Corporate actions include dividends and stock splits.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceSplitService.WithRawResponseA view of SplitService that provides access to raw HTTP responses for each method.
-
Method Summary
Modifier and Type Method Description abstract SplitService.WithRawResponsewithRawResponse()Returns a view of this service that provides access to raw HTTP responses for each method. abstract SplitServicewithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. List<StockSplit>list()Get a list of stock splits for Stocksavailable for trade via Dinari.abstract List<StockSplit>list(SplitListParams params, RequestOptions requestOptions)List<StockSplit>list(SplitListParams params)List<StockSplit>list(RequestOptions requestOptions)List<StockSplit>listForStock(String stockId)Get a list of stock splits for a specific Stock.List<StockSplit>listForStock(String stockId, SplitListForStockParams params, RequestOptions requestOptions)List<StockSplit>listForStock(String stockId, SplitListForStockParams params)abstract List<StockSplit>listForStock(SplitListForStockParams params, RequestOptions requestOptions)List<StockSplit>listForStock(SplitListForStockParams params)List<StockSplit>listForStock(String stockId, RequestOptions requestOptions)-
-
Method Detail
-
withRawResponse
abstract SplitService.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract SplitService withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
list
List<StockSplit> list()
Get a list of stock splits for
Stocksavailable for trade via Dinari. The splits are ordered by the date they were created, with the most recent split first.In an example 10-for-1 stock split, trading will be halted for the stock at the end of the
payable_date, as the split transitions fromPENDINGtoIN_PROGRESS. This usually occurs over a weekend to minimize trading disruptions. Each share of stock owned by a shareholder will then be converted into 10 shares, and the split becomesCOMPLETEas trading resumes on theex_datewith new split-adjusted prices.
-
list
abstract List<StockSplit> list(SplitListParams params, RequestOptions requestOptions)
-
list
List<StockSplit> list(SplitListParams params)
-
list
List<StockSplit> list(RequestOptions requestOptions)
-
listForStock
List<StockSplit> listForStock(String stockId)
Get a list of stock splits for a specific
Stock. The splits are ordered by the date they were created, with the most recent split first.In an example 10-for-1 stock split, trading will be halted for the stock at the end of the
payable_date, as the split transitions fromPENDINGtoIN_PROGRESS. This usually occurs over a weekend to minimize trading disruptions. Each share of stock owned by a shareholder will then be converted into 10 shares, and the split becomesCOMPLETEas trading resumes on theex_datewith new split-adjusted prices.
-
listForStock
List<StockSplit> listForStock(String stockId, SplitListForStockParams params, RequestOptions requestOptions)
-
listForStock
List<StockSplit> listForStock(String stockId, SplitListForStockParams params)
-
listForStock
abstract List<StockSplit> listForStock(SplitListForStockParams params, RequestOptions requestOptions)
-
listForStock
List<StockSplit> listForStock(SplitListForStockParams params)
-
listForStock
List<StockSplit> listForStock(String stockId, RequestOptions requestOptions)
-
-
-
-