Entry point for visitor pattern. Implementations of this method by concrete classes will simply call the appropriate visit method on the visitor . For example, instances of IonBool will invoke ValueVisitor#visit(IonBool). @param visitor will have one of it
(ValueVisitor visitor)
| 406 | * <code>null</code>. |
| 407 | */ |
| 408 | public void accept(ValueVisitor visitor) throws Exception; |
| 409 | |
| 410 | |
| 411 | /** |
no outgoing calls