get_all_names {RJDemetra} | R Documentation |
Get the Java name of all the contained object
Description
Generic functions to retrieve the Java name of the contained multiprocessings
or the contained sa_items
.
Usage
get_all_names(x)
Arguments
x |
An object containing other objects whose names we want to know |
Value
A character
vector containing all the names.
See Also
Other functions to retrieve information from a workspace, multiprocessing or sa_item: get_name
, get_position
, count
, get_model
, get_ts
.
Examples
spec_x13 <- x13_spec(spec = "RSA5c", easter.enabled = FALSE)
sa_x13 <- x13(ipi_c_eu[, "FR"], spec = spec_x13)
spec_ts <- tramoseats_spec(spec = "RSA5")
sa_ts <- tramoseats(ipi_c_eu[, "FR"], spec = spec_ts)
wk <- new_workspace()
mp <- new_multiprocessing(wk, "sap1")
mp2 <- new_multiprocessing(wk, "sap2")
get_all_names(wk)
add_sa_item(wk, "sap1", sa_x13, "X13")
add_sa_item(wk, "sap1", sa_ts, "TramoSeats")
get_all_names(mp)
[Package RJDemetra version 0.2.6 Index]