Returns a builder for creating simple, fast escapers. A builder instance can be reused and each escaper that is created will be a snapshot of the current builder state. Builders are not thread safe. The initial state of the builder is such that: There are no replacement mappings {@c
()
| 76 | * validate the well-formedness of their input. |
| 77 | */ |
| 78 | public static Builder builder() { |
| 79 | return new Builder(); |
| 80 | } |
| 81 | |
| 82 | /** |
| 83 | * A builder for simple, fast escapers. |
no outgoing calls
no test coverage detected