(Strategy strategy)
| 99 | private final int limit; |
| 100 | |
| 101 | private Splitter(Strategy strategy) { |
| 102 | this(strategy, false, CharMatcher.none(), Integer.MAX_VALUE); |
| 103 | } |
| 104 | |
| 105 | private Splitter(Strategy strategy, boolean omitEmptyStrings, CharMatcher trimmer, int limit) { |
| 106 | this.strategy = strategy; |