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 #c c}, {@link #d d}, {@link #h h}, {@link #f f}, {@link #b b}, {@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_bcdfhru implements SortOptions { 020 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}, {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}, {@link #reverse r}, {@link #unique u}.*/ 021 Active_bcdfhru( 022 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 023 true, 024 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort, SortOption.ignoreCase, SortOption.ignoreLeadingBlanks, SortOption.reverse, SortOption.unique 025 ), 026 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}, {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}, {@link #reverse r}, {@link #unique u}.*/ 027 Active_bcdfhru_long( 028 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 029 false, 030 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort, SortOption.ignoreCase, SortOption.ignoreLeadingBlanks, SortOption.reverse, SortOption.unique 031 ), 032 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}, {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}, {@link #unique u}.*/ 033 Active_bcdfhu( 034 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/Active_bcdfhru, /*reverse:*/Active_bcdfhru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 035 true, 036 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort, SortOption.ignoreCase, SortOption.ignoreLeadingBlanks, SortOption.unique 037 ), 038 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}, {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}, {@link #unique u}.*/ 039 Active_bcdfhu_long( 040 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/Active_bcdfhru, /*reverse:*/Active_bcdfhru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 041 false, 042 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort, SortOption.ignoreCase, SortOption.ignoreLeadingBlanks, SortOption.unique 043 ), 044 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}, {@link #ignoreLeadingBlanks b}, {@link #reverse r}, {@link #unique u}.*/ 045 Active_bcdhru( 046 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_bcdfhru, /*ignoreCase:*/Active_bcdfhru_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 047 true, 048 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort, SortOption.ignoreLeadingBlanks, SortOption.reverse, SortOption.unique 049 ), 050 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}, {@link #ignoreLeadingBlanks b}, {@link #reverse r}, {@link #unique u}.*/ 051 Active_bcdhru_long( 052 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_bcdfhru, /*ignoreCase:*/Active_bcdfhru_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 053 false, 054 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort, SortOption.ignoreLeadingBlanks, SortOption.reverse, SortOption.unique 055 ), 056 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}, {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}, {@link #reverse r}, {@link #unique u}.*/ 057 Active_bcfhru( 058 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_bcdfhru, /*dictionaryOrder:*/Active_bcdfhru_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 059 true, 060 /*active:*/SortOption.check, SortOption.humanNumericSort, SortOption.ignoreCase, SortOption.ignoreLeadingBlanks, SortOption.reverse, SortOption.unique 061 ), 062 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}, {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}, {@link #reverse r}, {@link #unique u}.*/ 063 Active_bcfhru_long( 064 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_bcdfhru, /*dictionaryOrder:*/Active_bcdfhru_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 065 false, 066 /*active:*/SortOption.check, SortOption.humanNumericSort, SortOption.ignoreCase, SortOption.ignoreLeadingBlanks, SortOption.reverse, SortOption.unique 067 ), 068 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}, {@link #ignoreCase f}, {@link #reverse r}, {@link #unique u}.*/ 069 Active_cdfhru( 070 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_bcdfhru, /*ignoreLeadingBlanks:*/Active_bcdfhru_long, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 071 true, 072 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort, SortOption.ignoreCase, SortOption.reverse, SortOption.unique 073 ), 074 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}, {@link #ignoreCase f}, {@link #reverse r}, {@link #unique u}.*/ 075 Active_cdfhru_long( 076 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_bcdfhru, /*ignoreLeadingBlanks:*/Active_bcdfhru_long, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 077 false, 078 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort, SortOption.ignoreCase, SortOption.reverse, SortOption.unique 079 ), 080 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}, {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}, {@link #reverse r}.*/ 081 Active_bcdfhr( 082 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_bcdfhru, /*unique:*/Active_bcdfhru_long, 083 true, 084 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort, SortOption.ignoreCase, SortOption.ignoreLeadingBlanks, SortOption.reverse 085 ), 086 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}, {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}, {@link #reverse r}.*/ 087 Active_bcdfhr_long( 088 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_bcdfhru, /*unique:*/Active_bcdfhru_long, 089 false, 090 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort, SortOption.ignoreCase, SortOption.ignoreLeadingBlanks, SortOption.reverse 091 ), 092 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}, {@link #ignoreLeadingBlanks b}, {@link #unique u}.*/ 093 Active_bcdhu( 094 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_bcdfhu, /*ignoreCase:*/Active_bcdfhu_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/Active_bcdhru, /*reverse:*/Active_bcdhru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 095 true, 096 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort, SortOption.ignoreLeadingBlanks, SortOption.unique 097 ), 098 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}, {@link #ignoreLeadingBlanks b}, {@link #unique u}.*/ 099 Active_bcdhu_long( 100 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_bcdfhu, /*ignoreCase:*/Active_bcdfhu_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/Active_bcdhru, /*reverse:*/Active_bcdhru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 101 false, 102 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort, SortOption.ignoreLeadingBlanks, SortOption.unique 103 ), 104 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}, {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}, {@link #unique u}.*/ 105 Active_bcfhu( 106 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_bcdfhu, /*dictionaryOrder:*/Active_bcdfhu_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/Active_bcfhru, /*reverse:*/Active_bcfhru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 107 true, 108 /*active:*/SortOption.check, SortOption.humanNumericSort, SortOption.ignoreCase, SortOption.ignoreLeadingBlanks, SortOption.unique 109 ), 110 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}, {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}, {@link #unique u}.*/ 111 Active_bcfhu_long( 112 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_bcdfhu, /*dictionaryOrder:*/Active_bcdfhu_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/Active_bcfhru, /*reverse:*/Active_bcfhru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 113 false, 114 /*active:*/SortOption.check, SortOption.humanNumericSort, SortOption.ignoreCase, SortOption.ignoreLeadingBlanks, SortOption.unique 115 ), 116 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}, {@link #ignoreLeadingBlanks b}, {@link #reverse r}, {@link #unique u}.*/ 117 Active_bchru( 118 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_bcdhru, /*dictionaryOrder:*/Active_bcdhru_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_bcfhru, /*ignoreCase:*/Active_bcfhru_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 119 true, 120 /*active:*/SortOption.check, SortOption.humanNumericSort, SortOption.ignoreLeadingBlanks, SortOption.reverse, SortOption.unique 121 ), 122 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}, {@link #ignoreLeadingBlanks b}, {@link #reverse r}, {@link #unique u}.*/ 123 Active_bchru_long( 124 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_bcdhru, /*dictionaryOrder:*/Active_bcdhru_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_bcfhru, /*ignoreCase:*/Active_bcfhru_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 125 false, 126 /*active:*/SortOption.check, SortOption.humanNumericSort, SortOption.ignoreLeadingBlanks, SortOption.reverse, SortOption.unique 127 ), 128 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}, {@link #ignoreCase f}, {@link #unique u}.*/ 129 Active_cdfhu( 130 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_bcdfhu, /*ignoreLeadingBlanks:*/Active_bcdfhu_long, /*r:*/Active_cdfhru, /*reverse:*/Active_cdfhru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 131 true, 132 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort, SortOption.ignoreCase, SortOption.unique 133 ), 134 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}, {@link #ignoreCase f}, {@link #unique u}.*/ 135 Active_cdfhu_long( 136 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_bcdfhu, /*ignoreLeadingBlanks:*/Active_bcdfhu_long, /*r:*/Active_cdfhru, /*reverse:*/Active_cdfhru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 137 false, 138 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort, SortOption.ignoreCase, SortOption.unique 139 ), 140 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}, {@link #reverse r}, {@link #unique u}.*/ 141 Active_cdhru( 142 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_cdfhru, /*ignoreCase:*/Active_cdfhru_long, /*b:*/Active_bcdhru, /*ignoreLeadingBlanks:*/Active_bcdhru_long, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 143 true, 144 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort, SortOption.reverse, SortOption.unique 145 ), 146 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}, {@link #reverse r}, {@link #unique u}.*/ 147 Active_cdhru_long( 148 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_cdfhru, /*ignoreCase:*/Active_cdfhru_long, /*b:*/Active_bcdhru, /*ignoreLeadingBlanks:*/Active_bcdhru_long, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 149 false, 150 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort, SortOption.reverse, SortOption.unique 151 ), 152 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}, {@link #ignoreCase f}, {@link #reverse r}, {@link #unique u}.*/ 153 Active_cfhru( 154 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_cdfhru, /*dictionaryOrder:*/Active_cdfhru_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_bcfhru, /*ignoreLeadingBlanks:*/Active_bcfhru_long, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 155 true, 156 /*active:*/SortOption.check, SortOption.humanNumericSort, SortOption.ignoreCase, SortOption.reverse, SortOption.unique 157 ), 158 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}, {@link #ignoreCase f}, {@link #reverse r}, {@link #unique u}.*/ 159 Active_cfhru_long( 160 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_cdfhru, /*dictionaryOrder:*/Active_cdfhru_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_bcfhru, /*ignoreLeadingBlanks:*/Active_bcfhru_long, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 161 false, 162 /*active:*/SortOption.check, SortOption.humanNumericSort, SortOption.ignoreCase, SortOption.reverse, SortOption.unique 163 ), 164 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}, {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}.*/ 165 Active_bcdfh( 166 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/Active_bcdfhr, /*reverse:*/Active_bcdfhr_long, /*u:*/Active_bcdfhu, /*unique:*/Active_bcdfhu_long, 167 true, 168 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort, SortOption.ignoreCase, SortOption.ignoreLeadingBlanks 169 ), 170 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}, {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}.*/ 171 Active_bcdfh_long( 172 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/Active_bcdfhr, /*reverse:*/Active_bcdfhr_long, /*u:*/Active_bcdfhu, /*unique:*/Active_bcdfhu_long, 173 false, 174 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort, SortOption.ignoreCase, SortOption.ignoreLeadingBlanks 175 ), 176 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}, {@link #ignoreLeadingBlanks b}, {@link #reverse r}.*/ 177 Active_bcdhr( 178 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_bcdfhr, /*ignoreCase:*/Active_bcdfhr_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_bcdhru, /*unique:*/Active_bcdhru_long, 179 true, 180 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort, SortOption.ignoreLeadingBlanks, SortOption.reverse 181 ), 182 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}, {@link #ignoreLeadingBlanks b}, {@link #reverse r}.*/ 183 Active_bcdhr_long( 184 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_bcdfhr, /*ignoreCase:*/Active_bcdfhr_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_bcdhru, /*unique:*/Active_bcdhru_long, 185 false, 186 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort, SortOption.ignoreLeadingBlanks, SortOption.reverse 187 ), 188 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}, {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}, {@link #reverse r}.*/ 189 Active_bcfhr( 190 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_bcdfhr, /*dictionaryOrder:*/Active_bcdfhr_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_bcfhru, /*unique:*/Active_bcfhru_long, 191 true, 192 /*active:*/SortOption.check, SortOption.humanNumericSort, SortOption.ignoreCase, SortOption.ignoreLeadingBlanks, SortOption.reverse 193 ), 194 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}, {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}, {@link #reverse r}.*/ 195 Active_bcfhr_long( 196 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_bcdfhr, /*dictionaryOrder:*/Active_bcdfhr_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_bcfhru, /*unique:*/Active_bcfhru_long, 197 false, 198 /*active:*/SortOption.check, SortOption.humanNumericSort, SortOption.ignoreCase, SortOption.ignoreLeadingBlanks, SortOption.reverse 199 ), 200 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}, {@link #ignoreCase f}, {@link #reverse r}.*/ 201 Active_cdfhr( 202 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_bcdfhr, /*ignoreLeadingBlanks:*/Active_bcdfhr_long, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_cdfhru, /*unique:*/Active_cdfhru_long, 203 true, 204 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort, SortOption.ignoreCase, SortOption.reverse 205 ), 206 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}, {@link #ignoreCase f}, {@link #reverse r}.*/ 207 Active_cdfhr_long( 208 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_bcdfhr, /*ignoreLeadingBlanks:*/Active_bcdfhr_long, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_cdfhru, /*unique:*/Active_cdfhru_long, 209 false, 210 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort, SortOption.ignoreCase, SortOption.reverse 211 ), 212 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}, {@link #ignoreLeadingBlanks b}, {@link #unique u}.*/ 213 Active_bchu( 214 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_bcdhu, /*dictionaryOrder:*/Active_bcdhu_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_bcfhu, /*ignoreCase:*/Active_bcfhu_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/Active_bchru, /*reverse:*/Active_bchru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 215 true, 216 /*active:*/SortOption.check, SortOption.humanNumericSort, SortOption.ignoreLeadingBlanks, SortOption.unique 217 ), 218 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}, {@link #ignoreLeadingBlanks b}, {@link #unique u}.*/ 219 Active_bchu_long( 220 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_bcdhu, /*dictionaryOrder:*/Active_bcdhu_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_bcfhu, /*ignoreCase:*/Active_bcfhu_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/Active_bchru, /*reverse:*/Active_bchru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 221 false, 222 /*active:*/SortOption.check, SortOption.humanNumericSort, SortOption.ignoreLeadingBlanks, SortOption.unique 223 ), 224 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}, {@link #unique u}.*/ 225 Active_cdhu( 226 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_cdfhu, /*ignoreCase:*/Active_cdfhu_long, /*b:*/Active_bcdhu, /*ignoreLeadingBlanks:*/Active_bcdhu_long, /*r:*/Active_cdhru, /*reverse:*/Active_cdhru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 227 true, 228 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort, SortOption.unique 229 ), 230 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}, {@link #unique u}.*/ 231 Active_cdhu_long( 232 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_cdfhu, /*ignoreCase:*/Active_cdfhu_long, /*b:*/Active_bcdhu, /*ignoreLeadingBlanks:*/Active_bcdhu_long, /*r:*/Active_cdhru, /*reverse:*/Active_cdhru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 233 false, 234 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort, SortOption.unique 235 ), 236 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}, {@link #ignoreCase f}, {@link #unique u}.*/ 237 Active_cfhu( 238 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_cdfhu, /*dictionaryOrder:*/Active_cdfhu_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_bcfhu, /*ignoreLeadingBlanks:*/Active_bcfhu_long, /*r:*/Active_cfhru, /*reverse:*/Active_cfhru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 239 true, 240 /*active:*/SortOption.check, SortOption.humanNumericSort, SortOption.ignoreCase, SortOption.unique 241 ), 242 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}, {@link #ignoreCase f}, {@link #unique u}.*/ 243 Active_cfhu_long( 244 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_cdfhu, /*dictionaryOrder:*/Active_cdfhu_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_bcfhu, /*ignoreLeadingBlanks:*/Active_bcfhu_long, /*r:*/Active_cfhru, /*reverse:*/Active_cfhru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 245 false, 246 /*active:*/SortOption.check, SortOption.humanNumericSort, SortOption.ignoreCase, SortOption.unique 247 ), 248 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}, {@link #reverse r}, {@link #unique u}.*/ 249 Active_chru( 250 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_cdhru, /*dictionaryOrder:*/Active_cdhru_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_cfhru, /*ignoreCase:*/Active_cfhru_long, /*b:*/Active_bchru, /*ignoreLeadingBlanks:*/Active_bchru_long, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 251 true, 252 /*active:*/SortOption.check, SortOption.humanNumericSort, SortOption.reverse, SortOption.unique 253 ), 254 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}, {@link #reverse r}, {@link #unique u}.*/ 255 Active_chru_long( 256 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_cdhru, /*dictionaryOrder:*/Active_cdhru_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_cfhru, /*ignoreCase:*/Active_cfhru_long, /*b:*/Active_bchru, /*ignoreLeadingBlanks:*/Active_bchru_long, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 257 false, 258 /*active:*/SortOption.check, SortOption.humanNumericSort, SortOption.reverse, SortOption.unique 259 ), 260 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}, {@link #ignoreLeadingBlanks b}.*/ 261 Active_bcdh( 262 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_bcdfh, /*ignoreCase:*/Active_bcdfh_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/Active_bcdhr, /*reverse:*/Active_bcdhr_long, /*u:*/Active_bcdhu, /*unique:*/Active_bcdhu_long, 263 true, 264 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort, SortOption.ignoreLeadingBlanks 265 ), 266 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}, {@link #ignoreLeadingBlanks b}.*/ 267 Active_bcdh_long( 268 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_bcdfh, /*ignoreCase:*/Active_bcdfh_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/Active_bcdhr, /*reverse:*/Active_bcdhr_long, /*u:*/Active_bcdhu, /*unique:*/Active_bcdhu_long, 269 false, 270 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort, SortOption.ignoreLeadingBlanks 271 ), 272 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}, {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}.*/ 273 Active_bcfh( 274 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_bcdfh, /*dictionaryOrder:*/Active_bcdfh_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/Active_bcfhr, /*reverse:*/Active_bcfhr_long, /*u:*/Active_bcfhu, /*unique:*/Active_bcfhu_long, 275 true, 276 /*active:*/SortOption.check, SortOption.humanNumericSort, SortOption.ignoreCase, SortOption.ignoreLeadingBlanks 277 ), 278 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}, {@link #ignoreCase f}, {@link #ignoreLeadingBlanks b}.*/ 279 Active_bcfh_long( 280 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_bcdfh, /*dictionaryOrder:*/Active_bcdfh_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/Active_bcfhr, /*reverse:*/Active_bcfhr_long, /*u:*/Active_bcfhu, /*unique:*/Active_bcfhu_long, 281 false, 282 /*active:*/SortOption.check, SortOption.humanNumericSort, SortOption.ignoreCase, SortOption.ignoreLeadingBlanks 283 ), 284 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}, {@link #ignoreLeadingBlanks b}, {@link #reverse r}.*/ 285 Active_bchr( 286 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_bcdhr, /*dictionaryOrder:*/Active_bcdhr_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_bcfhr, /*ignoreCase:*/Active_bcfhr_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_bchru, /*unique:*/Active_bchru_long, 287 true, 288 /*active:*/SortOption.check, SortOption.humanNumericSort, SortOption.ignoreLeadingBlanks, SortOption.reverse 289 ), 290 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}, {@link #ignoreLeadingBlanks b}, {@link #reverse r}.*/ 291 Active_bchr_long( 292 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_bcdhr, /*dictionaryOrder:*/Active_bcdhr_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_bcfhr, /*ignoreCase:*/Active_bcfhr_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_bchru, /*unique:*/Active_bchru_long, 293 false, 294 /*active:*/SortOption.check, SortOption.humanNumericSort, SortOption.ignoreLeadingBlanks, SortOption.reverse 295 ), 296 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}, {@link #ignoreCase f}.*/ 297 Active_cdfh( 298 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_bcdfh, /*ignoreLeadingBlanks:*/Active_bcdfh_long, /*r:*/Active_cdfhr, /*reverse:*/Active_cdfhr_long, /*u:*/Active_cdfhu, /*unique:*/Active_cdfhu_long, 299 true, 300 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort, SortOption.ignoreCase 301 ), 302 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}, {@link #ignoreCase f}.*/ 303 Active_cdfh_long( 304 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_bcdfh, /*ignoreLeadingBlanks:*/Active_bcdfh_long, /*r:*/Active_cdfhr, /*reverse:*/Active_cdfhr_long, /*u:*/Active_cdfhu, /*unique:*/Active_cdfhu_long, 305 false, 306 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort, SortOption.ignoreCase 307 ), 308 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}, {@link #reverse r}.*/ 309 Active_cdhr( 310 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_cdfhr, /*ignoreCase:*/Active_cdfhr_long, /*b:*/Active_bcdhr, /*ignoreLeadingBlanks:*/Active_bcdhr_long, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_cdhru, /*unique:*/Active_cdhru_long, 311 true, 312 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort, SortOption.reverse 313 ), 314 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}, {@link #reverse r}.*/ 315 Active_cdhr_long( 316 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_cdfhr, /*ignoreCase:*/Active_cdfhr_long, /*b:*/Active_bcdhr, /*ignoreLeadingBlanks:*/Active_bcdhr_long, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_cdhru, /*unique:*/Active_cdhru_long, 317 false, 318 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort, SortOption.reverse 319 ), 320 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}, {@link #ignoreCase f}, {@link #reverse r}.*/ 321 Active_cfhr( 322 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_cdfhr, /*dictionaryOrder:*/Active_cdfhr_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_bcfhr, /*ignoreLeadingBlanks:*/Active_bcfhr_long, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_cfhru, /*unique:*/Active_cfhru_long, 323 true, 324 /*active:*/SortOption.check, SortOption.humanNumericSort, SortOption.ignoreCase, SortOption.reverse 325 ), 326 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}, {@link #ignoreCase f}, {@link #reverse r}.*/ 327 Active_cfhr_long( 328 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_cdfhr, /*dictionaryOrder:*/Active_cdfhr_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_bcfhr, /*ignoreLeadingBlanks:*/Active_bcfhr_long, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_cfhru, /*unique:*/Active_cfhru_long, 329 false, 330 /*active:*/SortOption.check, SortOption.humanNumericSort, SortOption.ignoreCase, SortOption.reverse 331 ), 332 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}, {@link #unique u}.*/ 333 Active_chu( 334 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_cdhu, /*dictionaryOrder:*/Active_cdhu_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_cfhu, /*ignoreCase:*/Active_cfhu_long, /*b:*/Active_bchu, /*ignoreLeadingBlanks:*/Active_bchu_long, /*r:*/Active_chru, /*reverse:*/Active_chru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 335 true, 336 /*active:*/SortOption.check, SortOption.humanNumericSort, SortOption.unique 337 ), 338 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}, {@link #unique u}.*/ 339 Active_chu_long( 340 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_cdhu, /*dictionaryOrder:*/Active_cdhu_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_cfhu, /*ignoreCase:*/Active_cfhu_long, /*b:*/Active_bchu, /*ignoreLeadingBlanks:*/Active_bchu_long, /*r:*/Active_chru, /*reverse:*/Active_chru_long, /*u:*/null /*already set*/, /*unique:*/null /*already set*/, 341 false, 342 /*active:*/SortOption.check, SortOption.humanNumericSort, SortOption.unique 343 ), 344 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}, {@link #ignoreLeadingBlanks b}.*/ 345 Active_bch( 346 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_bcdh, /*dictionaryOrder:*/Active_bcdh_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_bcfh, /*ignoreCase:*/Active_bcfh_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/Active_bchr, /*reverse:*/Active_bchr_long, /*u:*/Active_bchu, /*unique:*/Active_bchu_long, 347 true, 348 /*active:*/SortOption.check, SortOption.humanNumericSort, SortOption.ignoreLeadingBlanks 349 ), 350 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}, {@link #ignoreLeadingBlanks b}.*/ 351 Active_bch_long( 352 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_bcdh, /*dictionaryOrder:*/Active_bcdh_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_bcfh, /*ignoreCase:*/Active_bcfh_long, /*b:*/null /*already set*/, /*ignoreLeadingBlanks:*/null /*already set*/, /*r:*/Active_bchr, /*reverse:*/Active_bchr_long, /*u:*/Active_bchu, /*unique:*/Active_bchu_long, 353 false, 354 /*active:*/SortOption.check, SortOption.humanNumericSort, SortOption.ignoreLeadingBlanks 355 ), 356 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}.*/ 357 Active_cdh( 358 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_cdfh, /*ignoreCase:*/Active_cdfh_long, /*b:*/Active_bcdh, /*ignoreLeadingBlanks:*/Active_bcdh_long, /*r:*/Active_cdhr, /*reverse:*/Active_cdhr_long, /*u:*/Active_cdhu, /*unique:*/Active_cdhu_long, 359 true, 360 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort 361 ), 362 /** Option set with the following active options: {@link #check c}, {@link #dictionaryOrder d}, {@link #humanNumericSort h}.*/ 363 Active_cdh_long( 364 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/null /*already set*/, /*dictionaryOrder:*/null /*already set*/, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_cdfh, /*ignoreCase:*/Active_cdfh_long, /*b:*/Active_bcdh, /*ignoreLeadingBlanks:*/Active_bcdh_long, /*r:*/Active_cdhr, /*reverse:*/Active_cdhr_long, /*u:*/Active_cdhu, /*unique:*/Active_cdhu_long, 365 false, 366 /*active:*/SortOption.check, SortOption.dictionaryOrder, SortOption.humanNumericSort 367 ), 368 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}, {@link #ignoreCase f}.*/ 369 Active_cfh( 370 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_cdfh, /*dictionaryOrder:*/Active_cdfh_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_bcfh, /*ignoreLeadingBlanks:*/Active_bcfh_long, /*r:*/Active_cfhr, /*reverse:*/Active_cfhr_long, /*u:*/Active_cfhu, /*unique:*/Active_cfhu_long, 371 true, 372 /*active:*/SortOption.check, SortOption.humanNumericSort, SortOption.ignoreCase 373 ), 374 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}, {@link #ignoreCase f}.*/ 375 Active_cfh_long( 376 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_cdfh, /*dictionaryOrder:*/Active_cdfh_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*b:*/Active_bcfh, /*ignoreLeadingBlanks:*/Active_bcfh_long, /*r:*/Active_cfhr, /*reverse:*/Active_cfhr_long, /*u:*/Active_cfhu, /*unique:*/Active_cfhu_long, 377 false, 378 /*active:*/SortOption.check, SortOption.humanNumericSort, SortOption.ignoreCase 379 ), 380 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}, {@link #reverse r}.*/ 381 Active_chr( 382 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_cdhr, /*dictionaryOrder:*/Active_cdhr_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_cfhr, /*ignoreCase:*/Active_cfhr_long, /*b:*/Active_bchr, /*ignoreLeadingBlanks:*/Active_bchr_long, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_chru, /*unique:*/Active_chru_long, 383 true, 384 /*active:*/SortOption.check, SortOption.humanNumericSort, SortOption.reverse 385 ), 386 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}, {@link #reverse r}.*/ 387 Active_chr_long( 388 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_cdhr, /*dictionaryOrder:*/Active_cdhr_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_cfhr, /*ignoreCase:*/Active_cfhr_long, /*b:*/Active_bchr, /*ignoreLeadingBlanks:*/Active_bchr_long, /*r:*/null /*already set*/, /*reverse:*/null /*already set*/, /*u:*/Active_chru, /*unique:*/Active_chru_long, 389 false, 390 /*active:*/SortOption.check, SortOption.humanNumericSort, SortOption.reverse 391 ), 392 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}.*/ 393 Active_ch( 394 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_cdh, /*dictionaryOrder:*/Active_cdh_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_cfh, /*ignoreCase:*/Active_cfh_long, /*b:*/Active_bch, /*ignoreLeadingBlanks:*/Active_bch_long, /*r:*/Active_chr, /*reverse:*/Active_chr_long, /*u:*/Active_chu, /*unique:*/Active_chu_long, 395 true, 396 /*active:*/SortOption.check, SortOption.humanNumericSort 397 ), 398 /** Option set with the following active options: {@link #check c}, {@link #humanNumericSort h}.*/ 399 Active_ch_long( 400 /*c:*/null /*already set*/, /*check:*/null /*already set*/, /*d:*/Active_cdh, /*dictionaryOrder:*/Active_cdh_long, /*h:*/null /*already set*/, /*humanNumericSort:*/null /*already set*/, /*f:*/Active_cfh, /*ignoreCase:*/Active_cfh_long, /*b:*/Active_bch, /*ignoreLeadingBlanks:*/Active_bch_long, /*r:*/Active_chr, /*reverse:*/Active_chr_long, /*u:*/Active_chu, /*unique:*/Active_chu_long, 401 false, 402 /*active:*/SortOption.check, SortOption.humanNumericSort 403 ); 404 private SortOptionSet_bcdfhru( 405 SortOptionSet_bcdfhru c, SortOptionSet_bcdfhru check, SortOptionSet_bcdfhru d, SortOptionSet_bcdfhru dictionaryOrder, SortOptionSet_bcdfhru h, SortOptionSet_bcdfhru humanNumericSort, SortOptionSet_bcdfhru f, SortOptionSet_bcdfhru ignoreCase, SortOptionSet_bcdfhru b, SortOptionSet_bcdfhru ignoreLeadingBlanks, SortOptionSet_bcdfhru r, SortOptionSet_bcdfhru reverse, SortOptionSet_bcdfhru u, SortOptionSet_bcdfhru unique, 406 boolean useAcronym, 407 SortOption... activeOptions 408 ) { 409 this.c = c == null ? this : c; 410 this.check = check == null ? this : check; 411 this.d = d == null ? this : d; 412 this.dictionaryOrder = dictionaryOrder == null ? this : dictionaryOrder; 413 this.h = h == null ? this : h; 414 this.humanNumericSort = humanNumericSort == null ? this : humanNumericSort; 415 this.f = f == null ? this : f; 416 this.ignoreCase = ignoreCase == null ? this : ignoreCase; 417 this.b = b == null ? this : b; 418 this.ignoreLeadingBlanks = ignoreLeadingBlanks == null ? this : ignoreLeadingBlanks; 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 "-c"}: Checks that the single input file is ordered as specified by the 429 arguments and the collating sequence of the current locale. No 430 output is produced; only the exit code is affected. 431 * <p> 432 * The option {@code "-c"} is equivalent to the {@code "--}{@link #check check}{@code "} option. 433 * <p> 434 * Technically speaking, this field points to a set with the options of the 435 * current set plus the option {@code "-c"}. If the option {@code "-c"} 436 * is already set, the field {@code c} points to the enum constant itself 437 * as it already represents the current set of options. 438 */ 439 public final SortOptionSet_bcdfhru c; 440 /** 441 * Option {@code "--check"}: Checks that the single input file is ordered as specified by the 442 arguments and the collating sequence of the current locale. No 443 output is produced; only the exit code is affected. 444 * <p> 445 * The option {@code "--check"} is equivalent to the {@code "-}{@link #c c}{@code "} option. 446 * <p> 447 * Technically speaking, this field points to a set with the options of the 448 * current set plus the option {@code "--check"}. If the option {@code "--check"} 449 * is already set, the field {@code check} points to the enum constant itself 450 * as it already represents the current set of options. 451 */ 452 public final SortOptionSet_bcdfhru check; 453 /** 454 * Option {@code "-d"}: Consider only blanks and alphanumeric characters. 455 (This option is ignored if a comparator operand is present). 456 * <p> 457 * The option {@code "-d"} is equivalent to the {@code "--}{@link #dictionaryOrder dictionaryOrder}{@code "} option. 458 * <p> 459 * Technically speaking, this field points to a set with the options of the 460 * current set plus the option {@code "-d"}. If the option {@code "-d"} 461 * is already set, the field {@code d} points to the enum constant itself 462 * as it already represents the current set of options. 463 */ 464 public final SortOptionSet_bcdfhru d; 465 /** 466 * Option {@code "--dictionaryOrder"}: Consider only blanks and alphanumeric characters. 467 (This option is ignored if a comparator operand is present). 468 * <p> 469 * The option {@code "--dictionaryOrder"} is equivalent to the {@code "-}{@link #d d}{@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 "--dictionaryOrder"}. If the option {@code "--dictionaryOrder"} 473 * is already set, the field {@code dictionaryOrder} points to the enum constant itself 474 * as it already represents the current set of options. 475 */ 476 public final SortOptionSet_bcdfhru dictionaryOrder; 477 /** 478 * Option {@code "-h"}: Sort numerically, first by numeric sign (negative, zero, or 479 positive); then by SI suffix (either empty, or 'k' or 'K', or one 480 of 'MGTPEZY', in that order); and finally by numeric value. For 481 example, '1023M' sorts before '1G' because 'M' (mega) precedes 'G' 482 (giga) as an SI suffix. 483 <p> 484 This option sorts values that are consistently scaled to the nearest 485 suffix, regardless of whether suffixes denote powers of 1000 or 486 1024, and it therefore sorts the output of any single invocation of 487 the {@code ls} command that are invoked with the --human-readable 488 option. 489 <p> 490 The syntax for numbers is the same as for the 491 {@code --numericSort (-n)} option; the SI suffix must immediately 492 follow the number. 493<p> 494 (This option is ignored if a comparator operand is present). 495 * <p> 496 * The option {@code "-h"} is equivalent to the {@code "--}{@link #humanNumericSort humanNumericSort}{@code "} option. 497 * <p> 498 * Technically speaking, this field points to a set with the options of the 499 * current set plus the option {@code "-h"}. If the option {@code "-h"} 500 * is already set, the field {@code h} points to the enum constant itself 501 * as it already represents the current set of options. 502 */ 503 public final SortOptionSet_bcdfhru h; 504 /** 505 * Option {@code "--humanNumericSort"}: Sort numerically, first by numeric sign (negative, zero, or 506 positive); then by SI suffix (either empty, or 'k' or 'K', or one 507 of 'MGTPEZY', in that order); and finally by numeric value. For 508 example, '1023M' sorts before '1G' because 'M' (mega) precedes 'G' 509 (giga) as an SI suffix. 510 <p> 511 This option sorts values that are consistently scaled to the nearest 512 suffix, regardless of whether suffixes denote powers of 1000 or 513 1024, and it therefore sorts the output of any single invocation of 514 the {@code ls} command that are invoked with the --human-readable 515 option. 516 <p> 517 The syntax for numbers is the same as for the 518 {@code --numericSort (-n)} option; the SI suffix must immediately 519 follow the number. 520<p> 521 (This option is ignored if a comparator operand is present). 522 * <p> 523 * The option {@code "--humanNumericSort"} is equivalent to the {@code "-}{@link #h h}{@code "} option. 524 * <p> 525 * Technically speaking, this field points to a set with the options of the 526 * current set plus the option {@code "--humanNumericSort"}. If the option {@code "--humanNumericSort"} 527 * is already set, the field {@code humanNumericSort} points to the enum constant itself 528 * as it already represents the current set of options. 529 */ 530 public final SortOptionSet_bcdfhru humanNumericSort; 531 /** 532 * Option {@code "-f"}: Consider all lowercase characters that have uppercase equivalents to 533 be the uppercase equivalent for the purposes of comparison. 534 (This option is ignored if a comparator operand is present). 535 * <p> 536 * The option {@code "-f"} is equivalent to the {@code "--}{@link #ignoreCase ignoreCase}{@code "} option. 537 * <p> 538 * Technically speaking, this field points to a set with the options of the 539 * current set plus the option {@code "-f"}. If the option {@code "-f"} 540 * is already set, the field {@code f} points to the enum constant itself 541 * as it already represents the current set of options. 542 */ 543 public final SortOptionSet_bcdfhru f; 544 /** 545 * Option {@code "--ignoreCase"}: Consider all lowercase characters that have uppercase equivalents to 546 be the uppercase equivalent for the purposes of comparison. 547 (This option is ignored if a comparator operand is present). 548 * <p> 549 * The option {@code "--ignoreCase"} is equivalent to the {@code "-}{@link #f f}{@code "} option. 550 * <p> 551 * Technically speaking, this field points to a set with the options of the 552 * current set plus the option {@code "--ignoreCase"}. If the option {@code "--ignoreCase"} 553 * is already set, the field {@code ignoreCase} points to the enum constant itself 554 * as it already represents the current set of options. 555 */ 556 public final SortOptionSet_bcdfhru ignoreCase; 557 /** 558 * Option {@code "-b"}: Ignore leading blanks. 559 (This option is ignored if a comparator operand is present). 560 * <p> 561 * The option {@code "-b"} is equivalent to the {@code "--}{@link #ignoreLeadingBlanks ignoreLeadingBlanks}{@code "} option. 562 * <p> 563 * Technically speaking, this field points to a set with the options of the 564 * current set plus the option {@code "-b"}. If the option {@code "-b"} 565 * is already set, the field {@code b} points to the enum constant itself 566 * as it already represents the current set of options. 567 */ 568 public final SortOptionSet_bcdfhru b; 569 /** 570 * Option {@code "--ignoreLeadingBlanks"}: Ignore leading blanks. 571 (This option is ignored if a comparator operand is present). 572 * <p> 573 * The option {@code "--ignoreLeadingBlanks"} is equivalent to the {@code "-}{@link #b b}{@code "} option. 574 * <p> 575 * Technically speaking, this field points to a set with the options of the 576 * current set plus the option {@code "--ignoreLeadingBlanks"}. If the option {@code "--ignoreLeadingBlanks"} 577 * is already set, the field {@code ignoreLeadingBlanks} points to the enum constant itself 578 * as it already represents the current set of options. 579 */ 580 public final SortOptionSet_bcdfhru ignoreLeadingBlanks; 581 /** 582 * Option {@code "-r"}: Reverse the sense of comparisons. 583 * <p> 584 * The option {@code "-r"} is equivalent to the {@code "--}{@link #reverse reverse}{@code "} option. 585 * <p> 586 * Technically speaking, this field points to a set with the options of the 587 * current set plus the option {@code "-r"}. If the option {@code "-r"} 588 * is already set, the field {@code r} points to the enum constant itself 589 * as it already represents the current set of options. 590 */ 591 public final SortOptionSet_bcdfhru r; 592 /** 593 * Option {@code "--reverse"}: Reverse the sense of comparisons. 594 * <p> 595 * The option {@code "--reverse"} is equivalent to the {@code "-}{@link #r r}{@code "} option. 596 * <p> 597 * Technically speaking, this field points to a set with the options of the 598 * current set plus the option {@code "--reverse"}. If the option {@code "--reverse"} 599 * is already set, the field {@code reverse} points to the enum constant itself 600 * as it already represents the current set of options. 601 */ 602 public final SortOptionSet_bcdfhru reverse; 603 /** 604 * Option {@code "-u"}: Unique: suppress all but one in each set of lines having equal keys. 605 If used with the {@code -c} option, checks that there are no lines 606 with duplicate keys, in addition to checking that the input file is 607 sorted. 608 * <p> 609 * The option {@code "-u"} is equivalent to the {@code "--}{@link #unique unique}{@code "} option. 610 * <p> 611 * Technically speaking, this field points to a set with the options of the 612 * current set plus the option {@code "-u"}. If the option {@code "-u"} 613 * is already set, the field {@code u} points to the enum constant itself 614 * as it already represents the current set of options. 615 */ 616 public final SortOptionSet_bcdfhru u; 617 /** 618 * Option {@code "--unique"}: Unique: suppress all but one in each set of lines having equal keys. 619 If used with the {@code -c} option, checks that there are no lines 620 with duplicate keys, in addition to checking that the input file is 621 sorted. 622 * <p> 623 * The option {@code "--unique"} is equivalent to the {@code "-}{@link #u u}{@code "} option. 624 * <p> 625 * Technically speaking, this field points to a set with the options of the 626 * current set plus the option {@code "--unique"}. If the option {@code "--unique"} 627 * is already set, the field {@code unique} points to the enum constant itself 628 * as it already represents the current set of options. 629 */ 630 public final SortOptionSet_bcdfhru unique; 631 private final EnumSet<SortOption> options; 632 633 //inherit javadoc 634 @Override 635 public Class<SortOption> optionType() { 636 return SortOption.class; 637 } 638 //inherit javadoc 639 @Override 640 public boolean isSet(SortOption option) { 641 return options.contains(option); 642 } 643 //inherit javadoc 644 @Override 645 public int size() { 646 return options.size(); 647 } 648 /** 649 * Returns the set with the active options. The returned set a new defensive 650 * copy instance created when this method is called, modifications of this 651 * set will therefore not alter {@code this} option set. 652 * 653 * @return a copy of the set with the active options. 654 */ 655 @Override 656 public EnumSet<SortOption> asSet() { 657 return EnumSet.copyOf(options); 658 } 659 /** 660 * Returns an immutable iterator with the active options of this option set. 661 * 662 * @return an immutable iterator for over the active options 663 */ 664 @Override 665 public Iterator<SortOption> iterator() { 666 return Collections.unmodifiableSet(options).iterator(); 667 } 668 /** 669 * Returns true if the {@link Option#acronym() acronym} should be used in 670 * for the specified {@code option} string representations. 671 * <p> 672 * In particular and independent from the {@code option} argument, this 673 * option set returns true if the last option added to this set was an 674 * acronym, and false if it was a long option name. 675 * <p> 676 * For instance, the set defined as 677 * <pre> 678 * SortOptionSet_bcdfhru.check.d; 679 * </pre> 680 * uses acronyms, that is, this method always returns true for the above 681 * set. 682 * <p> 683 * On the other hand, long option names are used and this method always 684 * returns false for the set 685 * <pre> 686 * SortOptionSet_bcdfhru.c.dictionaryOrder; 687 * </pre> 688 * <p> 689 * Note that a repeated option is <i>not</i> treated as the last set option. 690 * For instance, the first and last option of the following set are 691 * equivalent and acronyms are used: 692 * <pre> 693 * SortOptionSet_bcdfhru.c.d.check; 694 * </pre> 695 * <p> 696 * This method always returns true for the empty set with no active options. 697 * 698 * @param option 699 * the option of interest, has no impact on the result returned 700 * by this method 701 * @return true if option acronyms should be used for string representations 702 * of any option of this option set 703 */ 704 @Override 705 public boolean useAcronymFor(SortOption option) { 706 return useAcronym; 707 } 708}