001package org.unix4j.unix.find; 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.Find; 010 011/** 012 * Option sets for the {@link Find find} command with 013 * the following options: {@link #i i}, {@link #z z}, {@link #r r}, {@link #a a}, {@link #c c}, {@link #m m}, {@link #n n}, {@link #o o}, {@link #d d}, {@link #f f}, {@link #x x}, {@link #l l}. 014 * <p> 015 * Application code does normally not directly refer to this class; 016 * {@link Find#Options} should be used instead to specify command 017 * options. See also {@link org.unix4j.unix.find.FindOptions} for more information. 018 */ 019public enum FindOptionSet_acdfilmnorxz implements FindOptions { 020 /** Option set with the following active options: {@link #ignoreCase i}, {@link #print0 z}, {@link #regex r}, {@link #timeNewer n}, {@link #timeOlder o}.*/ 021 Active_inorz( 022 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_ainorz, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_ainorz_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cinorz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cinorz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_imnorz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_imnorz_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_dinorz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dinorz_long, /*f:*/FindOptionSet_acfimnorz.Active_finorz, /*typeFile:*/FindOptionSet_acfimnorz.Active_finorz_long, /*x:*/FindOptionSet_acimnorxz.Active_inorxz, /*typeOther:*/FindOptionSet_acimnorxz.Active_inorxz_long, /*l:*/FindOptionSet_acilmnorz.Active_ilnorz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_ilnorz_long, 023 true, 024 /*active:*/FindOption.ignoreCase, FindOption.print0, FindOption.regex, FindOption.timeNewer, FindOption.timeOlder 025 ), 026 /** Option set with the following active options: {@link #ignoreCase i}, {@link #print0 z}, {@link #regex r}, {@link #timeNewer n}, {@link #timeOlder o}.*/ 027 Active_inorz_long( 028 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_ainorz, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_ainorz_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cinorz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cinorz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_imnorz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_imnorz_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_dinorz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dinorz_long, /*f:*/FindOptionSet_acfimnorz.Active_finorz, /*typeFile:*/FindOptionSet_acfimnorz.Active_finorz_long, /*x:*/FindOptionSet_acimnorxz.Active_inorxz, /*typeOther:*/FindOptionSet_acimnorxz.Active_inorxz_long, /*l:*/FindOptionSet_acilmnorz.Active_ilnorz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_ilnorz_long, 029 false, 030 /*active:*/FindOption.ignoreCase, FindOption.print0, FindOption.regex, FindOption.timeNewer, FindOption.timeOlder 031 ), 032 /** Option set with the following active options: {@link #ignoreCase i}, {@link #regex r}, {@link #timeNewer n}, {@link #timeOlder o}.*/ 033 Active_inor( 034 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/Active_inorz, /*print0:*/Active_inorz_long, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_ainor, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_ainor_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cinor, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cinor_long, /*m:*/FindOptionSet_dfilmnorxz.Active_imnor, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_imnor_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_dinor, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dinor_long, /*f:*/FindOptionSet_acfimnorz.Active_finor, /*typeFile:*/FindOptionSet_acfimnorz.Active_finor_long, /*x:*/FindOptionSet_acimnorxz.Active_inorx, /*typeOther:*/FindOptionSet_acimnorxz.Active_inorx_long, /*l:*/FindOptionSet_acilmnorz.Active_ilnor, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_ilnor_long, 035 true, 036 /*active:*/FindOption.ignoreCase, FindOption.regex, FindOption.timeNewer, FindOption.timeOlder 037 ), 038 /** Option set with the following active options: {@link #ignoreCase i}, {@link #regex r}, {@link #timeNewer n}, {@link #timeOlder o}.*/ 039 Active_inor_long( 040 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/Active_inorz, /*print0:*/Active_inorz_long, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_ainor, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_ainor_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cinor, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cinor_long, /*m:*/FindOptionSet_dfilmnorxz.Active_imnor, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_imnor_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_dinor, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dinor_long, /*f:*/FindOptionSet_acfimnorz.Active_finor, /*typeFile:*/FindOptionSet_acfimnorz.Active_finor_long, /*x:*/FindOptionSet_acimnorxz.Active_inorx, /*typeOther:*/FindOptionSet_acimnorxz.Active_inorx_long, /*l:*/FindOptionSet_acilmnorz.Active_ilnor, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_ilnor_long, 041 false, 042 /*active:*/FindOption.ignoreCase, FindOption.regex, FindOption.timeNewer, FindOption.timeOlder 043 ), 044 /** Option set with the following active options: {@link #ignoreCase i}, {@link #print0 z}, {@link #regex r}, {@link #timeNewer n}.*/ 045 Active_inrz( 046 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_ainrz, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_ainrz_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cinrz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cinrz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_imnrz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_imnrz_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/Active_inorz, /*timeOlder:*/Active_inorz_long, /*d:*/FindOptionSet_acdimnorz.Active_dinrz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dinrz_long, /*f:*/FindOptionSet_acfimnorz.Active_finrz, /*typeFile:*/FindOptionSet_acfimnorz.Active_finrz_long, /*x:*/FindOptionSet_acimnorxz.Active_inrxz, /*typeOther:*/FindOptionSet_acimnorxz.Active_inrxz_long, /*l:*/FindOptionSet_acilmnorz.Active_ilnrz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_ilnrz_long, 047 true, 048 /*active:*/FindOption.ignoreCase, FindOption.print0, FindOption.regex, FindOption.timeNewer 049 ), 050 /** Option set with the following active options: {@link #ignoreCase i}, {@link #print0 z}, {@link #regex r}, {@link #timeNewer n}.*/ 051 Active_inrz_long( 052 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_ainrz, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_ainrz_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cinrz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cinrz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_imnrz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_imnrz_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/Active_inorz, /*timeOlder:*/Active_inorz_long, /*d:*/FindOptionSet_acdimnorz.Active_dinrz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dinrz_long, /*f:*/FindOptionSet_acfimnorz.Active_finrz, /*typeFile:*/FindOptionSet_acfimnorz.Active_finrz_long, /*x:*/FindOptionSet_acimnorxz.Active_inrxz, /*typeOther:*/FindOptionSet_acimnorxz.Active_inrxz_long, /*l:*/FindOptionSet_acilmnorz.Active_ilnrz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_ilnrz_long, 053 false, 054 /*active:*/FindOption.ignoreCase, FindOption.print0, FindOption.regex, FindOption.timeNewer 055 ), 056 /** Option set with the following active options: {@link #ignoreCase i}, {@link #print0 z}, {@link #regex r}, {@link #timeOlder o}.*/ 057 Active_iorz( 058 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_aiorz, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_aiorz_long, /*c:*/FindOptionSet_cdfilnorxz.Active_ciorz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_ciorz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_imorz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_imorz_long, /*n:*/Active_inorz, /*timeNewer:*/Active_inorz_long, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_diorz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_diorz_long, /*f:*/FindOptionSet_acfimnorz.Active_fiorz, /*typeFile:*/FindOptionSet_acfimnorz.Active_fiorz_long, /*x:*/FindOptionSet_acimnorxz.Active_iorxz, /*typeOther:*/FindOptionSet_acimnorxz.Active_iorxz_long, /*l:*/FindOptionSet_acilmnorz.Active_ilorz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_ilorz_long, 059 true, 060 /*active:*/FindOption.ignoreCase, FindOption.print0, FindOption.regex, FindOption.timeOlder 061 ), 062 /** Option set with the following active options: {@link #ignoreCase i}, {@link #print0 z}, {@link #regex r}, {@link #timeOlder o}.*/ 063 Active_iorz_long( 064 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_aiorz, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_aiorz_long, /*c:*/FindOptionSet_cdfilnorxz.Active_ciorz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_ciorz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_imorz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_imorz_long, /*n:*/Active_inorz, /*timeNewer:*/Active_inorz_long, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_diorz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_diorz_long, /*f:*/FindOptionSet_acfimnorz.Active_fiorz, /*typeFile:*/FindOptionSet_acfimnorz.Active_fiorz_long, /*x:*/FindOptionSet_acimnorxz.Active_iorxz, /*typeOther:*/FindOptionSet_acimnorxz.Active_iorxz_long, /*l:*/FindOptionSet_acilmnorz.Active_ilorz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_ilorz_long, 065 false, 066 /*active:*/FindOption.ignoreCase, FindOption.print0, FindOption.regex, FindOption.timeOlder 067 ), 068 /** Option set with the following active options: {@link #print0 z}, {@link #regex r}, {@link #timeNewer n}, {@link #timeOlder o}.*/ 069 Active_norz( 070 /*i:*/Active_inorz, /*ignoreCase:*/Active_inorz_long, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_anorz, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_anorz_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cnorz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cnorz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_mnorz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_mnorz_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_dnorz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dnorz_long, /*f:*/FindOptionSet_acfimnorz.Active_fnorz, /*typeFile:*/FindOptionSet_acfimnorz.Active_fnorz_long, /*x:*/FindOptionSet_acimnorxz.Active_norxz, /*typeOther:*/FindOptionSet_acimnorxz.Active_norxz_long, /*l:*/FindOptionSet_acilmnorz.Active_lnorz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_lnorz_long, 071 true, 072 /*active:*/FindOption.print0, FindOption.regex, FindOption.timeNewer, FindOption.timeOlder 073 ), 074 /** Option set with the following active options: {@link #print0 z}, {@link #regex r}, {@link #timeNewer n}, {@link #timeOlder o}.*/ 075 Active_norz_long( 076 /*i:*/Active_inorz, /*ignoreCase:*/Active_inorz_long, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_anorz, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_anorz_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cnorz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cnorz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_mnorz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_mnorz_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_dnorz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dnorz_long, /*f:*/FindOptionSet_acfimnorz.Active_fnorz, /*typeFile:*/FindOptionSet_acfimnorz.Active_fnorz_long, /*x:*/FindOptionSet_acimnorxz.Active_norxz, /*typeOther:*/FindOptionSet_acimnorxz.Active_norxz_long, /*l:*/FindOptionSet_acilmnorz.Active_lnorz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_lnorz_long, 077 false, 078 /*active:*/FindOption.print0, FindOption.regex, FindOption.timeNewer, FindOption.timeOlder 079 ), 080 /** Option set with the following active options: {@link #ignoreCase i}, {@link #print0 z}, {@link #timeNewer n}, {@link #timeOlder o}.*/ 081 Active_inoz( 082 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/Active_inorz, /*regex:*/Active_inorz_long, /*a:*/FindOptionSet_adfilnorxz.Active_ainoz, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_ainoz_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cinoz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cinoz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_imnoz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_imnoz_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_dinoz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dinoz_long, /*f:*/FindOptionSet_acfimnorz.Active_finoz, /*typeFile:*/FindOptionSet_acfimnorz.Active_finoz_long, /*x:*/FindOptionSet_acimnorxz.Active_inoxz, /*typeOther:*/FindOptionSet_acimnorxz.Active_inoxz_long, /*l:*/FindOptionSet_acilmnorz.Active_ilnoz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_ilnoz_long, 083 true, 084 /*active:*/FindOption.ignoreCase, FindOption.print0, FindOption.timeNewer, FindOption.timeOlder 085 ), 086 /** Option set with the following active options: {@link #ignoreCase i}, {@link #print0 z}, {@link #timeNewer n}, {@link #timeOlder o}.*/ 087 Active_inoz_long( 088 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/Active_inorz, /*regex:*/Active_inorz_long, /*a:*/FindOptionSet_adfilnorxz.Active_ainoz, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_ainoz_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cinoz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cinoz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_imnoz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_imnoz_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_dinoz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dinoz_long, /*f:*/FindOptionSet_acfimnorz.Active_finoz, /*typeFile:*/FindOptionSet_acfimnorz.Active_finoz_long, /*x:*/FindOptionSet_acimnorxz.Active_inoxz, /*typeOther:*/FindOptionSet_acimnorxz.Active_inoxz_long, /*l:*/FindOptionSet_acilmnorz.Active_ilnoz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_ilnoz_long, 089 false, 090 /*active:*/FindOption.ignoreCase, FindOption.print0, FindOption.timeNewer, FindOption.timeOlder 091 ), 092 /** Option set with the following active options: {@link #ignoreCase i}, {@link #regex r}, {@link #timeNewer n}.*/ 093 Active_inr( 094 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/Active_inrz, /*print0:*/Active_inrz_long, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_ainr, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_ainr_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cinr, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cinr_long, /*m:*/FindOptionSet_dfilmnorxz.Active_imnr, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_imnr_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/Active_inor, /*timeOlder:*/Active_inor_long, /*d:*/FindOptionSet_acdimnorz.Active_dinr, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dinr_long, /*f:*/FindOptionSet_acfimnorz.Active_finr, /*typeFile:*/FindOptionSet_acfimnorz.Active_finr_long, /*x:*/FindOptionSet_acimnorxz.Active_inrx, /*typeOther:*/FindOptionSet_acimnorxz.Active_inrx_long, /*l:*/FindOptionSet_acilmnorz.Active_ilnr, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_ilnr_long, 095 true, 096 /*active:*/FindOption.ignoreCase, FindOption.regex, FindOption.timeNewer 097 ), 098 /** Option set with the following active options: {@link #ignoreCase i}, {@link #regex r}, {@link #timeNewer n}.*/ 099 Active_inr_long( 100 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/Active_inrz, /*print0:*/Active_inrz_long, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_ainr, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_ainr_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cinr, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cinr_long, /*m:*/FindOptionSet_dfilmnorxz.Active_imnr, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_imnr_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/Active_inor, /*timeOlder:*/Active_inor_long, /*d:*/FindOptionSet_acdimnorz.Active_dinr, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dinr_long, /*f:*/FindOptionSet_acfimnorz.Active_finr, /*typeFile:*/FindOptionSet_acfimnorz.Active_finr_long, /*x:*/FindOptionSet_acimnorxz.Active_inrx, /*typeOther:*/FindOptionSet_acimnorxz.Active_inrx_long, /*l:*/FindOptionSet_acilmnorz.Active_ilnr, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_ilnr_long, 101 false, 102 /*active:*/FindOption.ignoreCase, FindOption.regex, FindOption.timeNewer 103 ), 104 /** Option set with the following active options: {@link #ignoreCase i}, {@link #regex r}, {@link #timeOlder o}.*/ 105 Active_ior( 106 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/Active_iorz, /*print0:*/Active_iorz_long, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_aior, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_aior_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cior, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cior_long, /*m:*/FindOptionSet_dfilmnorxz.Active_imor, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_imor_long, /*n:*/Active_inor, /*timeNewer:*/Active_inor_long, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_dior, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dior_long, /*f:*/FindOptionSet_acfimnorz.Active_fior, /*typeFile:*/FindOptionSet_acfimnorz.Active_fior_long, /*x:*/FindOptionSet_acimnorxz.Active_iorx, /*typeOther:*/FindOptionSet_acimnorxz.Active_iorx_long, /*l:*/FindOptionSet_acilmnorz.Active_ilor, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_ilor_long, 107 true, 108 /*active:*/FindOption.ignoreCase, FindOption.regex, FindOption.timeOlder 109 ), 110 /** Option set with the following active options: {@link #ignoreCase i}, {@link #regex r}, {@link #timeOlder o}.*/ 111 Active_ior_long( 112 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/Active_iorz, /*print0:*/Active_iorz_long, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_aior, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_aior_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cior, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cior_long, /*m:*/FindOptionSet_dfilmnorxz.Active_imor, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_imor_long, /*n:*/Active_inor, /*timeNewer:*/Active_inor_long, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_dior, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dior_long, /*f:*/FindOptionSet_acfimnorz.Active_fior, /*typeFile:*/FindOptionSet_acfimnorz.Active_fior_long, /*x:*/FindOptionSet_acimnorxz.Active_iorx, /*typeOther:*/FindOptionSet_acimnorxz.Active_iorx_long, /*l:*/FindOptionSet_acilmnorz.Active_ilor, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_ilor_long, 113 false, 114 /*active:*/FindOption.ignoreCase, FindOption.regex, FindOption.timeOlder 115 ), 116 /** Option set with the following active options: {@link #ignoreCase i}, {@link #print0 z}, {@link #regex r}.*/ 117 Active_irz( 118 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_airz, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_airz_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cirz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cirz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_imrz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_imrz_long, /*n:*/Active_inrz, /*timeNewer:*/Active_inrz_long, /*o:*/Active_iorz, /*timeOlder:*/Active_iorz_long, /*d:*/FindOptionSet_acdimnorz.Active_dirz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dirz_long, /*f:*/FindOptionSet_acfimnorz.Active_firz, /*typeFile:*/FindOptionSet_acfimnorz.Active_firz_long, /*x:*/FindOptionSet_acimnorxz.Active_irxz, /*typeOther:*/FindOptionSet_acimnorxz.Active_irxz_long, /*l:*/FindOptionSet_acilmnorz.Active_ilrz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_ilrz_long, 119 true, 120 /*active:*/FindOption.ignoreCase, FindOption.print0, FindOption.regex 121 ), 122 /** Option set with the following active options: {@link #ignoreCase i}, {@link #print0 z}, {@link #regex r}.*/ 123 Active_irz_long( 124 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_airz, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_airz_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cirz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cirz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_imrz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_imrz_long, /*n:*/Active_inrz, /*timeNewer:*/Active_inrz_long, /*o:*/Active_iorz, /*timeOlder:*/Active_iorz_long, /*d:*/FindOptionSet_acdimnorz.Active_dirz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dirz_long, /*f:*/FindOptionSet_acfimnorz.Active_firz, /*typeFile:*/FindOptionSet_acfimnorz.Active_firz_long, /*x:*/FindOptionSet_acimnorxz.Active_irxz, /*typeOther:*/FindOptionSet_acimnorxz.Active_irxz_long, /*l:*/FindOptionSet_acilmnorz.Active_ilrz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_ilrz_long, 125 false, 126 /*active:*/FindOption.ignoreCase, FindOption.print0, FindOption.regex 127 ), 128 /** Option set with the following active options: {@link #regex r}, {@link #timeNewer n}, {@link #timeOlder o}.*/ 129 Active_nor( 130 /*i:*/Active_inor, /*ignoreCase:*/Active_inor_long, /*z:*/Active_norz, /*print0:*/Active_norz_long, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_anor, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_anor_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cnor, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cnor_long, /*m:*/FindOptionSet_dfilmnorxz.Active_mnor, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_mnor_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_dnor, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dnor_long, /*f:*/FindOptionSet_acfimnorz.Active_fnor, /*typeFile:*/FindOptionSet_acfimnorz.Active_fnor_long, /*x:*/FindOptionSet_acimnorxz.Active_norx, /*typeOther:*/FindOptionSet_acimnorxz.Active_norx_long, /*l:*/FindOptionSet_acilmnorz.Active_lnor, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_lnor_long, 131 true, 132 /*active:*/FindOption.regex, FindOption.timeNewer, FindOption.timeOlder 133 ), 134 /** Option set with the following active options: {@link #regex r}, {@link #timeNewer n}, {@link #timeOlder o}.*/ 135 Active_nor_long( 136 /*i:*/Active_inor, /*ignoreCase:*/Active_inor_long, /*z:*/Active_norz, /*print0:*/Active_norz_long, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_anor, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_anor_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cnor, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cnor_long, /*m:*/FindOptionSet_dfilmnorxz.Active_mnor, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_mnor_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_dnor, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dnor_long, /*f:*/FindOptionSet_acfimnorz.Active_fnor, /*typeFile:*/FindOptionSet_acfimnorz.Active_fnor_long, /*x:*/FindOptionSet_acimnorxz.Active_norx, /*typeOther:*/FindOptionSet_acimnorxz.Active_norx_long, /*l:*/FindOptionSet_acilmnorz.Active_lnor, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_lnor_long, 137 false, 138 /*active:*/FindOption.regex, FindOption.timeNewer, FindOption.timeOlder 139 ), 140 /** Option set with the following active options: {@link #print0 z}, {@link #regex r}, {@link #timeNewer n}.*/ 141 Active_nrz( 142 /*i:*/Active_inrz, /*ignoreCase:*/Active_inrz_long, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_anrz, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_anrz_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cnrz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cnrz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_mnrz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_mnrz_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/Active_norz, /*timeOlder:*/Active_norz_long, /*d:*/FindOptionSet_acdimnorz.Active_dnrz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dnrz_long, /*f:*/FindOptionSet_acfimnorz.Active_fnrz, /*typeFile:*/FindOptionSet_acfimnorz.Active_fnrz_long, /*x:*/FindOptionSet_acimnorxz.Active_nrxz, /*typeOther:*/FindOptionSet_acimnorxz.Active_nrxz_long, /*l:*/FindOptionSet_acilmnorz.Active_lnrz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_lnrz_long, 143 true, 144 /*active:*/FindOption.print0, FindOption.regex, FindOption.timeNewer 145 ), 146 /** Option set with the following active options: {@link #print0 z}, {@link #regex r}, {@link #timeNewer n}.*/ 147 Active_nrz_long( 148 /*i:*/Active_inrz, /*ignoreCase:*/Active_inrz_long, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_anrz, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_anrz_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cnrz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cnrz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_mnrz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_mnrz_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/Active_norz, /*timeOlder:*/Active_norz_long, /*d:*/FindOptionSet_acdimnorz.Active_dnrz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dnrz_long, /*f:*/FindOptionSet_acfimnorz.Active_fnrz, /*typeFile:*/FindOptionSet_acfimnorz.Active_fnrz_long, /*x:*/FindOptionSet_acimnorxz.Active_nrxz, /*typeOther:*/FindOptionSet_acimnorxz.Active_nrxz_long, /*l:*/FindOptionSet_acilmnorz.Active_lnrz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_lnrz_long, 149 false, 150 /*active:*/FindOption.print0, FindOption.regex, FindOption.timeNewer 151 ), 152 /** Option set with the following active options: {@link #print0 z}, {@link #regex r}, {@link #timeOlder o}.*/ 153 Active_orz( 154 /*i:*/Active_iorz, /*ignoreCase:*/Active_iorz_long, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_aorz, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_aorz_long, /*c:*/FindOptionSet_cdfilnorxz.Active_corz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_corz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_morz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_morz_long, /*n:*/Active_norz, /*timeNewer:*/Active_norz_long, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_dorz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dorz_long, /*f:*/FindOptionSet_acfimnorz.Active_forz, /*typeFile:*/FindOptionSet_acfimnorz.Active_forz_long, /*x:*/FindOptionSet_acimnorxz.Active_orxz, /*typeOther:*/FindOptionSet_acimnorxz.Active_orxz_long, /*l:*/FindOptionSet_acilmnorz.Active_lorz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_lorz_long, 155 true, 156 /*active:*/FindOption.print0, FindOption.regex, FindOption.timeOlder 157 ), 158 /** Option set with the following active options: {@link #print0 z}, {@link #regex r}, {@link #timeOlder o}.*/ 159 Active_orz_long( 160 /*i:*/Active_iorz, /*ignoreCase:*/Active_iorz_long, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_aorz, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_aorz_long, /*c:*/FindOptionSet_cdfilnorxz.Active_corz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_corz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_morz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_morz_long, /*n:*/Active_norz, /*timeNewer:*/Active_norz_long, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_dorz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dorz_long, /*f:*/FindOptionSet_acfimnorz.Active_forz, /*typeFile:*/FindOptionSet_acfimnorz.Active_forz_long, /*x:*/FindOptionSet_acimnorxz.Active_orxz, /*typeOther:*/FindOptionSet_acimnorxz.Active_orxz_long, /*l:*/FindOptionSet_acilmnorz.Active_lorz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_lorz_long, 161 false, 162 /*active:*/FindOption.print0, FindOption.regex, FindOption.timeOlder 163 ), 164 /** Option set with the following active options: {@link #ignoreCase i}, {@link #timeNewer n}, {@link #timeOlder o}.*/ 165 Active_ino( 166 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/Active_inoz, /*print0:*/Active_inoz_long, /*r:*/Active_inor, /*regex:*/Active_inor_long, /*a:*/FindOptionSet_adfilnorxz.Active_aino, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_aino_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cino, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cino_long, /*m:*/FindOptionSet_dfilmnorxz.Active_imno, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_imno_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_dino, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dino_long, /*f:*/FindOptionSet_acfimnorz.Active_fino, /*typeFile:*/FindOptionSet_acfimnorz.Active_fino_long, /*x:*/FindOptionSet_acimnorxz.Active_inox, /*typeOther:*/FindOptionSet_acimnorxz.Active_inox_long, /*l:*/FindOptionSet_acilmnorz.Active_ilno, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_ilno_long, 167 true, 168 /*active:*/FindOption.ignoreCase, FindOption.timeNewer, FindOption.timeOlder 169 ), 170 /** Option set with the following active options: {@link #ignoreCase i}, {@link #timeNewer n}, {@link #timeOlder o}.*/ 171 Active_ino_long( 172 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/Active_inoz, /*print0:*/Active_inoz_long, /*r:*/Active_inor, /*regex:*/Active_inor_long, /*a:*/FindOptionSet_adfilnorxz.Active_aino, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_aino_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cino, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cino_long, /*m:*/FindOptionSet_dfilmnorxz.Active_imno, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_imno_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_dino, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dino_long, /*f:*/FindOptionSet_acfimnorz.Active_fino, /*typeFile:*/FindOptionSet_acfimnorz.Active_fino_long, /*x:*/FindOptionSet_acimnorxz.Active_inox, /*typeOther:*/FindOptionSet_acimnorxz.Active_inox_long, /*l:*/FindOptionSet_acilmnorz.Active_ilno, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_ilno_long, 173 false, 174 /*active:*/FindOption.ignoreCase, FindOption.timeNewer, FindOption.timeOlder 175 ), 176 /** Option set with the following active options: {@link #ignoreCase i}, {@link #print0 z}, {@link #timeNewer n}.*/ 177 Active_inz( 178 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/Active_inrz, /*regex:*/Active_inrz_long, /*a:*/FindOptionSet_adfilnorxz.Active_ainz, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_ainz_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cinz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cinz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_imnz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_imnz_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/Active_inoz, /*timeOlder:*/Active_inoz_long, /*d:*/FindOptionSet_acdimnorz.Active_dinz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dinz_long, /*f:*/FindOptionSet_acfimnorz.Active_finz, /*typeFile:*/FindOptionSet_acfimnorz.Active_finz_long, /*x:*/FindOptionSet_acimnorxz.Active_inxz, /*typeOther:*/FindOptionSet_acimnorxz.Active_inxz_long, /*l:*/FindOptionSet_acilmnorz.Active_ilnz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_ilnz_long, 179 true, 180 /*active:*/FindOption.ignoreCase, FindOption.print0, FindOption.timeNewer 181 ), 182 /** Option set with the following active options: {@link #ignoreCase i}, {@link #print0 z}, {@link #timeNewer n}.*/ 183 Active_inz_long( 184 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/Active_inrz, /*regex:*/Active_inrz_long, /*a:*/FindOptionSet_adfilnorxz.Active_ainz, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_ainz_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cinz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cinz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_imnz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_imnz_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/Active_inoz, /*timeOlder:*/Active_inoz_long, /*d:*/FindOptionSet_acdimnorz.Active_dinz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dinz_long, /*f:*/FindOptionSet_acfimnorz.Active_finz, /*typeFile:*/FindOptionSet_acfimnorz.Active_finz_long, /*x:*/FindOptionSet_acimnorxz.Active_inxz, /*typeOther:*/FindOptionSet_acimnorxz.Active_inxz_long, /*l:*/FindOptionSet_acilmnorz.Active_ilnz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_ilnz_long, 185 false, 186 /*active:*/FindOption.ignoreCase, FindOption.print0, FindOption.timeNewer 187 ), 188 /** Option set with the following active options: {@link #ignoreCase i}, {@link #print0 z}, {@link #timeOlder o}.*/ 189 Active_ioz( 190 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/Active_iorz, /*regex:*/Active_iorz_long, /*a:*/FindOptionSet_adfilnorxz.Active_aioz, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_aioz_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cioz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cioz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_imoz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_imoz_long, /*n:*/Active_inoz, /*timeNewer:*/Active_inoz_long, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_dioz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dioz_long, /*f:*/FindOptionSet_acfimnorz.Active_fioz, /*typeFile:*/FindOptionSet_acfimnorz.Active_fioz_long, /*x:*/FindOptionSet_acimnorxz.Active_ioxz, /*typeOther:*/FindOptionSet_acimnorxz.Active_ioxz_long, /*l:*/FindOptionSet_acilmnorz.Active_iloz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_iloz_long, 191 true, 192 /*active:*/FindOption.ignoreCase, FindOption.print0, FindOption.timeOlder 193 ), 194 /** Option set with the following active options: {@link #ignoreCase i}, {@link #print0 z}, {@link #timeOlder o}.*/ 195 Active_ioz_long( 196 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/Active_iorz, /*regex:*/Active_iorz_long, /*a:*/FindOptionSet_adfilnorxz.Active_aioz, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_aioz_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cioz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cioz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_imoz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_imoz_long, /*n:*/Active_inoz, /*timeNewer:*/Active_inoz_long, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_dioz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dioz_long, /*f:*/FindOptionSet_acfimnorz.Active_fioz, /*typeFile:*/FindOptionSet_acfimnorz.Active_fioz_long, /*x:*/FindOptionSet_acimnorxz.Active_ioxz, /*typeOther:*/FindOptionSet_acimnorxz.Active_ioxz_long, /*l:*/FindOptionSet_acilmnorz.Active_iloz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_iloz_long, 197 false, 198 /*active:*/FindOption.ignoreCase, FindOption.print0, FindOption.timeOlder 199 ), 200 /** Option set with the following active options: {@link #print0 z}, {@link #timeNewer n}, {@link #timeOlder o}.*/ 201 Active_noz( 202 /*i:*/Active_inoz, /*ignoreCase:*/Active_inoz_long, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/Active_norz, /*regex:*/Active_norz_long, /*a:*/FindOptionSet_adfilnorxz.Active_anoz, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_anoz_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cnoz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cnoz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_mnoz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_mnoz_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_dnoz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dnoz_long, /*f:*/FindOptionSet_acfimnorz.Active_fnoz, /*typeFile:*/FindOptionSet_acfimnorz.Active_fnoz_long, /*x:*/FindOptionSet_acimnorxz.Active_noxz, /*typeOther:*/FindOptionSet_acimnorxz.Active_noxz_long, /*l:*/FindOptionSet_acilmnorz.Active_lnoz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_lnoz_long, 203 true, 204 /*active:*/FindOption.print0, FindOption.timeNewer, FindOption.timeOlder 205 ), 206 /** Option set with the following active options: {@link #print0 z}, {@link #timeNewer n}, {@link #timeOlder o}.*/ 207 Active_noz_long( 208 /*i:*/Active_inoz, /*ignoreCase:*/Active_inoz_long, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/Active_norz, /*regex:*/Active_norz_long, /*a:*/FindOptionSet_adfilnorxz.Active_anoz, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_anoz_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cnoz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cnoz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_mnoz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_mnoz_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_dnoz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dnoz_long, /*f:*/FindOptionSet_acfimnorz.Active_fnoz, /*typeFile:*/FindOptionSet_acfimnorz.Active_fnoz_long, /*x:*/FindOptionSet_acimnorxz.Active_noxz, /*typeOther:*/FindOptionSet_acimnorxz.Active_noxz_long, /*l:*/FindOptionSet_acilmnorz.Active_lnoz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_lnoz_long, 209 false, 210 /*active:*/FindOption.print0, FindOption.timeNewer, FindOption.timeOlder 211 ), 212 /** Option set with the following active options: {@link #ignoreCase i}, {@link #regex r}.*/ 213 Active_ir( 214 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/Active_irz, /*print0:*/Active_irz_long, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_air, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_air_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cir, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cir_long, /*m:*/FindOptionSet_dfilmnorxz.Active_imr, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_imr_long, /*n:*/Active_inr, /*timeNewer:*/Active_inr_long, /*o:*/Active_ior, /*timeOlder:*/Active_ior_long, /*d:*/FindOptionSet_acdimnorz.Active_dir, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dir_long, /*f:*/FindOptionSet_acfimnorz.Active_fir, /*typeFile:*/FindOptionSet_acfimnorz.Active_fir_long, /*x:*/FindOptionSet_acimnorxz.Active_irx, /*typeOther:*/FindOptionSet_acimnorxz.Active_irx_long, /*l:*/FindOptionSet_acilmnorz.Active_ilr, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_ilr_long, 215 true, 216 /*active:*/FindOption.ignoreCase, FindOption.regex 217 ), 218 /** Option set with the following active options: {@link #ignoreCase i}, {@link #regex r}.*/ 219 Active_ir_long( 220 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/Active_irz, /*print0:*/Active_irz_long, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_air, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_air_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cir, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cir_long, /*m:*/FindOptionSet_dfilmnorxz.Active_imr, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_imr_long, /*n:*/Active_inr, /*timeNewer:*/Active_inr_long, /*o:*/Active_ior, /*timeOlder:*/Active_ior_long, /*d:*/FindOptionSet_acdimnorz.Active_dir, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dir_long, /*f:*/FindOptionSet_acfimnorz.Active_fir, /*typeFile:*/FindOptionSet_acfimnorz.Active_fir_long, /*x:*/FindOptionSet_acimnorxz.Active_irx, /*typeOther:*/FindOptionSet_acimnorxz.Active_irx_long, /*l:*/FindOptionSet_acilmnorz.Active_ilr, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_ilr_long, 221 false, 222 /*active:*/FindOption.ignoreCase, FindOption.regex 223 ), 224 /** Option set with the following active options: {@link #regex r}, {@link #timeNewer n}.*/ 225 Active_nr( 226 /*i:*/Active_inr, /*ignoreCase:*/Active_inr_long, /*z:*/Active_nrz, /*print0:*/Active_nrz_long, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_anr, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_anr_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cnr, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cnr_long, /*m:*/FindOptionSet_dfilmnorxz.Active_mnr, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_mnr_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/Active_nor, /*timeOlder:*/Active_nor_long, /*d:*/FindOptionSet_acdimnorz.Active_dnr, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dnr_long, /*f:*/FindOptionSet_acfimnorz.Active_fnr, /*typeFile:*/FindOptionSet_acfimnorz.Active_fnr_long, /*x:*/FindOptionSet_acimnorxz.Active_nrx, /*typeOther:*/FindOptionSet_acimnorxz.Active_nrx_long, /*l:*/FindOptionSet_acilmnorz.Active_lnr, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_lnr_long, 227 true, 228 /*active:*/FindOption.regex, FindOption.timeNewer 229 ), 230 /** Option set with the following active options: {@link #regex r}, {@link #timeNewer n}.*/ 231 Active_nr_long( 232 /*i:*/Active_inr, /*ignoreCase:*/Active_inr_long, /*z:*/Active_nrz, /*print0:*/Active_nrz_long, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_anr, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_anr_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cnr, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cnr_long, /*m:*/FindOptionSet_dfilmnorxz.Active_mnr, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_mnr_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/Active_nor, /*timeOlder:*/Active_nor_long, /*d:*/FindOptionSet_acdimnorz.Active_dnr, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dnr_long, /*f:*/FindOptionSet_acfimnorz.Active_fnr, /*typeFile:*/FindOptionSet_acfimnorz.Active_fnr_long, /*x:*/FindOptionSet_acimnorxz.Active_nrx, /*typeOther:*/FindOptionSet_acimnorxz.Active_nrx_long, /*l:*/FindOptionSet_acilmnorz.Active_lnr, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_lnr_long, 233 false, 234 /*active:*/FindOption.regex, FindOption.timeNewer 235 ), 236 /** Option set with the following active options: {@link #regex r}, {@link #timeOlder o}.*/ 237 Active_or( 238 /*i:*/Active_ior, /*ignoreCase:*/Active_ior_long, /*z:*/Active_orz, /*print0:*/Active_orz_long, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_aor, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_aor_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cor, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cor_long, /*m:*/FindOptionSet_dfilmnorxz.Active_mor, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_mor_long, /*n:*/Active_nor, /*timeNewer:*/Active_nor_long, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_dor, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dor_long, /*f:*/FindOptionSet_acfimnorz.Active_for, /*typeFile:*/FindOptionSet_acfimnorz.Active_for_long, /*x:*/FindOptionSet_acimnorxz.Active_orx, /*typeOther:*/FindOptionSet_acimnorxz.Active_orx_long, /*l:*/FindOptionSet_acilmnorz.Active_lor, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_lor_long, 239 true, 240 /*active:*/FindOption.regex, FindOption.timeOlder 241 ), 242 /** Option set with the following active options: {@link #regex r}, {@link #timeOlder o}.*/ 243 Active_or_long( 244 /*i:*/Active_ior, /*ignoreCase:*/Active_ior_long, /*z:*/Active_orz, /*print0:*/Active_orz_long, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_aor, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_aor_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cor, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cor_long, /*m:*/FindOptionSet_dfilmnorxz.Active_mor, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_mor_long, /*n:*/Active_nor, /*timeNewer:*/Active_nor_long, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_dor, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dor_long, /*f:*/FindOptionSet_acfimnorz.Active_for, /*typeFile:*/FindOptionSet_acfimnorz.Active_for_long, /*x:*/FindOptionSet_acimnorxz.Active_orx, /*typeOther:*/FindOptionSet_acimnorxz.Active_orx_long, /*l:*/FindOptionSet_acilmnorz.Active_lor, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_lor_long, 245 false, 246 /*active:*/FindOption.regex, FindOption.timeOlder 247 ), 248 /** Option set with the following active options: {@link #print0 z}, {@link #regex r}.*/ 249 Active_rz( 250 /*i:*/Active_irz, /*ignoreCase:*/Active_irz_long, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_arz, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_arz_long, /*c:*/FindOptionSet_cdfilnorxz.Active_crz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_crz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_mrz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_mrz_long, /*n:*/Active_nrz, /*timeNewer:*/Active_nrz_long, /*o:*/Active_orz, /*timeOlder:*/Active_orz_long, /*d:*/FindOptionSet_acdimnorz.Active_drz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_drz_long, /*f:*/FindOptionSet_acfimnorz.Active_frz, /*typeFile:*/FindOptionSet_acfimnorz.Active_frz_long, /*x:*/FindOptionSet_acimnorxz.Active_rxz, /*typeOther:*/FindOptionSet_acimnorxz.Active_rxz_long, /*l:*/FindOptionSet_acilmnorz.Active_lrz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_lrz_long, 251 true, 252 /*active:*/FindOption.print0, FindOption.regex 253 ), 254 /** Option set with the following active options: {@link #print0 z}, {@link #regex r}.*/ 255 Active_rz_long( 256 /*i:*/Active_irz, /*ignoreCase:*/Active_irz_long, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_arz, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_arz_long, /*c:*/FindOptionSet_cdfilnorxz.Active_crz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_crz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_mrz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_mrz_long, /*n:*/Active_nrz, /*timeNewer:*/Active_nrz_long, /*o:*/Active_orz, /*timeOlder:*/Active_orz_long, /*d:*/FindOptionSet_acdimnorz.Active_drz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_drz_long, /*f:*/FindOptionSet_acfimnorz.Active_frz, /*typeFile:*/FindOptionSet_acfimnorz.Active_frz_long, /*x:*/FindOptionSet_acimnorxz.Active_rxz, /*typeOther:*/FindOptionSet_acimnorxz.Active_rxz_long, /*l:*/FindOptionSet_acilmnorz.Active_lrz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_lrz_long, 257 false, 258 /*active:*/FindOption.print0, FindOption.regex 259 ), 260 /** Option set with the following active options: {@link #ignoreCase i}, {@link #timeNewer n}.*/ 261 Active_in( 262 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/Active_inz, /*print0:*/Active_inz_long, /*r:*/Active_inr, /*regex:*/Active_inr_long, /*a:*/FindOptionSet_adfilnorxz.Active_ain, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_ain_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cin, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cin_long, /*m:*/FindOptionSet_dfilmnorxz.Active_imn, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_imn_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/Active_ino, /*timeOlder:*/Active_ino_long, /*d:*/FindOptionSet_acdimnorz.Active_din, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_din_long, /*f:*/FindOptionSet_acfimnorz.Active_fin, /*typeFile:*/FindOptionSet_acfimnorz.Active_fin_long, /*x:*/FindOptionSet_acimnorxz.Active_inx, /*typeOther:*/FindOptionSet_acimnorxz.Active_inx_long, /*l:*/FindOptionSet_acilmnorz.Active_iln, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_iln_long, 263 true, 264 /*active:*/FindOption.ignoreCase, FindOption.timeNewer 265 ), 266 /** Option set with the following active options: {@link #ignoreCase i}, {@link #timeNewer n}.*/ 267 Active_in_long( 268 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/Active_inz, /*print0:*/Active_inz_long, /*r:*/Active_inr, /*regex:*/Active_inr_long, /*a:*/FindOptionSet_adfilnorxz.Active_ain, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_ain_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cin, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cin_long, /*m:*/FindOptionSet_dfilmnorxz.Active_imn, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_imn_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/Active_ino, /*timeOlder:*/Active_ino_long, /*d:*/FindOptionSet_acdimnorz.Active_din, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_din_long, /*f:*/FindOptionSet_acfimnorz.Active_fin, /*typeFile:*/FindOptionSet_acfimnorz.Active_fin_long, /*x:*/FindOptionSet_acimnorxz.Active_inx, /*typeOther:*/FindOptionSet_acimnorxz.Active_inx_long, /*l:*/FindOptionSet_acilmnorz.Active_iln, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_iln_long, 269 false, 270 /*active:*/FindOption.ignoreCase, FindOption.timeNewer 271 ), 272 /** Option set with the following active options: {@link #ignoreCase i}, {@link #timeOlder o}.*/ 273 Active_io( 274 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/Active_ioz, /*print0:*/Active_ioz_long, /*r:*/Active_ior, /*regex:*/Active_ior_long, /*a:*/FindOptionSet_adfilnorxz.Active_aio, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_aio_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cio, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cio_long, /*m:*/FindOptionSet_dfilmnorxz.Active_imo, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_imo_long, /*n:*/Active_ino, /*timeNewer:*/Active_ino_long, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_dio, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dio_long, /*f:*/FindOptionSet_acfimnorz.Active_fio, /*typeFile:*/FindOptionSet_acfimnorz.Active_fio_long, /*x:*/FindOptionSet_acimnorxz.Active_iox, /*typeOther:*/FindOptionSet_acimnorxz.Active_iox_long, /*l:*/FindOptionSet_acilmnorz.Active_ilo, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_ilo_long, 275 true, 276 /*active:*/FindOption.ignoreCase, FindOption.timeOlder 277 ), 278 /** Option set with the following active options: {@link #ignoreCase i}, {@link #timeOlder o}.*/ 279 Active_io_long( 280 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/Active_ioz, /*print0:*/Active_ioz_long, /*r:*/Active_ior, /*regex:*/Active_ior_long, /*a:*/FindOptionSet_adfilnorxz.Active_aio, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_aio_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cio, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cio_long, /*m:*/FindOptionSet_dfilmnorxz.Active_imo, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_imo_long, /*n:*/Active_ino, /*timeNewer:*/Active_ino_long, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_dio, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dio_long, /*f:*/FindOptionSet_acfimnorz.Active_fio, /*typeFile:*/FindOptionSet_acfimnorz.Active_fio_long, /*x:*/FindOptionSet_acimnorxz.Active_iox, /*typeOther:*/FindOptionSet_acimnorxz.Active_iox_long, /*l:*/FindOptionSet_acilmnorz.Active_ilo, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_ilo_long, 281 false, 282 /*active:*/FindOption.ignoreCase, FindOption.timeOlder 283 ), 284 /** Option set with the following active options: {@link #ignoreCase i}, {@link #print0 z}.*/ 285 Active_iz( 286 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/Active_irz, /*regex:*/Active_irz_long, /*a:*/FindOptionSet_adfilnorxz.Active_aiz, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_aiz_long, /*c:*/FindOptionSet_cdfilnorxz.Active_ciz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_ciz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_imz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_imz_long, /*n:*/Active_inz, /*timeNewer:*/Active_inz_long, /*o:*/Active_ioz, /*timeOlder:*/Active_ioz_long, /*d:*/FindOptionSet_acdimnorz.Active_diz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_diz_long, /*f:*/FindOptionSet_acfimnorz.Active_fiz, /*typeFile:*/FindOptionSet_acfimnorz.Active_fiz_long, /*x:*/FindOptionSet_acimnorxz.Active_ixz, /*typeOther:*/FindOptionSet_acimnorxz.Active_ixz_long, /*l:*/FindOptionSet_acilmnorz.Active_ilz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_ilz_long, 287 true, 288 /*active:*/FindOption.ignoreCase, FindOption.print0 289 ), 290 /** Option set with the following active options: {@link #ignoreCase i}, {@link #print0 z}.*/ 291 Active_iz_long( 292 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/Active_irz, /*regex:*/Active_irz_long, /*a:*/FindOptionSet_adfilnorxz.Active_aiz, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_aiz_long, /*c:*/FindOptionSet_cdfilnorxz.Active_ciz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_ciz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_imz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_imz_long, /*n:*/Active_inz, /*timeNewer:*/Active_inz_long, /*o:*/Active_ioz, /*timeOlder:*/Active_ioz_long, /*d:*/FindOptionSet_acdimnorz.Active_diz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_diz_long, /*f:*/FindOptionSet_acfimnorz.Active_fiz, /*typeFile:*/FindOptionSet_acfimnorz.Active_fiz_long, /*x:*/FindOptionSet_acimnorxz.Active_ixz, /*typeOther:*/FindOptionSet_acimnorxz.Active_ixz_long, /*l:*/FindOptionSet_acilmnorz.Active_ilz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_ilz_long, 293 false, 294 /*active:*/FindOption.ignoreCase, FindOption.print0 295 ), 296 /** Option set with the following active options: {@link #timeNewer n}, {@link #timeOlder o}.*/ 297 Active_no( 298 /*i:*/Active_ino, /*ignoreCase:*/Active_ino_long, /*z:*/Active_noz, /*print0:*/Active_noz_long, /*r:*/Active_nor, /*regex:*/Active_nor_long, /*a:*/FindOptionSet_adfilnorxz.Active_ano, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_ano_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cno, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cno_long, /*m:*/FindOptionSet_dfilmnorxz.Active_mno, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_mno_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_dno, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dno_long, /*f:*/FindOptionSet_acfimnorz.Active_fno, /*typeFile:*/FindOptionSet_acfimnorz.Active_fno_long, /*x:*/FindOptionSet_acimnorxz.Active_nox, /*typeOther:*/FindOptionSet_acimnorxz.Active_nox_long, /*l:*/FindOptionSet_acilmnorz.Active_lno, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_lno_long, 299 true, 300 /*active:*/FindOption.timeNewer, FindOption.timeOlder 301 ), 302 /** Option set with the following active options: {@link #timeNewer n}, {@link #timeOlder o}.*/ 303 Active_no_long( 304 /*i:*/Active_ino, /*ignoreCase:*/Active_ino_long, /*z:*/Active_noz, /*print0:*/Active_noz_long, /*r:*/Active_nor, /*regex:*/Active_nor_long, /*a:*/FindOptionSet_adfilnorxz.Active_ano, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_ano_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cno, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cno_long, /*m:*/FindOptionSet_dfilmnorxz.Active_mno, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_mno_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_dno, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dno_long, /*f:*/FindOptionSet_acfimnorz.Active_fno, /*typeFile:*/FindOptionSet_acfimnorz.Active_fno_long, /*x:*/FindOptionSet_acimnorxz.Active_nox, /*typeOther:*/FindOptionSet_acimnorxz.Active_nox_long, /*l:*/FindOptionSet_acilmnorz.Active_lno, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_lno_long, 305 false, 306 /*active:*/FindOption.timeNewer, FindOption.timeOlder 307 ), 308 /** Option set with the following active options: {@link #print0 z}, {@link #timeNewer n}.*/ 309 Active_nz( 310 /*i:*/Active_inz, /*ignoreCase:*/Active_inz_long, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/Active_nrz, /*regex:*/Active_nrz_long, /*a:*/FindOptionSet_adfilnorxz.Active_anz, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_anz_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cnz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cnz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_mnz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_mnz_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/Active_noz, /*timeOlder:*/Active_noz_long, /*d:*/FindOptionSet_acdimnorz.Active_dnz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dnz_long, /*f:*/FindOptionSet_acfimnorz.Active_fnz, /*typeFile:*/FindOptionSet_acfimnorz.Active_fnz_long, /*x:*/FindOptionSet_acimnorxz.Active_nxz, /*typeOther:*/FindOptionSet_acimnorxz.Active_nxz_long, /*l:*/FindOptionSet_acilmnorz.Active_lnz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_lnz_long, 311 true, 312 /*active:*/FindOption.print0, FindOption.timeNewer 313 ), 314 /** Option set with the following active options: {@link #print0 z}, {@link #timeNewer n}.*/ 315 Active_nz_long( 316 /*i:*/Active_inz, /*ignoreCase:*/Active_inz_long, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/Active_nrz, /*regex:*/Active_nrz_long, /*a:*/FindOptionSet_adfilnorxz.Active_anz, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_anz_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cnz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cnz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_mnz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_mnz_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/Active_noz, /*timeOlder:*/Active_noz_long, /*d:*/FindOptionSet_acdimnorz.Active_dnz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dnz_long, /*f:*/FindOptionSet_acfimnorz.Active_fnz, /*typeFile:*/FindOptionSet_acfimnorz.Active_fnz_long, /*x:*/FindOptionSet_acimnorxz.Active_nxz, /*typeOther:*/FindOptionSet_acimnorxz.Active_nxz_long, /*l:*/FindOptionSet_acilmnorz.Active_lnz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_lnz_long, 317 false, 318 /*active:*/FindOption.print0, FindOption.timeNewer 319 ), 320 /** Option set with the following active options: {@link #print0 z}, {@link #timeOlder o}.*/ 321 Active_oz( 322 /*i:*/Active_ioz, /*ignoreCase:*/Active_ioz_long, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/Active_orz, /*regex:*/Active_orz_long, /*a:*/FindOptionSet_adfilnorxz.Active_aoz, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_aoz_long, /*c:*/FindOptionSet_cdfilnorxz.Active_coz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_coz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_moz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_moz_long, /*n:*/Active_noz, /*timeNewer:*/Active_noz_long, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_doz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_doz_long, /*f:*/FindOptionSet_acfimnorz.Active_foz, /*typeFile:*/FindOptionSet_acfimnorz.Active_foz_long, /*x:*/FindOptionSet_acimnorxz.Active_oxz, /*typeOther:*/FindOptionSet_acimnorxz.Active_oxz_long, /*l:*/FindOptionSet_acilmnorz.Active_loz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_loz_long, 323 true, 324 /*active:*/FindOption.print0, FindOption.timeOlder 325 ), 326 /** Option set with the following active options: {@link #print0 z}, {@link #timeOlder o}.*/ 327 Active_oz_long( 328 /*i:*/Active_ioz, /*ignoreCase:*/Active_ioz_long, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/Active_orz, /*regex:*/Active_orz_long, /*a:*/FindOptionSet_adfilnorxz.Active_aoz, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_aoz_long, /*c:*/FindOptionSet_cdfilnorxz.Active_coz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_coz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_moz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_moz_long, /*n:*/Active_noz, /*timeNewer:*/Active_noz_long, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_doz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_doz_long, /*f:*/FindOptionSet_acfimnorz.Active_foz, /*typeFile:*/FindOptionSet_acfimnorz.Active_foz_long, /*x:*/FindOptionSet_acimnorxz.Active_oxz, /*typeOther:*/FindOptionSet_acimnorxz.Active_oxz_long, /*l:*/FindOptionSet_acilmnorz.Active_loz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_loz_long, 329 false, 330 /*active:*/FindOption.print0, FindOption.timeOlder 331 ), 332 /** Option set with the following active options: {@link #regex r}.*/ 333 Active_r( 334 /*i:*/Active_ir, /*ignoreCase:*/Active_ir_long, /*z:*/Active_rz, /*print0:*/Active_rz_long, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_ar, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_ar_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cr, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cr_long, /*m:*/FindOptionSet_dfilmnorxz.Active_mr, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_mr_long, /*n:*/Active_nr, /*timeNewer:*/Active_nr_long, /*o:*/Active_or, /*timeOlder:*/Active_or_long, /*d:*/FindOptionSet_acdimnorz.Active_dr, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dr_long, /*f:*/FindOptionSet_acfimnorz.Active_fr, /*typeFile:*/FindOptionSet_acfimnorz.Active_fr_long, /*x:*/FindOptionSet_acimnorxz.Active_rx, /*typeOther:*/FindOptionSet_acimnorxz.Active_rx_long, /*l:*/FindOptionSet_acilmnorz.Active_lr, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_lr_long, 335 true, 336 /*active:*/FindOption.regex 337 ), 338 /** Option set with the following active options: {@link #regex r}.*/ 339 Active_r_long( 340 /*i:*/Active_ir, /*ignoreCase:*/Active_ir_long, /*z:*/Active_rz, /*print0:*/Active_rz_long, /*r:*/null /*already set*/, /*regex:*/null /*already set*/, /*a:*/FindOptionSet_adfilnorxz.Active_ar, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_ar_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cr, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cr_long, /*m:*/FindOptionSet_dfilmnorxz.Active_mr, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_mr_long, /*n:*/Active_nr, /*timeNewer:*/Active_nr_long, /*o:*/Active_or, /*timeOlder:*/Active_or_long, /*d:*/FindOptionSet_acdimnorz.Active_dr, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dr_long, /*f:*/FindOptionSet_acfimnorz.Active_fr, /*typeFile:*/FindOptionSet_acfimnorz.Active_fr_long, /*x:*/FindOptionSet_acimnorxz.Active_rx, /*typeOther:*/FindOptionSet_acimnorxz.Active_rx_long, /*l:*/FindOptionSet_acilmnorz.Active_lr, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_lr_long, 341 false, 342 /*active:*/FindOption.regex 343 ), 344 /** Option set with the following active options: {@link #ignoreCase i}.*/ 345 Active_i( 346 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/Active_iz, /*print0:*/Active_iz_long, /*r:*/Active_ir, /*regex:*/Active_ir_long, /*a:*/FindOptionSet_adfilnorxz.Active_ai, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_ai_long, /*c:*/FindOptionSet_cdfilnorxz.Active_ci, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_ci_long, /*m:*/FindOptionSet_dfilmnorxz.Active_im, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_im_long, /*n:*/Active_in, /*timeNewer:*/Active_in_long, /*o:*/Active_io, /*timeOlder:*/Active_io_long, /*d:*/FindOptionSet_acdimnorz.Active_di, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_di_long, /*f:*/FindOptionSet_acfimnorz.Active_fi, /*typeFile:*/FindOptionSet_acfimnorz.Active_fi_long, /*x:*/FindOptionSet_acimnorxz.Active_ix, /*typeOther:*/FindOptionSet_acimnorxz.Active_ix_long, /*l:*/FindOptionSet_acilmnorz.Active_il, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_il_long, 347 true, 348 /*active:*/FindOption.ignoreCase 349 ), 350 /** Option set with the following active options: {@link #ignoreCase i}.*/ 351 Active_i_long( 352 /*i:*/null /*already set*/, /*ignoreCase:*/null /*already set*/, /*z:*/Active_iz, /*print0:*/Active_iz_long, /*r:*/Active_ir, /*regex:*/Active_ir_long, /*a:*/FindOptionSet_adfilnorxz.Active_ai, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_ai_long, /*c:*/FindOptionSet_cdfilnorxz.Active_ci, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_ci_long, /*m:*/FindOptionSet_dfilmnorxz.Active_im, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_im_long, /*n:*/Active_in, /*timeNewer:*/Active_in_long, /*o:*/Active_io, /*timeOlder:*/Active_io_long, /*d:*/FindOptionSet_acdimnorz.Active_di, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_di_long, /*f:*/FindOptionSet_acfimnorz.Active_fi, /*typeFile:*/FindOptionSet_acfimnorz.Active_fi_long, /*x:*/FindOptionSet_acimnorxz.Active_ix, /*typeOther:*/FindOptionSet_acimnorxz.Active_ix_long, /*l:*/FindOptionSet_acilmnorz.Active_il, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_il_long, 353 false, 354 /*active:*/FindOption.ignoreCase 355 ), 356 /** Option set with the following active options: {@link #timeNewer n}.*/ 357 Active_n( 358 /*i:*/Active_in, /*ignoreCase:*/Active_in_long, /*z:*/Active_nz, /*print0:*/Active_nz_long, /*r:*/Active_nr, /*regex:*/Active_nr_long, /*a:*/FindOptionSet_adfilnorxz.Active_an, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_an_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cn, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cn_long, /*m:*/FindOptionSet_dfilmnorxz.Active_mn, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_mn_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/Active_no, /*timeOlder:*/Active_no_long, /*d:*/FindOptionSet_acdimnorz.Active_dn, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dn_long, /*f:*/FindOptionSet_acfimnorz.Active_fn, /*typeFile:*/FindOptionSet_acfimnorz.Active_fn_long, /*x:*/FindOptionSet_acimnorxz.Active_nx, /*typeOther:*/FindOptionSet_acimnorxz.Active_nx_long, /*l:*/FindOptionSet_acilmnorz.Active_ln, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_ln_long, 359 true, 360 /*active:*/FindOption.timeNewer 361 ), 362 /** Option set with the following active options: {@link #timeNewer n}.*/ 363 Active_n_long( 364 /*i:*/Active_in, /*ignoreCase:*/Active_in_long, /*z:*/Active_nz, /*print0:*/Active_nz_long, /*r:*/Active_nr, /*regex:*/Active_nr_long, /*a:*/FindOptionSet_adfilnorxz.Active_an, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_an_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cn, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cn_long, /*m:*/FindOptionSet_dfilmnorxz.Active_mn, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_mn_long, /*n:*/null /*already set*/, /*timeNewer:*/null /*already set*/, /*o:*/Active_no, /*timeOlder:*/Active_no_long, /*d:*/FindOptionSet_acdimnorz.Active_dn, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dn_long, /*f:*/FindOptionSet_acfimnorz.Active_fn, /*typeFile:*/FindOptionSet_acfimnorz.Active_fn_long, /*x:*/FindOptionSet_acimnorxz.Active_nx, /*typeOther:*/FindOptionSet_acimnorxz.Active_nx_long, /*l:*/FindOptionSet_acilmnorz.Active_ln, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_ln_long, 365 false, 366 /*active:*/FindOption.timeNewer 367 ), 368 /** Option set with the following active options: {@link #timeOlder o}.*/ 369 Active_o( 370 /*i:*/Active_io, /*ignoreCase:*/Active_io_long, /*z:*/Active_oz, /*print0:*/Active_oz_long, /*r:*/Active_or, /*regex:*/Active_or_long, /*a:*/FindOptionSet_adfilnorxz.Active_ao, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_ao_long, /*c:*/FindOptionSet_cdfilnorxz.Active_co, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_co_long, /*m:*/FindOptionSet_dfilmnorxz.Active_mo, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_mo_long, /*n:*/Active_no, /*timeNewer:*/Active_no_long, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_do, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_do_long, /*f:*/FindOptionSet_acfimnorz.Active_fo, /*typeFile:*/FindOptionSet_acfimnorz.Active_fo_long, /*x:*/FindOptionSet_acimnorxz.Active_ox, /*typeOther:*/FindOptionSet_acimnorxz.Active_ox_long, /*l:*/FindOptionSet_acilmnorz.Active_lo, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_lo_long, 371 true, 372 /*active:*/FindOption.timeOlder 373 ), 374 /** Option set with the following active options: {@link #timeOlder o}.*/ 375 Active_o_long( 376 /*i:*/Active_io, /*ignoreCase:*/Active_io_long, /*z:*/Active_oz, /*print0:*/Active_oz_long, /*r:*/Active_or, /*regex:*/Active_or_long, /*a:*/FindOptionSet_adfilnorxz.Active_ao, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_ao_long, /*c:*/FindOptionSet_cdfilnorxz.Active_co, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_co_long, /*m:*/FindOptionSet_dfilmnorxz.Active_mo, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_mo_long, /*n:*/Active_no, /*timeNewer:*/Active_no_long, /*o:*/null /*already set*/, /*timeOlder:*/null /*already set*/, /*d:*/FindOptionSet_acdimnorz.Active_do, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_do_long, /*f:*/FindOptionSet_acfimnorz.Active_fo, /*typeFile:*/FindOptionSet_acfimnorz.Active_fo_long, /*x:*/FindOptionSet_acimnorxz.Active_ox, /*typeOther:*/FindOptionSet_acimnorxz.Active_ox_long, /*l:*/FindOptionSet_acilmnorz.Active_lo, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_lo_long, 377 false, 378 /*active:*/FindOption.timeOlder 379 ), 380 /** Option set with the following active options: {@link #print0 z}.*/ 381 Active_z( 382 /*i:*/Active_iz, /*ignoreCase:*/Active_iz_long, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/Active_rz, /*regex:*/Active_rz_long, /*a:*/FindOptionSet_adfilnorxz.Active_az, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_az_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_mz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_mz_long, /*n:*/Active_nz, /*timeNewer:*/Active_nz_long, /*o:*/Active_oz, /*timeOlder:*/Active_oz_long, /*d:*/FindOptionSet_acdimnorz.Active_dz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dz_long, /*f:*/FindOptionSet_acfimnorz.Active_fz, /*typeFile:*/FindOptionSet_acfimnorz.Active_fz_long, /*x:*/FindOptionSet_acimnorxz.Active_xz, /*typeOther:*/FindOptionSet_acimnorxz.Active_xz_long, /*l:*/FindOptionSet_acilmnorz.Active_lz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_lz_long, 383 true, 384 /*active:*/FindOption.print0 385 ), 386 /** Option set with the following active options: {@link #print0 z}.*/ 387 Active_z_long( 388 /*i:*/Active_iz, /*ignoreCase:*/Active_iz_long, /*z:*/null /*already set*/, /*print0:*/null /*already set*/, /*r:*/Active_rz, /*regex:*/Active_rz_long, /*a:*/FindOptionSet_adfilnorxz.Active_az, /*timeAccess:*/FindOptionSet_adfilnorxz.Active_az_long, /*c:*/FindOptionSet_cdfilnorxz.Active_cz, /*timeCreate:*/FindOptionSet_cdfilnorxz.Active_cz_long, /*m:*/FindOptionSet_dfilmnorxz.Active_mz, /*timeModified:*/FindOptionSet_dfilmnorxz.Active_mz_long, /*n:*/Active_nz, /*timeNewer:*/Active_nz_long, /*o:*/Active_oz, /*timeOlder:*/Active_oz_long, /*d:*/FindOptionSet_acdimnorz.Active_dz, /*typeDirectory:*/FindOptionSet_acdimnorz.Active_dz_long, /*f:*/FindOptionSet_acfimnorz.Active_fz, /*typeFile:*/FindOptionSet_acfimnorz.Active_fz_long, /*x:*/FindOptionSet_acimnorxz.Active_xz, /*typeOther:*/FindOptionSet_acimnorxz.Active_xz_long, /*l:*/FindOptionSet_acilmnorz.Active_lz, /*typeSymlink:*/FindOptionSet_acilmnorz.Active_lz_long, 389 false, 390 /*active:*/FindOption.print0 391 ); 392 private FindOptionSet_acdfilmnorxz( 393 FindOptionSet_acdfilmnorxz i, FindOptionSet_acdfilmnorxz ignoreCase, FindOptionSet_acdfilmnorxz z, FindOptionSet_acdfilmnorxz print0, FindOptionSet_acdfilmnorxz r, FindOptionSet_acdfilmnorxz regex, FindOptionSet_adfilnorxz a, FindOptionSet_adfilnorxz timeAccess, FindOptionSet_cdfilnorxz c, FindOptionSet_cdfilnorxz timeCreate, FindOptionSet_dfilmnorxz m, FindOptionSet_dfilmnorxz timeModified, FindOptionSet_acdfilmnorxz n, FindOptionSet_acdfilmnorxz timeNewer, FindOptionSet_acdfilmnorxz o, FindOptionSet_acdfilmnorxz timeOlder, FindOptionSet_acdimnorz d, FindOptionSet_acdimnorz typeDirectory, FindOptionSet_acfimnorz f, FindOptionSet_acfimnorz typeFile, FindOptionSet_acimnorxz x, FindOptionSet_acimnorxz typeOther, FindOptionSet_acilmnorz l, FindOptionSet_acilmnorz typeSymlink, 394 boolean useAcronym, 395 FindOption... activeOptions 396 ) { 397 this.i = i == null ? this : i; 398 this.ignoreCase = ignoreCase == null ? this : ignoreCase; 399 this.z = z == null ? this : z; 400 this.print0 = print0 == null ? this : print0; 401 this.r = r == null ? this : r; 402 this.regex = regex == null ? this : regex; 403 this.a = notNull(a); 404 this.timeAccess = notNull(timeAccess); 405 this.c = notNull(c); 406 this.timeCreate = notNull(timeCreate); 407 this.m = notNull(m); 408 this.timeModified = notNull(timeModified); 409 this.n = n == null ? this : n; 410 this.timeNewer = timeNewer == null ? this : timeNewer; 411 this.o = o == null ? this : o; 412 this.timeOlder = timeOlder == null ? this : timeOlder; 413 this.d = notNull(d); 414 this.typeDirectory = notNull(typeDirectory); 415 this.f = notNull(f); 416 this.typeFile = notNull(typeFile); 417 this.x = notNull(x); 418 this.typeOther = notNull(typeOther); 419 this.l = notNull(l); 420 this.typeSymlink = notNull(typeSymlink); 421 this.useAcronym = useAcronym; 422 this.options = activeOptions.length == 0 ? EnumSet.noneOf(FindOption.class) : EnumSet.copyOf(Arrays.asList(activeOptions)); 423 } 424 private final boolean useAcronym; 425 /** 426 * Option {@code "-i"}: Use case insensitive matching when applying the file name pattern 427 specified by the name operand 428<p> 429 (This option is ignored if no name operand is specified). 430 * <p> 431 * The option {@code "-i"} is equivalent to the {@code "--}{@link #ignoreCase ignoreCase}{@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 "-i"}. If the option {@code "-i"} 435 * is already set, the field {@code i} points to the enum constant itself 436 * as it already represents the current set of options. 437 */ 438 public final FindOptionSet_acdfilmnorxz i; 439 /** 440 * Option {@code "--ignoreCase"}: Use case insensitive matching when applying the file name pattern 441 specified by the name operand 442<p> 443 (This option is ignored if no name operand is specified). 444 * <p> 445 * The option {@code "--ignoreCase"} is equivalent to the {@code "-}{@link #i i}{@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 "--ignoreCase"}. If the option {@code "--ignoreCase"} 449 * is already set, the field {@code ignoreCase} points to the enum constant itself 450 * as it already represents the current set of options. 451 */ 452 public final FindOptionSet_acdfilmnorxz ignoreCase; 453 /** 454 * Option {@code "-z"}: Print the full file name on the standard output, followed by a null 455 character (instead of the newline character used by default). This 456 allows file names that contain newlines or other types of white 457 space to be correctly interpreted by programs that process the find 458 output. This option corresponds to the --delimiter0 option of xargs. 459 * <p> 460 * The option {@code "-z"} is equivalent to the {@code "--}{@link #print0 print0}{@code "} option. 461 * <p> 462 * Technically speaking, this field points to a set with the options of the 463 * current set plus the option {@code "-z"}. If the option {@code "-z"} 464 * is already set, the field {@code z} points to the enum constant itself 465 * as it already represents the current set of options. 466 */ 467 public final FindOptionSet_acdfilmnorxz z; 468 /** 469 * Option {@code "--print0"}: Print the full file name on the standard output, followed by a null 470 character (instead of the newline character used by default). This 471 allows file names that contain newlines or other types of white 472 space to be correctly interpreted by programs that process the find 473 output. This option corresponds to the --delimiter0 option of xargs. 474 * <p> 475 * The option {@code "--print0"} is equivalent to the {@code "-}{@link #z z}{@code "} option. 476 * <p> 477 * Technically speaking, this field points to a set with the options of the 478 * current set plus the option {@code "--print0"}. If the option {@code "--print0"} 479 * is already set, the field {@code print0} points to the enum constant itself 480 * as it already represents the current set of options. 481 */ 482 public final FindOptionSet_acdfilmnorxz print0; 483 /** 484 * Option {@code "-r"}: Use full regular expression syntax for the patterns specified by the 485 name operand 486<p> 487 (This option is ignored if no name operand is specified). 488 * <p> 489 * The option {@code "-r"} is equivalent to the {@code "--}{@link #regex regex}{@code "} option. 490 * <p> 491 * Technically speaking, this field points to a set with the options of the 492 * current set plus the option {@code "-r"}. If the option {@code "-r"} 493 * is already set, the field {@code r} points to the enum constant itself 494 * as it already represents the current set of options. 495 */ 496 public final FindOptionSet_acdfilmnorxz r; 497 /** 498 * Option {@code "--regex"}: Use full regular expression syntax for the patterns specified by the 499 name operand 500<p> 501 (This option is ignored if no name operand is specified). 502 * <p> 503 * The option {@code "--regex"} is equivalent to the {@code "-}{@link #r r}{@code "} option. 504 * <p> 505 * Technically speaking, this field points to a set with the options of the 506 * current set plus the option {@code "--regex"}. If the option {@code "--regex"} 507 * is already set, the field {@code regex} points to the enum constant itself 508 * as it already represents the current set of options. 509 */ 510 public final FindOptionSet_acdfilmnorxz regex; 511 /** 512 * Option {@code "-a"}: The time operand refers to the last access time of the file 513 <p> 514 (This option is ignored if no time operand is specified). 515 * <p> 516 * The option {@code "-a"} is equivalent to the {@code "--}{@link #timeAccess timeAccess}{@code "} option. 517 * <p> 518 * Technically speaking, this field points to a set with the options of the 519 * current set plus the option {@code "-a"}. If the option {@code "-a"} 520 * is already set, the field {@code a} points to the enum constant itself 521 * as it already represents the current set of options. 522 */ 523 public final FindOptionSet_adfilnorxz a; 524 /** 525 * Option {@code "--timeAccess"}: The time operand refers to the last access time of the file 526 <p> 527 (This option is ignored if no time operand is specified). 528 * <p> 529 * The option {@code "--timeAccess"} is equivalent to the {@code "-}{@link #a a}{@code "} option. 530 * <p> 531 * Technically speaking, this field points to a set with the options of the 532 * current set plus the option {@code "--timeAccess"}. If the option {@code "--timeAccess"} 533 * is already set, the field {@code timeAccess} points to the enum constant itself 534 * as it already represents the current set of options. 535 */ 536 public final FindOptionSet_adfilnorxz timeAccess; 537 /** 538 * Option {@code "-c"}: The time operand refers to the creation time of the file 539 <p> 540 (This option is ignored if no time operand is specified). 541 * <p> 542 * The option {@code "-c"} is equivalent to the {@code "--}{@link #timeCreate timeCreate}{@code "} option. 543 * <p> 544 * Technically speaking, this field points to a set with the options of the 545 * current set plus the option {@code "-c"}. If the option {@code "-c"} 546 * is already set, the field {@code c} points to the enum constant itself 547 * as it already represents the current set of options. 548 */ 549 public final FindOptionSet_cdfilnorxz c; 550 /** 551 * Option {@code "--timeCreate"}: The time operand refers to the creation time of the file 552 <p> 553 (This option is ignored if no time operand is specified). 554 * <p> 555 * The option {@code "--timeCreate"} is equivalent to the {@code "-}{@link #c c}{@code "} option. 556 * <p> 557 * Technically speaking, this field points to a set with the options of the 558 * current set plus the option {@code "--timeCreate"}. If the option {@code "--timeCreate"} 559 * is already set, the field {@code timeCreate} points to the enum constant itself 560 * as it already represents the current set of options. 561 */ 562 public final FindOptionSet_cdfilnorxz timeCreate; 563 /** 564 * Option {@code "-m"}: The time operand refers to the last modification time of the file 565 (the default) 566 <p> 567 (This option is ignored if no time operand is specified). 568 * <p> 569 * The option {@code "-m"} is equivalent to the {@code "--}{@link #timeModified timeModified}{@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 "-m"}. If the option {@code "-m"} 573 * is already set, the field {@code m} points to the enum constant itself 574 * as it already represents the current set of options. 575 */ 576 public final FindOptionSet_dfilmnorxz m; 577 /** 578 * Option {@code "--timeModified"}: The time operand refers to the last modification time of the file 579 (the default) 580 <p> 581 (This option is ignored if no time operand is specified). 582 * <p> 583 * The option {@code "--timeModified"} is equivalent to the {@code "-}{@link #m m}{@code "} option. 584 * <p> 585 * Technically speaking, this field points to a set with the options of the 586 * current set plus the option {@code "--timeModified"}. If the option {@code "--timeModified"} 587 * is already set, the field {@code timeModified} points to the enum constant itself 588 * as it already represents the current set of options. 589 */ 590 public final FindOptionSet_dfilmnorxz timeModified; 591 /** 592 * Option {@code "-n"}: Consider only files that have been created, modified or accessed 593 after or at the time specified by the time operand (the default) 594 <p> 595 (This option is ignored if no time operand is specified). 596 * <p> 597 * The option {@code "-n"} is equivalent to the {@code "--}{@link #timeNewer timeNewer}{@code "} option. 598 * <p> 599 * Technically speaking, this field points to a set with the options of the 600 * current set plus the option {@code "-n"}. If the option {@code "-n"} 601 * is already set, the field {@code n} points to the enum constant itself 602 * as it already represents the current set of options. 603 */ 604 public final FindOptionSet_acdfilmnorxz n; 605 /** 606 * Option {@code "--timeNewer"}: Consider only files that have been created, modified or accessed 607 after or at the time specified by the time operand (the default) 608 <p> 609 (This option is ignored if no time operand is specified). 610 * <p> 611 * The option {@code "--timeNewer"} is equivalent to the {@code "-}{@link #n n}{@code "} option. 612 * <p> 613 * Technically speaking, this field points to a set with the options of the 614 * current set plus the option {@code "--timeNewer"}. If the option {@code "--timeNewer"} 615 * is already set, the field {@code timeNewer} points to the enum constant itself 616 * as it already represents the current set of options. 617 */ 618 public final FindOptionSet_acdfilmnorxz timeNewer; 619 /** 620 * Option {@code "-o"}: Consider only files that have been created, modified or accessed 621 before or at the time specified by the time operand 622 <p> 623 (This option is ignored if no time operand is specified). 624 * <p> 625 * The option {@code "-o"} is equivalent to the {@code "--}{@link #timeOlder timeOlder}{@code "} option. 626 * <p> 627 * Technically speaking, this field points to a set with the options of the 628 * current set plus the option {@code "-o"}. If the option {@code "-o"} 629 * is already set, the field {@code o} points to the enum constant itself 630 * as it already represents the current set of options. 631 */ 632 public final FindOptionSet_acdfilmnorxz o; 633 /** 634 * Option {@code "--timeOlder"}: Consider only files that have been created, modified or accessed 635 before or at the time specified by the time operand 636 <p> 637 (This option is ignored if no time operand is specified). 638 * <p> 639 * The option {@code "--timeOlder"} is equivalent to the {@code "-}{@link #o o}{@code "} option. 640 * <p> 641 * Technically speaking, this field points to a set with the options of the 642 * current set plus the option {@code "--timeOlder"}. If the option {@code "--timeOlder"} 643 * is already set, the field {@code timeOlder} points to the enum constant itself 644 * as it already represents the current set of options. 645 */ 646 public final FindOptionSet_acdfilmnorxz timeOlder; 647 /** 648 * Option {@code "-d"}: Consider only directories 649 * <p> 650 * The option {@code "-d"} is equivalent to the {@code "--}{@link #typeDirectory typeDirectory}{@code "} option. 651 * <p> 652 * Technically speaking, this field points to a set with the options of the 653 * current set plus the option {@code "-d"}. If the option {@code "-d"} 654 * is already set, the field {@code d} points to the enum constant itself 655 * as it already represents the current set of options. 656 */ 657 public final FindOptionSet_acdimnorz d; 658 /** 659 * Option {@code "--typeDirectory"}: Consider only directories 660 * <p> 661 * The option {@code "--typeDirectory"} is equivalent to the {@code "-}{@link #d d}{@code "} option. 662 * <p> 663 * Technically speaking, this field points to a set with the options of the 664 * current set plus the option {@code "--typeDirectory"}. If the option {@code "--typeDirectory"} 665 * is already set, the field {@code typeDirectory} points to the enum constant itself 666 * as it already represents the current set of options. 667 */ 668 public final FindOptionSet_acdimnorz typeDirectory; 669 /** 670 * Option {@code "-f"}: Consider only regular files 671 * <p> 672 * The option {@code "-f"} is equivalent to the {@code "--}{@link #typeFile typeFile}{@code "} option. 673 * <p> 674 * Technically speaking, this field points to a set with the options of the 675 * current set plus the option {@code "-f"}. If the option {@code "-f"} 676 * is already set, the field {@code f} points to the enum constant itself 677 * as it already represents the current set of options. 678 */ 679 public final FindOptionSet_acfimnorz f; 680 /** 681 * Option {@code "--typeFile"}: Consider only regular files 682 * <p> 683 * The option {@code "--typeFile"} is equivalent to the {@code "-}{@link #f f}{@code "} option. 684 * <p> 685 * Technically speaking, this field points to a set with the options of the 686 * current set plus the option {@code "--typeFile"}. If the option {@code "--typeFile"} 687 * is already set, the field {@code typeFile} points to the enum constant itself 688 * as it already represents the current set of options. 689 */ 690 public final FindOptionSet_acfimnorz typeFile; 691 /** 692 * Option {@code "-x"}: Consider only files that are neither of directory (d), 693 regular file (f) or symlink (l). 694 * <p> 695 * The option {@code "-x"} is equivalent to the {@code "--}{@link #typeOther typeOther}{@code "} option. 696 * <p> 697 * Technically speaking, this field points to a set with the options of the 698 * current set plus the option {@code "-x"}. If the option {@code "-x"} 699 * is already set, the field {@code x} points to the enum constant itself 700 * as it already represents the current set of options. 701 */ 702 public final FindOptionSet_acimnorxz x; 703 /** 704 * Option {@code "--typeOther"}: Consider only files that are neither of directory (d), 705 regular file (f) or symlink (l). 706 * <p> 707 * The option {@code "--typeOther"} is equivalent to the {@code "-}{@link #x x}{@code "} option. 708 * <p> 709 * Technically speaking, this field points to a set with the options of the 710 * current set plus the option {@code "--typeOther"}. If the option {@code "--typeOther"} 711 * is already set, the field {@code typeOther} points to the enum constant itself 712 * as it already represents the current set of options. 713 */ 714 public final FindOptionSet_acimnorxz typeOther; 715 /** 716 * Option {@code "-l"}: Consider only symbolic links 717 * <p> 718 * The option {@code "-l"} is equivalent to the {@code "--}{@link #typeSymlink typeSymlink}{@code "} option. 719 * <p> 720 * Technically speaking, this field points to a set with the options of the 721 * current set plus the option {@code "-l"}. If the option {@code "-l"} 722 * is already set, the field {@code l} points to the enum constant itself 723 * as it already represents the current set of options. 724 */ 725 public final FindOptionSet_acilmnorz l; 726 /** 727 * Option {@code "--typeSymlink"}: Consider only symbolic links 728 * <p> 729 * The option {@code "--typeSymlink"} is equivalent to the {@code "-}{@link #l l}{@code "} option. 730 * <p> 731 * Technically speaking, this field points to a set with the options of the 732 * current set plus the option {@code "--typeSymlink"}. If the option {@code "--typeSymlink"} 733 * is already set, the field {@code typeSymlink} points to the enum constant itself 734 * as it already represents the current set of options. 735 */ 736 public final FindOptionSet_acilmnorz typeSymlink; 737 private final EnumSet<FindOption> options; 738 739 //inherit javadoc 740 @Override 741 public Class<FindOption> optionType() { 742 return FindOption.class; 743 } 744 //inherit javadoc 745 @Override 746 public boolean isSet(FindOption option) { 747 return options.contains(option); 748 } 749 //inherit javadoc 750 @Override 751 public int size() { 752 return options.size(); 753 } 754 /** 755 * Checks that the given {@code value} is not null and throws an exception 756 * otherwise. 757 * 758 * @param the value to check 759 * @return the given {@code value} if it is not null 760 * @throws NullPointerException if {@code value==null} 761 */ 762 private static <T> T notNull(T value) { 763 if (value != null) return value; 764 throw new NullPointerException(); 765 } 766 /** 767 * Returns the set with the active options. The returned set a new defensive 768 * copy instance created when this method is called, modifications of this 769 * set will therefore not alter {@code this} option set. 770 * 771 * @return a copy of the set with the active options. 772 */ 773 @Override 774 public EnumSet<FindOption> asSet() { 775 return EnumSet.copyOf(options); 776 } 777 /** 778 * Returns an immutable iterator with the active options of this option set. 779 * 780 * @return an immutable iterator for over the active options 781 */ 782 @Override 783 public Iterator<FindOption> iterator() { 784 return Collections.unmodifiableSet(options).iterator(); 785 } 786 /** 787 * Returns true if the {@link Option#acronym() acronym} should be used in 788 * for the specified {@code option} string representations. 789 * <p> 790 * In particular and independent from the {@code option} argument, this 791 * option set returns true if the last option added to this set was an 792 * acronym, and false if it was a long option name. 793 * <p> 794 * For instance, the set defined as 795 * <pre> 796 * FindOptionSet_acdfilmnorxz.ignoreCase.z; 797 * </pre> 798 * uses acronyms, that is, this method always returns true for the above 799 * set. 800 * <p> 801 * On the other hand, long option names are used and this method always 802 * returns false for the set 803 * <pre> 804 * FindOptionSet_acdfilmnorxz.i.print0; 805 * </pre> 806 * <p> 807 * Note that a repeated option is <i>not</i> treated as the last set option. 808 * For instance, the first and last option of the following set are 809 * equivalent and acronyms are used: 810 * <pre> 811 * FindOptionSet_acdfilmnorxz.i.z.ignoreCase; 812 * </pre> 813 * <p> 814 * This method always returns true for the empty set with no active options. 815 * 816 * @param option 817 * the option of interest, has no impact on the result returned 818 * by this method 819 * @return true if option acronyms should be used for string representations 820 * of any option of this option set 821 */ 822 @Override 823 public boolean useAcronymFor(FindOption option) { 824 return useAcronym; 825 } 826}