printTable

Example by ChloeSpacedOut:
The first argument is either a Table, or it's a Userdata, which refers to any of the added Figura types
Prints the table out to chat,
specially formatted
If userdata is passed in, it is automatically converted to a table or string,
and displayed
In the case of tables inside of tables,
the "maxDepth" parameter will be used to determine how far to go
Default value for maxDepth is 1
Third argument,
"silent", will skip the chat print and will only return the string
overload 1:
printTable(table)
Method Property Fluent Description Representation
table accepts a table
Return Value a String
overload 2:
printTable(javaObject)
Method Property Fluent Description Representation
javaObject accepts an Userdata
Return Value a String
overload 3:
printTable(table, maxDepth)
Method Property Fluent Description Representation
table accepts a table
maxDepth accepts an Integer
Return Value a String
overload 4:
printTable(javaObject, maxDepth)
Method Property Fluent Description Representation
javaObject accepts an Userdata
maxDepth accepts an Integer
Return Value a String
overload 5:
printTable(table, maxDepth, silent)
Method Property Fluent Description Representation
table accepts a table
maxDepth accepts an Integer
silent accepts a Boolean
Return Value a String
overload 6:
printTable(javaObject, maxDepth, silent)
Method Property Fluent Description Representation
javaObject accepts an Userdata
maxDepth accepts an Integer
silent accepts a Boolean
Return Value a String
a a