001package org.unix4j.unix.sort;
002
003import java.util.Arrays;
004import java.util.Collections;
005import java.util.EnumSet;
006import java.util.Iterator;
007import org.unix4j.option.Option;
008
009import org.unix4j.unix.Sort;
010
011/**
012 * Option sets for the {@link Sort sort} command with 
013 * the following options: {@link #d d}, {@link #f f}, {@link #b b}, {@link #m m}, {@link #M M}, {@link #r r}, {@link #u u}.
014 * <p>
015 * Application code does normally not directly refer to this class;
016 * {@link Sort#Options} should be used instead to specify command 
017 * options. See also {@link org.unix4j.unix.sort.SortOptions} for more information.
018 */
019public enum SortOptionSet_Mbdfmru implements SortOptions {
020        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}, {@link #reverse r}, {@link #unique u}.*/
021        Active_Mbdfmru(
022                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
023                true, 
024                /*active:*/SortOption.dictionaryOrder, SortOption.ignoreCase, SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort, SortOption.reverse, SortOption.unique
025        ),
026        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}, {@link #reverse r}, {@link #unique u}.*/
027        Active_Mbdfmru_long(
028                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
029                false, 
030                /*active:*/SortOption.dictionaryOrder, SortOption.ignoreCase, SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort, SortOption.reverse, SortOption.unique
031        ),
032        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}, {@link #unique u}.*/
033        Active_Mbdfmu(
034                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mbdfmru, /*reverse:*/Active_Mbdfmru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
035                true, 
036                /*active:*/SortOption.dictionaryOrder, SortOption.ignoreCase, SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort, SortOption.unique
037        ),
038        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}, {@link #unique u}.*/
039        Active_Mbdfmu_long(
040                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mbdfmru, /*reverse:*/Active_Mbdfmru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
041                false, 
042                /*active:*/SortOption.dictionaryOrder, SortOption.ignoreCase, SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort, SortOption.unique
043        ),
044        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}, {@link #reverse r}, {@link #unique u}.*/
045        Active_Mbdmru(
046                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/Active_Mbdfmru, /*ignoreCase:*/Active_Mbdfmru_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
047                true, 
048                /*active:*/SortOption.dictionaryOrder, SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort, SortOption.reverse, SortOption.unique
049        ),
050        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}, {@link #reverse r}, {@link #unique u}.*/
051        Active_Mbdmru_long(
052                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/Active_Mbdfmru, /*ignoreCase:*/Active_Mbdfmru_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
053                false, 
054                /*active:*/SortOption.dictionaryOrder, SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort, SortOption.reverse, SortOption.unique
055        ),
056        /** Option set with the following active options: {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}, {@link #reverse r}, {@link #unique u}.*/
057        Active_Mbfmru(
058                /*d:*/Active_Mbdfmru, /*dictionaryOrder:*/Active_Mbdfmru_long, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
059                true, 
060                /*active:*/SortOption.ignoreCase, SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort, SortOption.reverse, SortOption.unique
061        ),
062        /** Option set with the following active options: {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}, {@link #reverse r}, {@link #unique u}.*/
063        Active_Mbfmru_long(
064                /*d:*/Active_Mbdfmru, /*dictionaryOrder:*/Active_Mbdfmru_long, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
065                false, 
066                /*active:*/SortOption.ignoreCase, SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort, SortOption.reverse, SortOption.unique
067        ),
068        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #ignoreCase f}, {@link #merge m}, {@link #monthSort M}, {@link #reverse r}, {@link #unique u}.*/
069        Active_Mdfmru(
070                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_Mbdfmru, /*ignoreLeadingBlanks:*/Active_Mbdfmru_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
071                true, 
072                /*active:*/SortOption.dictionaryOrder, SortOption.ignoreCase, SortOption.merge, SortOption.monthSort, SortOption.reverse, SortOption.unique
073        ),
074        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #ignoreCase f}, {@link #merge m}, {@link #monthSort M}, {@link #reverse r}, {@link #unique u}.*/
075        Active_Mdfmru_long(
076                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_Mbdfmru, /*ignoreLeadingBlanks:*/Active_Mbdfmru_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
077                false, 
078                /*active:*/SortOption.dictionaryOrder, SortOption.ignoreCase, SortOption.merge, SortOption.monthSort, SortOption.reverse, SortOption.unique
079        ),
080        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}, {@link #reverse r}.*/
081        Active_Mbdfmr(
082                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_Mbdfmru, /*unique:*/Active_Mbdfmru_long, 
083                true, 
084                /*active:*/SortOption.dictionaryOrder, SortOption.ignoreCase, SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort, SortOption.reverse
085        ),
086        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}, {@link #reverse r}.*/
087        Active_Mbdfmr_long(
088                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_Mbdfmru, /*unique:*/Active_Mbdfmru_long, 
089                false, 
090                /*active:*/SortOption.dictionaryOrder, SortOption.ignoreCase, SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort, SortOption.reverse
091        ),
092        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}, {@link #unique u}.*/
093        Active_Mbdmu(
094                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/Active_Mbdfmu, /*ignoreCase:*/Active_Mbdfmu_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mbdmru, /*reverse:*/Active_Mbdmru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
095                true, 
096                /*active:*/SortOption.dictionaryOrder, SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort, SortOption.unique
097        ),
098        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}, {@link #unique u}.*/
099        Active_Mbdmu_long(
100                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/Active_Mbdfmu, /*ignoreCase:*/Active_Mbdfmu_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mbdmru, /*reverse:*/Active_Mbdmru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
101                false, 
102                /*active:*/SortOption.dictionaryOrder, SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort, SortOption.unique
103        ),
104        /** Option set with the following active options: {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}, {@link #unique u}.*/
105        Active_Mbfmu(
106                /*d:*/Active_Mbdfmu, /*dictionaryOrder:*/Active_Mbdfmu_long, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mbfmru, /*reverse:*/Active_Mbfmru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
107                true, 
108                /*active:*/SortOption.ignoreCase, SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort, SortOption.unique
109        ),
110        /** Option set with the following active options: {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}, {@link #unique u}.*/
111        Active_Mbfmu_long(
112                /*d:*/Active_Mbdfmu, /*dictionaryOrder:*/Active_Mbdfmu_long, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mbfmru, /*reverse:*/Active_Mbfmru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
113                false, 
114                /*active:*/SortOption.ignoreCase, SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort, SortOption.unique
115        ),
116        /** Option set with the following active options: {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}, {@link #reverse r}, {@link #unique u}.*/
117        Active_Mbmru(
118                /*d:*/Active_Mbdmru, /*dictionaryOrder:*/Active_Mbdmru_long, /*f:*/Active_Mbfmru, /*ignoreCase:*/Active_Mbfmru_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
119                true, 
120                /*active:*/SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort, SortOption.reverse, SortOption.unique
121        ),
122        /** Option set with the following active options: {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}, {@link #reverse r}, {@link #unique u}.*/
123        Active_Mbmru_long(
124                /*d:*/Active_Mbdmru, /*dictionaryOrder:*/Active_Mbdmru_long, /*f:*/Active_Mbfmru, /*ignoreCase:*/Active_Mbfmru_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
125                false, 
126                /*active:*/SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort, SortOption.reverse, SortOption.unique
127        ),
128        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #ignoreCase f}, {@link #merge m}, {@link #monthSort M}, {@link #unique u}.*/
129        Active_Mdfmu(
130                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_Mbdfmu, /*ignoreLeadingBlanks:*/Active_Mbdfmu_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mdfmru, /*reverse:*/Active_Mdfmru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
131                true, 
132                /*active:*/SortOption.dictionaryOrder, SortOption.ignoreCase, SortOption.merge, SortOption.monthSort, SortOption.unique
133        ),
134        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #ignoreCase f}, {@link #merge m}, {@link #monthSort M}, {@link #unique u}.*/
135        Active_Mdfmu_long(
136                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_Mbdfmu, /*ignoreLeadingBlanks:*/Active_Mbdfmu_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mdfmru, /*reverse:*/Active_Mdfmru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
137                false, 
138                /*active:*/SortOption.dictionaryOrder, SortOption.ignoreCase, SortOption.merge, SortOption.monthSort, SortOption.unique
139        ),
140        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #merge m}, {@link #monthSort M}, {@link #reverse r}, {@link #unique u}.*/
141        Active_Mdmru(
142                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/Active_Mdfmru, /*ignoreCase:*/Active_Mdfmru_long, /*b:*/Active_Mbdmru, /*ignoreLeadingBlanks:*/Active_Mbdmru_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
143                true, 
144                /*active:*/SortOption.dictionaryOrder, SortOption.merge, SortOption.monthSort, SortOption.reverse, SortOption.unique
145        ),
146        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #merge m}, {@link #monthSort M}, {@link #reverse r}, {@link #unique u}.*/
147        Active_Mdmru_long(
148                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/Active_Mdfmru, /*ignoreCase:*/Active_Mdfmru_long, /*b:*/Active_Mbdmru, /*ignoreLeadingBlanks:*/Active_Mbdmru_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
149                false, 
150                /*active:*/SortOption.dictionaryOrder, SortOption.merge, SortOption.monthSort, SortOption.reverse, SortOption.unique
151        ),
152        /** Option set with the following active options: {@link #ignoreCase f}, {@link #merge m}, {@link #monthSort M}, {@link #reverse r}, {@link #unique u}.*/
153        Active_Mfmru(
154                /*d:*/Active_Mdfmru, /*dictionaryOrder:*/Active_Mdfmru_long, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_Mbfmru, /*ignoreLeadingBlanks:*/Active_Mbfmru_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
155                true, 
156                /*active:*/SortOption.ignoreCase, SortOption.merge, SortOption.monthSort, SortOption.reverse, SortOption.unique
157        ),
158        /** Option set with the following active options: {@link #ignoreCase f}, {@link #merge m}, {@link #monthSort M}, {@link #reverse r}, {@link #unique u}.*/
159        Active_Mfmru_long(
160                /*d:*/Active_Mdfmru, /*dictionaryOrder:*/Active_Mdfmru_long, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_Mbfmru, /*ignoreLeadingBlanks:*/Active_Mbfmru_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
161                false, 
162                /*active:*/SortOption.ignoreCase, SortOption.merge, SortOption.monthSort, SortOption.reverse, SortOption.unique
163        ),
164        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}.*/
165        Active_Mbdfm(
166                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mbdfmr, /*reverse:*/Active_Mbdfmr_long, /*u:*/Active_Mbdfmu, /*unique:*/Active_Mbdfmu_long, 
167                true, 
168                /*active:*/SortOption.dictionaryOrder, SortOption.ignoreCase, SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort
169        ),
170        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}.*/
171        Active_Mbdfm_long(
172                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mbdfmr, /*reverse:*/Active_Mbdfmr_long, /*u:*/Active_Mbdfmu, /*unique:*/Active_Mbdfmu_long, 
173                false, 
174                /*active:*/SortOption.dictionaryOrder, SortOption.ignoreCase, SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort
175        ),
176        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}, {@link #reverse r}.*/
177        Active_Mbdmr(
178                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/Active_Mbdfmr, /*ignoreCase:*/Active_Mbdfmr_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_Mbdmru, /*unique:*/Active_Mbdmru_long, 
179                true, 
180                /*active:*/SortOption.dictionaryOrder, SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort, SortOption.reverse
181        ),
182        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}, {@link #reverse r}.*/
183        Active_Mbdmr_long(
184                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/Active_Mbdfmr, /*ignoreCase:*/Active_Mbdfmr_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_Mbdmru, /*unique:*/Active_Mbdmru_long, 
185                false, 
186                /*active:*/SortOption.dictionaryOrder, SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort, SortOption.reverse
187        ),
188        /** Option set with the following active options: {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}, {@link #reverse r}.*/
189        Active_Mbfmr(
190                /*d:*/Active_Mbdfmr, /*dictionaryOrder:*/Active_Mbdfmr_long, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_Mbfmru, /*unique:*/Active_Mbfmru_long, 
191                true, 
192                /*active:*/SortOption.ignoreCase, SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort, SortOption.reverse
193        ),
194        /** Option set with the following active options: {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}, {@link #reverse r}.*/
195        Active_Mbfmr_long(
196                /*d:*/Active_Mbdfmr, /*dictionaryOrder:*/Active_Mbdfmr_long, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_Mbfmru, /*unique:*/Active_Mbfmru_long, 
197                false, 
198                /*active:*/SortOption.ignoreCase, SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort, SortOption.reverse
199        ),
200        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #ignoreCase f}, {@link #merge m}, {@link #monthSort M}, {@link #reverse r}.*/
201        Active_Mdfmr(
202                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_Mbdfmr, /*ignoreLeadingBlanks:*/Active_Mbdfmr_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_Mdfmru, /*unique:*/Active_Mdfmru_long, 
203                true, 
204                /*active:*/SortOption.dictionaryOrder, SortOption.ignoreCase, SortOption.merge, SortOption.monthSort, SortOption.reverse
205        ),
206        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #ignoreCase f}, {@link #merge m}, {@link #monthSort M}, {@link #reverse r}.*/
207        Active_Mdfmr_long(
208                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_Mbdfmr, /*ignoreLeadingBlanks:*/Active_Mbdfmr_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_Mdfmru, /*unique:*/Active_Mdfmru_long, 
209                false, 
210                /*active:*/SortOption.dictionaryOrder, SortOption.ignoreCase, SortOption.merge, SortOption.monthSort, SortOption.reverse
211        ),
212        /** Option set with the following active options: {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}, {@link #unique u}.*/
213        Active_Mbmu(
214                /*d:*/Active_Mbdmu, /*dictionaryOrder:*/Active_Mbdmu_long, /*f:*/Active_Mbfmu, /*ignoreCase:*/Active_Mbfmu_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mbmru, /*reverse:*/Active_Mbmru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
215                true, 
216                /*active:*/SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort, SortOption.unique
217        ),
218        /** Option set with the following active options: {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}, {@link #unique u}.*/
219        Active_Mbmu_long(
220                /*d:*/Active_Mbdmu, /*dictionaryOrder:*/Active_Mbdmu_long, /*f:*/Active_Mbfmu, /*ignoreCase:*/Active_Mbfmu_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mbmru, /*reverse:*/Active_Mbmru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
221                false, 
222                /*active:*/SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort, SortOption.unique
223        ),
224        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #merge m}, {@link #monthSort M}, {@link #unique u}.*/
225        Active_Mdmu(
226                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/Active_Mdfmu, /*ignoreCase:*/Active_Mdfmu_long, /*b:*/Active_Mbdmu, /*ignoreLeadingBlanks:*/Active_Mbdmu_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mdmru, /*reverse:*/Active_Mdmru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
227                true, 
228                /*active:*/SortOption.dictionaryOrder, SortOption.merge, SortOption.monthSort, SortOption.unique
229        ),
230        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #merge m}, {@link #monthSort M}, {@link #unique u}.*/
231        Active_Mdmu_long(
232                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/Active_Mdfmu, /*ignoreCase:*/Active_Mdfmu_long, /*b:*/Active_Mbdmu, /*ignoreLeadingBlanks:*/Active_Mbdmu_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mdmru, /*reverse:*/Active_Mdmru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
233                false, 
234                /*active:*/SortOption.dictionaryOrder, SortOption.merge, SortOption.monthSort, SortOption.unique
235        ),
236        /** Option set with the following active options: {@link #ignoreCase f}, {@link #merge m}, {@link #monthSort M}, {@link #unique u}.*/
237        Active_Mfmu(
238                /*d:*/Active_Mdfmu, /*dictionaryOrder:*/Active_Mdfmu_long, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_Mbfmu, /*ignoreLeadingBlanks:*/Active_Mbfmu_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mfmru, /*reverse:*/Active_Mfmru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
239                true, 
240                /*active:*/SortOption.ignoreCase, SortOption.merge, SortOption.monthSort, SortOption.unique
241        ),
242        /** Option set with the following active options: {@link #ignoreCase f}, {@link #merge m}, {@link #monthSort M}, {@link #unique u}.*/
243        Active_Mfmu_long(
244                /*d:*/Active_Mdfmu, /*dictionaryOrder:*/Active_Mdfmu_long, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_Mbfmu, /*ignoreLeadingBlanks:*/Active_Mbfmu_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mfmru, /*reverse:*/Active_Mfmru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
245                false, 
246                /*active:*/SortOption.ignoreCase, SortOption.merge, SortOption.monthSort, SortOption.unique
247        ),
248        /** Option set with the following active options: {@link #merge m}, {@link #monthSort M}, {@link #reverse r}, {@link #unique u}.*/
249        Active_Mmru(
250                /*d:*/Active_Mdmru, /*dictionaryOrder:*/Active_Mdmru_long, /*f:*/Active_Mfmru, /*ignoreCase:*/Active_Mfmru_long, /*b:*/Active_Mbmru, /*ignoreLeadingBlanks:*/Active_Mbmru_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
251                true, 
252                /*active:*/SortOption.merge, SortOption.monthSort, SortOption.reverse, SortOption.unique
253        ),
254        /** Option set with the following active options: {@link #merge m}, {@link #monthSort M}, {@link #reverse r}, {@link #unique u}.*/
255        Active_Mmru_long(
256                /*d:*/Active_Mdmru, /*dictionaryOrder:*/Active_Mdmru_long, /*f:*/Active_Mfmru, /*ignoreCase:*/Active_Mfmru_long, /*b:*/Active_Mbmru, /*ignoreLeadingBlanks:*/Active_Mbmru_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
257                false, 
258                /*active:*/SortOption.merge, SortOption.monthSort, SortOption.reverse, SortOption.unique
259        ),
260        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}.*/
261        Active_Mbdm(
262                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/Active_Mbdfm, /*ignoreCase:*/Active_Mbdfm_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mbdmr, /*reverse:*/Active_Mbdmr_long, /*u:*/Active_Mbdmu, /*unique:*/Active_Mbdmu_long, 
263                true, 
264                /*active:*/SortOption.dictionaryOrder, SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort
265        ),
266        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}.*/
267        Active_Mbdm_long(
268                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/Active_Mbdfm, /*ignoreCase:*/Active_Mbdfm_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mbdmr, /*reverse:*/Active_Mbdmr_long, /*u:*/Active_Mbdmu, /*unique:*/Active_Mbdmu_long, 
269                false, 
270                /*active:*/SortOption.dictionaryOrder, SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort
271        ),
272        /** Option set with the following active options: {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}.*/
273        Active_Mbfm(
274                /*d:*/Active_Mbdfm, /*dictionaryOrder:*/Active_Mbdfm_long, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mbfmr, /*reverse:*/Active_Mbfmr_long, /*u:*/Active_Mbfmu, /*unique:*/Active_Mbfmu_long, 
275                true, 
276                /*active:*/SortOption.ignoreCase, SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort
277        ),
278        /** Option set with the following active options: {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}.*/
279        Active_Mbfm_long(
280                /*d:*/Active_Mbdfm, /*dictionaryOrder:*/Active_Mbdfm_long, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mbfmr, /*reverse:*/Active_Mbfmr_long, /*u:*/Active_Mbfmu, /*unique:*/Active_Mbfmu_long, 
281                false, 
282                /*active:*/SortOption.ignoreCase, SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort
283        ),
284        /** Option set with the following active options: {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}, {@link #reverse r}.*/
285        Active_Mbmr(
286                /*d:*/Active_Mbdmr, /*dictionaryOrder:*/Active_Mbdmr_long, /*f:*/Active_Mbfmr, /*ignoreCase:*/Active_Mbfmr_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_Mbmru, /*unique:*/Active_Mbmru_long, 
287                true, 
288                /*active:*/SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort, SortOption.reverse
289        ),
290        /** Option set with the following active options: {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}, {@link #reverse r}.*/
291        Active_Mbmr_long(
292                /*d:*/Active_Mbdmr, /*dictionaryOrder:*/Active_Mbdmr_long, /*f:*/Active_Mbfmr, /*ignoreCase:*/Active_Mbfmr_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_Mbmru, /*unique:*/Active_Mbmru_long, 
293                false, 
294                /*active:*/SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort, SortOption.reverse
295        ),
296        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #ignoreCase f}, {@link #merge m}, {@link #monthSort M}.*/
297        Active_Mdfm(
298                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_Mbdfm, /*ignoreLeadingBlanks:*/Active_Mbdfm_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mdfmr, /*reverse:*/Active_Mdfmr_long, /*u:*/Active_Mdfmu, /*unique:*/Active_Mdfmu_long, 
299                true, 
300                /*active:*/SortOption.dictionaryOrder, SortOption.ignoreCase, SortOption.merge, SortOption.monthSort
301        ),
302        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #ignoreCase f}, {@link #merge m}, {@link #monthSort M}.*/
303        Active_Mdfm_long(
304                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_Mbdfm, /*ignoreLeadingBlanks:*/Active_Mbdfm_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mdfmr, /*reverse:*/Active_Mdfmr_long, /*u:*/Active_Mdfmu, /*unique:*/Active_Mdfmu_long, 
305                false, 
306                /*active:*/SortOption.dictionaryOrder, SortOption.ignoreCase, SortOption.merge, SortOption.monthSort
307        ),
308        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #merge m}, {@link #monthSort M}, {@link #reverse r}.*/
309        Active_Mdmr(
310                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/Active_Mdfmr, /*ignoreCase:*/Active_Mdfmr_long, /*b:*/Active_Mbdmr, /*ignoreLeadingBlanks:*/Active_Mbdmr_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_Mdmru, /*unique:*/Active_Mdmru_long, 
311                true, 
312                /*active:*/SortOption.dictionaryOrder, SortOption.merge, SortOption.monthSort, SortOption.reverse
313        ),
314        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #merge m}, {@link #monthSort M}, {@link #reverse r}.*/
315        Active_Mdmr_long(
316                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/Active_Mdfmr, /*ignoreCase:*/Active_Mdfmr_long, /*b:*/Active_Mbdmr, /*ignoreLeadingBlanks:*/Active_Mbdmr_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_Mdmru, /*unique:*/Active_Mdmru_long, 
317                false, 
318                /*active:*/SortOption.dictionaryOrder, SortOption.merge, SortOption.monthSort, SortOption.reverse
319        ),
320        /** Option set with the following active options: {@link #ignoreCase f}, {@link #merge m}, {@link #monthSort M}, {@link #reverse r}.*/
321        Active_Mfmr(
322                /*d:*/Active_Mdfmr, /*dictionaryOrder:*/Active_Mdfmr_long, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_Mbfmr, /*ignoreLeadingBlanks:*/Active_Mbfmr_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_Mfmru, /*unique:*/Active_Mfmru_long, 
323                true, 
324                /*active:*/SortOption.ignoreCase, SortOption.merge, SortOption.monthSort, SortOption.reverse
325        ),
326        /** Option set with the following active options: {@link #ignoreCase f}, {@link #merge m}, {@link #monthSort M}, {@link #reverse r}.*/
327        Active_Mfmr_long(
328                /*d:*/Active_Mdfmr, /*dictionaryOrder:*/Active_Mdfmr_long, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_Mbfmr, /*ignoreLeadingBlanks:*/Active_Mbfmr_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_Mfmru, /*unique:*/Active_Mfmru_long, 
329                false, 
330                /*active:*/SortOption.ignoreCase, SortOption.merge, SortOption.monthSort, SortOption.reverse
331        ),
332        /** Option set with the following active options: {@link #merge m}, {@link #monthSort M}, {@link #unique u}.*/
333        Active_Mmu(
334                /*d:*/Active_Mdmu, /*dictionaryOrder:*/Active_Mdmu_long, /*f:*/Active_Mfmu, /*ignoreCase:*/Active_Mfmu_long, /*b:*/Active_Mbmu, /*ignoreLeadingBlanks:*/Active_Mbmu_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mmru, /*reverse:*/Active_Mmru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
335                true, 
336                /*active:*/SortOption.merge, SortOption.monthSort, SortOption.unique
337        ),
338        /** Option set with the following active options: {@link #merge m}, {@link #monthSort M}, {@link #unique u}.*/
339        Active_Mmu_long(
340                /*d:*/Active_Mdmu, /*dictionaryOrder:*/Active_Mdmu_long, /*f:*/Active_Mfmu, /*ignoreCase:*/Active_Mfmu_long, /*b:*/Active_Mbmu, /*ignoreLeadingBlanks:*/Active_Mbmu_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mmru, /*reverse:*/Active_Mmru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 
341                false, 
342                /*active:*/SortOption.merge, SortOption.monthSort, SortOption.unique
343        ),
344        /** Option set with the following active options: {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}.*/
345        Active_Mbm(
346                /*d:*/Active_Mbdm, /*dictionaryOrder:*/Active_Mbdm_long, /*f:*/Active_Mbfm, /*ignoreCase:*/Active_Mbfm_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mbmr, /*reverse:*/Active_Mbmr_long, /*u:*/Active_Mbmu, /*unique:*/Active_Mbmu_long, 
347                true, 
348                /*active:*/SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort
349        ),
350        /** Option set with the following active options: {@link #ignoreLeadingBlanks b}, {@link #merge m}, {@link #monthSort M}.*/
351        Active_Mbm_long(
352                /*d:*/Active_Mbdm, /*dictionaryOrder:*/Active_Mbdm_long, /*f:*/Active_Mbfm, /*ignoreCase:*/Active_Mbfm_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mbmr, /*reverse:*/Active_Mbmr_long, /*u:*/Active_Mbmu, /*unique:*/Active_Mbmu_long, 
353                false, 
354                /*active:*/SortOption.ignoreLeadingBlanks, SortOption.merge, SortOption.monthSort
355        ),
356        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #merge m}, {@link #monthSort M}.*/
357        Active_Mdm(
358                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/Active_Mdfm, /*ignoreCase:*/Active_Mdfm_long, /*b:*/Active_Mbdm, /*ignoreLeadingBlanks:*/Active_Mbdm_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mdmr, /*reverse:*/Active_Mdmr_long, /*u:*/Active_Mdmu, /*unique:*/Active_Mdmu_long, 
359                true, 
360                /*active:*/SortOption.dictionaryOrder, SortOption.merge, SortOption.monthSort
361        ),
362        /** Option set with the following active options: {@link #dictionaryOrder d}, {@link #merge m}, {@link #monthSort M}.*/
363        Active_Mdm_long(
364                /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*f:*/Active_Mdfm, /*ignoreCase:*/Active_Mdfm_long, /*b:*/Active_Mbdm, /*ignoreLeadingBlanks:*/Active_Mbdm_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mdmr, /*reverse:*/Active_Mdmr_long, /*u:*/Active_Mdmu, /*unique:*/Active_Mdmu_long, 
365                false, 
366                /*active:*/SortOption.dictionaryOrder, SortOption.merge, SortOption.monthSort
367        ),
368        /** Option set with the following active options: {@link #ignoreCase f}, {@link #merge m}, {@link #monthSort M}.*/
369        Active_Mfm(
370                /*d:*/Active_Mdfm, /*dictionaryOrder:*/Active_Mdfm_long, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_Mbfm, /*ignoreLeadingBlanks:*/Active_Mbfm_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mfmr, /*reverse:*/Active_Mfmr_long, /*u:*/Active_Mfmu, /*unique:*/Active_Mfmu_long, 
371                true, 
372                /*active:*/SortOption.ignoreCase, SortOption.merge, SortOption.monthSort
373        ),
374        /** Option set with the following active options: {@link #ignoreCase f}, {@link #merge m}, {@link #monthSort M}.*/
375        Active_Mfm_long(
376                /*d:*/Active_Mdfm, /*dictionaryOrder:*/Active_Mdfm_long, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_Mbfm, /*ignoreLeadingBlanks:*/Active_Mbfm_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mfmr, /*reverse:*/Active_Mfmr_long, /*u:*/Active_Mfmu, /*unique:*/Active_Mfmu_long, 
377                false, 
378                /*active:*/SortOption.ignoreCase, SortOption.merge, SortOption.monthSort
379        ),
380        /** Option set with the following active options: {@link #merge m}, {@link #monthSort M}, {@link #reverse r}.*/
381        Active_Mmr(
382                /*d:*/Active_Mdmr, /*dictionaryOrder:*/Active_Mdmr_long, /*f:*/Active_Mfmr, /*ignoreCase:*/Active_Mfmr_long, /*b:*/Active_Mbmr, /*ignoreLeadingBlanks:*/Active_Mbmr_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_Mmru, /*unique:*/Active_Mmru_long, 
383                true, 
384                /*active:*/SortOption.merge, SortOption.monthSort, SortOption.reverse
385        ),
386        /** Option set with the following active options: {@link #merge m}, {@link #monthSort M}, {@link #reverse r}.*/
387        Active_Mmr_long(
388                /*d:*/Active_Mdmr, /*dictionaryOrder:*/Active_Mdmr_long, /*f:*/Active_Mfmr, /*ignoreCase:*/Active_Mfmr_long, /*b:*/Active_Mbmr, /*ignoreLeadingBlanks:*/Active_Mbmr_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_Mmru, /*unique:*/Active_Mmru_long, 
389                false, 
390                /*active:*/SortOption.merge, SortOption.monthSort, SortOption.reverse
391        ),
392        /** Option set with the following active options: {@link #merge m}, {@link #monthSort M}.*/
393        Active_Mm(
394                /*d:*/Active_Mdm, /*dictionaryOrder:*/Active_Mdm_long, /*f:*/Active_Mfm, /*ignoreCase:*/Active_Mfm_long, /*b:*/Active_Mbm, /*ignoreLeadingBlanks:*/Active_Mbm_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mmr, /*reverse:*/Active_Mmr_long, /*u:*/Active_Mmu, /*unique:*/Active_Mmu_long, 
395                true, 
396                /*active:*/SortOption.merge, SortOption.monthSort
397        ),
398        /** Option set with the following active options: {@link #merge m}, {@link #monthSort M}.*/
399        Active_Mm_long(
400                /*d:*/Active_Mdm, /*dictionaryOrder:*/Active_Mdm_long, /*f:*/Active_Mfm, /*ignoreCase:*/Active_Mfm_long, /*b:*/Active_Mbm, /*ignoreLeadingBlanks:*/Active_Mbm_long, /*m:*/null /*already set*/, /*merge:*/null /*already set*/, /*M:*/null /*already set*/, /*monthSort:*/null /*already set*/, /*r:*/Active_Mmr, /*reverse:*/Active_Mmr_long, /*u:*/Active_Mmu, /*unique:*/Active_Mmu_long, 
401                false, 
402                /*active:*/SortOption.merge, SortOption.monthSort
403        );
404        private SortOptionSet_Mbdfmru(
405                SortOptionSet_Mbdfmru d, SortOptionSet_Mbdfmru dictionaryOrder, SortOptionSet_Mbdfmru f, SortOptionSet_Mbdfmru ignoreCase, SortOptionSet_Mbdfmru b, SortOptionSet_Mbdfmru ignoreLeadingBlanks, SortOptionSet_Mbdfmru m, SortOptionSet_Mbdfmru merge, SortOptionSet_Mbdfmru M, SortOptionSet_Mbdfmru monthSort, SortOptionSet_Mbdfmru r, SortOptionSet_Mbdfmru reverse, SortOptionSet_Mbdfmru u, SortOptionSet_Mbdfmru unique, 
406                boolean useAcronym,
407                SortOption... activeOptions
408        ) {
409                this.d = d == null ? this : d;
410                this.dictionaryOrder = dictionaryOrder == null ? this : dictionaryOrder;
411                this.f = f == null ? this : f;
412                this.ignoreCase = ignoreCase == null ? this : ignoreCase;
413                this.b = b == null ? this : b;
414                this.ignoreLeadingBlanks = ignoreLeadingBlanks == null ? this : ignoreLeadingBlanks;
415                this.m = m == null ? this : m;
416                this.merge = merge == null ? this : merge;
417                this.M = M == null ? this : M;
418                this.monthSort = monthSort == null ? this : monthSort;
419                this.r = r == null ? this : r;
420                this.reverse = reverse == null ? this : reverse;
421                this.u = u == null ? this : u;
422                this.unique = unique == null ? this : unique;
423                this.useAcronym = useAcronym;
424                this.options = activeOptions.length == 0 ? EnumSet.noneOf(SortOption.class) : EnumSet.copyOf(Arrays.asList(activeOptions));
425        }
426        private final boolean useAcronym;
427        /**
428         * Option {@code "-d"}: Consider only blanks and alphanumeric characters.
429                        (This option is ignored if a comparator operand is present).
430         * <p>
431         * The option {@code "-d"} is equivalent to the {@code "--}{@link #dictionaryOrder dictionaryOrder}{@code "} option.
432         * <p>
433         * Technically speaking, this field points to a set with the options of the 
434         * current set plus the option {@code "-d"}. If the option {@code "-d"}
435         * is already set, the field {@code d} points to the enum constant itself
436         * as it already represents the current set of options.
437         */
438        public final SortOptionSet_Mbdfmru d;
439        /**
440         * Option {@code "--dictionaryOrder"}: Consider only blanks and alphanumeric characters.
441                        (This option is ignored if a comparator operand is present).
442         * <p>
443         * The option {@code "--dictionaryOrder"} is equivalent to the {@code "-}{@link #d d}{@code "} option.
444         * <p>
445         * Technically speaking, this field points to a set with the options of the 
446         * current set plus the option {@code "--dictionaryOrder"}. If the option {@code "--dictionaryOrder"}
447         * is already set, the field {@code dictionaryOrder} points to the enum constant itself
448         * as it already represents the current set of options.
449         */
450        public final SortOptionSet_Mbdfmru dictionaryOrder;
451        /**
452         * Option {@code "-f"}: Consider all lowercase characters that have uppercase equivalents to
453                        be the uppercase equivalent for the purposes of comparison.
454                        (This option is ignored if a comparator operand is present).
455         * <p>
456         * The option {@code "-f"} is equivalent to the {@code "--}{@link #ignoreCase ignoreCase}{@code "} option.
457         * <p>
458         * Technically speaking, this field points to a set with the options of the 
459         * current set plus the option {@code "-f"}. If the option {@code "-f"}
460         * is already set, the field {@code f} points to the enum constant itself
461         * as it already represents the current set of options.
462         */
463        public final SortOptionSet_Mbdfmru f;
464        /**
465         * Option {@code "--ignoreCase"}: Consider all lowercase characters that have uppercase equivalents to
466                        be the uppercase equivalent for the purposes of comparison.
467                        (This option is ignored if a comparator operand is present).
468         * <p>
469         * The option {@code "--ignoreCase"} is equivalent to the {@code "-}{@link #f f}{@code "} option.
470         * <p>
471         * Technically speaking, this field points to a set with the options of the 
472         * current set plus the option {@code "--ignoreCase"}. If the option {@code "--ignoreCase"}
473         * is already set, the field {@code ignoreCase} points to the enum constant itself
474         * as it already represents the current set of options.
475         */
476        public final SortOptionSet_Mbdfmru ignoreCase;
477        /**
478         * Option {@code "-b"}: Ignore leading blanks. 
479                        (This option is ignored if a comparator operand is present).
480         * <p>
481         * The option {@code "-b"} is equivalent to the {@code "--}{@link #ignoreLeadingBlanks ignoreLeadingBlanks}{@code "} option.
482         * <p>
483         * Technically speaking, this field points to a set with the options of the 
484         * current set plus the option {@code "-b"}. If the option {@code "-b"}
485         * is already set, the field {@code b} points to the enum constant itself
486         * as it already represents the current set of options.
487         */
488        public final SortOptionSet_Mbdfmru b;
489        /**
490         * Option {@code "--ignoreLeadingBlanks"}: Ignore leading blanks. 
491                        (This option is ignored if a comparator operand is present).
492         * <p>
493         * The option {@code "--ignoreLeadingBlanks"} is equivalent to the {@code "-}{@link #b b}{@code "} option.
494         * <p>
495         * Technically speaking, this field points to a set with the options of the 
496         * current set plus the option {@code "--ignoreLeadingBlanks"}. If the option {@code "--ignoreLeadingBlanks"}
497         * is already set, the field {@code ignoreLeadingBlanks} points to the enum constant itself
498         * as it already represents the current set of options.
499         */
500        public final SortOptionSet_Mbdfmru ignoreLeadingBlanks;
501        /**
502         * Option {@code "-m"}: Merge only; the input file are assumed to be already sorted.
503         * <p>
504         * The option {@code "-m"} is equivalent to the {@code "--}{@link #merge merge}{@code "} option.
505         * <p>
506         * Technically speaking, this field points to a set with the options of the 
507         * current set plus the option {@code "-m"}. If the option {@code "-m"}
508         * is already set, the field {@code m} points to the enum constant itself
509         * as it already represents the current set of options.
510         */
511        public final SortOptionSet_Mbdfmru m;
512        /**
513         * Option {@code "--merge"}: Merge only; the input file are assumed to be already sorted.
514         * <p>
515         * The option {@code "--merge"} is equivalent to the {@code "-}{@link #m m}{@code "} option.
516         * <p>
517         * Technically speaking, this field points to a set with the options of the 
518         * current set plus the option {@code "--merge"}. If the option {@code "--merge"}
519         * is already set, the field {@code merge} points to the enum constant itself
520         * as it already represents the current set of options.
521         */
522        public final SortOptionSet_Mbdfmru merge;
523        /**
524         * Option {@code "-M"}: An initial string, consisting of any amount of blanks, followed by a
525                        month name abbreviation, is folded to UPPER case and compared in the
526                        order: (unknown) < 'JAN' < ... < 'DEC'. The current locale
527                        determines the month spellings.
528         * <p>
529         * The option {@code "-M"} is equivalent to the {@code "--}{@link #monthSort monthSort}{@code "} option.
530         * <p>
531         * Technically speaking, this field points to a set with the options of the 
532         * current set plus the option {@code "-M"}. If the option {@code "-M"}
533         * is already set, the field {@code M} points to the enum constant itself
534         * as it already represents the current set of options.
535         */
536        public final SortOptionSet_Mbdfmru M;
537        /**
538         * Option {@code "--monthSort"}: An initial string, consisting of any amount of blanks, followed by a
539                        month name abbreviation, is folded to UPPER case and compared in the
540                        order: (unknown) < 'JAN' < ... < 'DEC'. The current locale
541                        determines the month spellings.
542         * <p>
543         * The option {@code "--monthSort"} is equivalent to the {@code "-}{@link #M M}{@code "} option.
544         * <p>
545         * Technically speaking, this field points to a set with the options of the 
546         * current set plus the option {@code "--monthSort"}. If the option {@code "--monthSort"}
547         * is already set, the field {@code monthSort} points to the enum constant itself
548         * as it already represents the current set of options.
549         */
550        public final SortOptionSet_Mbdfmru monthSort;
551        /**
552         * Option {@code "-r"}: Reverse the sense of comparisons.
553         * <p>
554         * The option {@code "-r"} is equivalent to the {@code "--}{@link #reverse reverse}{@code "} option.
555         * <p>
556         * Technically speaking, this field points to a set with the options of the 
557         * current set plus the option {@code "-r"}. If the option {@code "-r"}
558         * is already set, the field {@code r} points to the enum constant itself
559         * as it already represents the current set of options.
560         */
561        public final SortOptionSet_Mbdfmru r;
562        /**
563         * Option {@code "--reverse"}: Reverse the sense of comparisons.
564         * <p>
565         * The option {@code "--reverse"} is equivalent to the {@code "-}{@link #r r}{@code "} option.
566         * <p>
567         * Technically speaking, this field points to a set with the options of the 
568         * current set plus the option {@code "--reverse"}. If the option {@code "--reverse"}
569         * is already set, the field {@code reverse} points to the enum constant itself
570         * as it already represents the current set of options.
571         */
572        public final SortOptionSet_Mbdfmru reverse;
573        /**
574         * Option {@code "-u"}: Unique: suppress all but one in each set of lines having equal keys.
575                        If used with the {@code -c} option, checks that there are no lines 
576                        with duplicate keys, in addition to checking that the input file is 
577                        sorted.
578         * <p>
579         * The option {@code "-u"} is equivalent to the {@code "--}{@link #unique unique}{@code "} option.
580         * <p>
581         * Technically speaking, this field points to a set with the options of the 
582         * current set plus the option {@code "-u"}. If the option {@code "-u"}
583         * is already set, the field {@code u} points to the enum constant itself
584         * as it already represents the current set of options.
585         */
586        public final SortOptionSet_Mbdfmru u;
587        /**
588         * Option {@code "--unique"}: Unique: suppress all but one in each set of lines having equal keys.
589                        If used with the {@code -c} option, checks that there are no lines 
590                        with duplicate keys, in addition to checking that the input file is 
591                        sorted.
592         * <p>
593         * The option {@code "--unique"} is equivalent to the {@code "-}{@link #u u}{@code "} option.
594         * <p>
595         * Technically speaking, this field points to a set with the options of the 
596         * current set plus the option {@code "--unique"}. If the option {@code "--unique"}
597         * is already set, the field {@code unique} points to the enum constant itself
598         * as it already represents the current set of options.
599         */
600        public final SortOptionSet_Mbdfmru unique;
601        private final EnumSet<SortOption> options;
602        
603        //inherit javadoc
604        @Override
605        public Class<SortOption> optionType() {
606                return SortOption.class;
607        }
608        //inherit javadoc
609        @Override
610        public boolean isSet(SortOption option) {
611                return options.contains(option);
612        }
613        //inherit javadoc
614        @Override
615        public int size() {
616                return options.size();
617        }
618        /**
619         * Returns the set with the active options. The returned set a new defensive
620         * copy instance created when this method is called, modifications of this
621         * set will therefore not alter {@code this} option set.
622         * 
623         * @return a copy of the set with the active options.
624         */
625        @Override
626        public EnumSet<SortOption> asSet() {
627                return EnumSet.copyOf(options);
628        }
629        /**
630         * Returns an immutable iterator with the active options of this option set.
631         * 
632         * @return an immutable iterator for over the active options
633         */
634        @Override
635        public Iterator<SortOption> iterator() {
636                return Collections.unmodifiableSet(options).iterator();
637        }
638        /**
639         * Returns true if the {@link Option#acronym() acronym} should be used in
640         * for the specified {@code option} string representations. 
641         * <p>
642         * In particular and independent from the {@code option} argument, this 
643         * option set returns true if the last option added to this set was an 
644         * acronym, and false if it was a long option name. 
645         * <p>
646         * For instance, the set defined as
647         * <pre>
648         *    SortOptionSet_Mbdfmru.dictionaryOrder.f;
649         * </pre>
650         * uses acronyms, that is, this method always returns true for the above 
651         * set. 
652         * <p>
653         * On the other hand, long option names are used and this method always 
654         * returns false for the set
655         * <pre>
656         *    SortOptionSet_Mbdfmru.d.ignoreCase;
657         * </pre>
658         * <p>
659         * Note that a repeated option is <i>not</i> treated as the last set option.
660         * For instance, the first and last option of the following set are 
661         * equivalent and acronyms are used:
662         * <pre>
663         *    SortOptionSet_Mbdfmru.d.f.dictionaryOrder;
664         * </pre>
665         * <p>
666         * This method always returns true for the empty set with no active options.
667         *  
668         * @param option
669         *            the option of interest, has no impact on the result returned
670         *            by this method
671         * @return true if option acronyms should be used for string representations
672         *         of any option of this option set
673         */
674        @Override
675        public boolean useAcronymFor(SortOption option) {
676                return useAcronym;
677        }
678}