The toString method just leverages Schema's printing. @param context the context the method is being executed in @return a String representation of the encapsulated Schema object
(ThreadContext context)
| 678 | * @return a String representation of the encapsulated Schema object |
| 679 | */ |
| 680 | @JRubyMethod(name = {"to_s", "inspect"}) |
| 681 | public RubyString toString(ThreadContext context) { |
| 682 | return RubyString.newString(context.getRuntime(), internalSchema.toString()); |
| 683 | } |
| 684 | |
| 685 | /** |
| 686 | * This is the ruby method which allows people to access elements of the RubySchema object. |
no outgoing calls
no test coverage detected