Better code readability.
[svjatoslav_commons.git] / src / main / java / eu / svjatoslav / commons / string / tokenizer / Terminator.java
1 /*
2  * Svjatoslav Commons - shared library of common functionality.
3  * Copyright ©2012-2017, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
4  * 
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of version 3 of the GNU Lesser General Public License
7  * or later as published by the Free Software Foundation.
8  */
9
10 package eu.svjatoslav.commons.string.tokenizer;
11
12 public class Terminator {
13
14     final String startSequence;
15     String endSequence;
16     TerminationStrategy termination;
17
18     public Terminator(final String startPattern, TerminationStrategy termination) {
19         startSequence = startPattern;
20         this.termination = termination;
21     }
22
23     public Terminator(final String startSequence, final String endSequence, TerminationStrategy termination) {
24         this.startSequence = startSequence;
25         this.endSequence = endSequence;
26         this.termination = termination;
27     }
28
29     enum TerminationStrategy {
30         PRESERVE,
31         DROP;
32     }
33 }