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