The FMPUtils class is responsible for the functions not related logically to other components.
class FMPUtils
Property | Description |
parser |
Builder object for the FMPUtils.Parser class. var parser: Parser.Builder { get } |
requestResponse |
Builder object for the FMPUtils.RequestResponseParser class. var requestResponse: RequestResponseParser.Builder { get } |
queryResult |
Builder object for the FMPUtils.QueryResultParser class. var queryResult: QueryResultParser.Builder { get } |
string |
Builder object for the FMPUtils.FMPString class. var string: FMPUtils.FMPString.Builder { get } |
data |
Builder object for the FMPUtils.FMPData class. var data: FMPUtils.FMPData.Builder { get } |
Method | Description |
init() |
Objects initialization. init() |
Example of objects initialization:
// Get instance of the FMPUtils class
let utils: FMPUtils = FMPUtils()
// Get instance of the FMPUtils.FMPString class
let string: FMPUtils.FMPString = utils.string
.value("string")
//...
.build()
See also: