serialized-form.html 143 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <!-- NewPage -->
  3. <html lang="en">
  4. <head>
  5. <title>Serialized Form (ARX API Documentation)</title>
  6. <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
  7. </head>
  8. <body>
  9. <script type="text/javascript"><!--
  10. if (location.href.indexOf('is-external=true') == -1) {
  11. parent.document.title="Serialized Form (ARX API Documentation)";
  12. }
  13. //-->
  14. </script>
  15. <noscript>
  16. <div>JavaScript is disabled on your browser.</div>
  17. </noscript>
  18. <!-- ========= START OF TOP NAVBAR ======= -->
  19. <div class="topNav"><a name="navbar_top">
  20. <!-- -->
  21. </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
  22. <!-- -->
  23. </a>
  24. <ul class="navList" title="Navigation">
  25. <li><a href="overview-summary.html">Overview</a></li>
  26. <li>Package</li>
  27. <li>Class</li>
  28. <li>Use</li>
  29. <li><a href="overview-tree.html">Tree</a></li>
  30. <li><a href="deprecated-list.html">Deprecated</a></li>
  31. <li><a href="index-files/index-1.html">Index</a></li>
  32. <li><a href="help-doc.html">Help</a></li>
  33. </ul>
  34. </div>
  35. <div class="subNav">
  36. <ul class="navList">
  37. <li>Prev</li>
  38. <li>Next</li>
  39. </ul>
  40. <ul class="navList">
  41. <li><a href="index.html?serialized-form.html" target="_top">Frames</a></li>
  42. <li><a href="serialized-form.html" target="_top">No Frames</a></li>
  43. </ul>
  44. <ul class="navList" id="allclasses_navbar_top">
  45. <li><a href="allclasses-noframe.html">All Classes</a></li>
  46. </ul>
  47. <div>
  48. <script type="text/javascript"><!--
  49. allClassesLink = document.getElementById("allclasses_navbar_top");
  50. if(window==top) {
  51. allClassesLink.style.display = "block";
  52. }
  53. else {
  54. allClassesLink.style.display = "none";
  55. }
  56. //-->
  57. </script>
  58. </div>
  59. <a name="skip-navbar_top">
  60. <!-- -->
  61. </a></div>
  62. <!-- ========= END OF TOP NAVBAR ========= -->
  63. <div class="header">
  64. <h1 title="Serialized Form" class="title">Serialized Form</h1>
  65. </div>
  66. <div class="serializedFormContainer">
  67. <ul class="blockList">
  68. <li class="blockList">
  69. <h2 title="Package">Package&nbsp;org.deidentifier.arx</h2>
  70. <ul class="blockList">
  71. <li class="blockList"><a name="org.deidentifier.arx.ARXConfiguration">
  72. <!-- -->
  73. </a>
  74. <h3>Class <a href="org/deidentifier/arx/ARXConfiguration.html" title="class in org.deidentifier.arx">org.deidentifier.arx.ARXConfiguration</a> extends java.lang.Object implements Serializable</h3>
  75. <dl class="nameValue">
  76. <dt>serialVersionUID:</dt>
  77. <dd>-6713510386735241964L</dd>
  78. </dl>
  79. <ul class="blockList">
  80. <li class="blockList"><a name="serializedForm">
  81. <!-- -->
  82. </a>
  83. <h3>Serialized Fields</h3>
  84. <ul class="blockList">
  85. <li class="blockList">
  86. <h4>absMaxOutliers</h4>
  87. <pre>int absMaxOutliers</pre>
  88. <div class="block">Absolute tuple outliers.</div>
  89. </li>
  90. <li class="blockList">
  91. <h4>aCriteria</h4>
  92. <pre><a href="org/deidentifier/arx/criteria/PrivacyCriterion.html" title="class in org.deidentifier.arx.criteria">PrivacyCriterion</a>[] aCriteria</pre>
  93. <div class="block">Criteria.</div>
  94. </li>
  95. <li class="blockList">
  96. <h4>bCriteria</h4>
  97. <pre><a href="org/deidentifier/arx/criteria/SampleBasedCriterion.html" title="class in org.deidentifier.arx.criteria">SampleBasedCriterion</a>[] bCriteria</pre>
  98. <div class="block">Criteria.</div>
  99. </li>
  100. <li class="blockList">
  101. <h4>attributeWeights</h4>
  102. <pre>java.util.Map&lt;K,V&gt; attributeWeights</pre>
  103. <div class="block">A map of weights per attribute.</div>
  104. </li>
  105. <li class="blockList">
  106. <h4>criteria</h4>
  107. <pre>java.util.Set&lt;E&gt; criteria</pre>
  108. <div class="block">The criteria.</div>
  109. </li>
  110. <li class="blockList">
  111. <h4>metric</h4>
  112. <pre><a href="org/deidentifier/arx/metric/Metric.html" title="class in org.deidentifier.arx.metric">Metric</a>&lt;<a href="org/deidentifier/arx/metric/Metric.html" title="type parameter in Metric">T</a> extends <a href="org/deidentifier/arx/metric/InformationLoss.html" title="class in org.deidentifier.arx.metric">InformationLoss</a>&lt;?&gt;&gt; metric</pre>
  113. <div class="block">The metric.</div>
  114. </li>
  115. <li class="blockList">
  116. <h4>practicalMonotonicity</h4>
  117. <pre>boolean practicalMonotonicity</pre>
  118. <div class="block">Do we assume practical monotonicity.</div>
  119. </li>
  120. <li class="blockList">
  121. <h4>relMaxOutliers</h4>
  122. <pre>double relMaxOutliers</pre>
  123. <div class="block">Relative tuple outliers.</div>
  124. </li>
  125. <li class="blockList">
  126. <h4>requirements</h4>
  127. <pre>int requirements</pre>
  128. <div class="block">The requirements per equivalence class.</div>
  129. </li>
  130. <li class="blockList">
  131. <h4>snapshotLength</h4>
  132. <pre>int snapshotLength</pre>
  133. <div class="block">The snapshot length.</div>
  134. </li>
  135. <li class="blockList">
  136. <h4>suppressedAttributeTypes</h4>
  137. <pre>java.lang.Integer suppressedAttributeTypes</pre>
  138. <div class="block">Defines values of which attribute type are to be replaced by the suppression string in suppressed tuples.</div>
  139. </li>
  140. <li class="blockList">
  141. <h4>suppressionAlwaysEnabled</h4>
  142. <pre>java.lang.Boolean suppressionAlwaysEnabled</pre>
  143. <div class="block">Determines whether suppression is applied to the output of anonymous as well as non-anonymous transformations.</div>
  144. </li>
  145. <li class="blockList">
  146. <h4>utilityBasedMicroaggregation</h4>
  147. <pre>boolean utilityBasedMicroaggregation</pre>
  148. <div class="block">Should microaggregation be based on data utility measurements</div>
  149. </li>
  150. <li class="blockList">
  151. <h4>utilityBasedMicroaggregationUseMeanSquaredError</h4>
  152. <pre>boolean utilityBasedMicroaggregationUseMeanSquaredError</pre>
  153. <div class="block">Should the mean-squared error be used to measure the impact of microaggregation</div>
  154. </li>
  155. <li class="blockList">
  156. <h4>heuristicSearchForSampleBasedCriteria</h4>
  157. <pre>boolean heuristicSearchForSampleBasedCriteria</pre>
  158. <div class="block">Are we performing optimal anonymization for sample-based criteria?</div>
  159. </li>
  160. <li class="blockList">
  161. <h4>heuristicSearchEnabled</h4>
  162. <pre>boolean heuristicSearchEnabled</pre>
  163. <div class="block">Should we use the heuristic search algorithm?</div>
  164. </li>
  165. <li class="blockList">
  166. <h4>heuristicSearchThreshold</h4>
  167. <pre>java.lang.Integer heuristicSearchThreshold</pre>
  168. <div class="block">We will use the heuristic algorithm, if the size of the search space
  169. exceeds this threshold</div>
  170. </li>
  171. <li class="blockList">
  172. <h4>heuristicSearchTimeLimit</h4>
  173. <pre>java.lang.Integer heuristicSearchTimeLimit</pre>
  174. <div class="block">The heuristic algorithm will terminate after the given time limit</div>
  175. </li>
  176. <li class="blockListLast">
  177. <h4>costBenefitConfiguration</h4>
  178. <pre><a href="org/deidentifier/arx/ARXCostBenefitConfiguration.html" title="class in org.deidentifier.arx">ARXCostBenefitConfiguration</a> costBenefitConfiguration</pre>
  179. <div class="block">Cost/benefit configuration</div>
  180. </li>
  181. </ul>
  182. </li>
  183. </ul>
  184. </li>
  185. <li class="blockList"><a name="org.deidentifier.arx.ARXCostBenefitConfiguration">
  186. <!-- -->
  187. </a>
  188. <h3>Class <a href="org/deidentifier/arx/ARXCostBenefitConfiguration.html" title="class in org.deidentifier.arx">org.deidentifier.arx.ARXCostBenefitConfiguration</a> extends java.lang.Object implements Serializable</h3>
  189. <dl class="nameValue">
  190. <dt>serialVersionUID:</dt>
  191. <dd>-560679186676701860L</dd>
  192. </dl>
  193. <ul class="blockList">
  194. <li class="blockList"><a name="serializedForm">
  195. <!-- -->
  196. </a>
  197. <h3>Serialized Fields</h3>
  198. <ul class="blockList">
  199. <li class="blockList">
  200. <h4>publisherBenefit</h4>
  201. <pre>double publisherBenefit</pre>
  202. <div class="block">Basic parameters</div>
  203. </li>
  204. <li class="blockList">
  205. <h4>publisherLoss</h4>
  206. <pre>double publisherLoss</pre>
  207. <div class="block">Basic parameters</div>
  208. </li>
  209. <li class="blockList">
  210. <h4>adversaryGain</h4>
  211. <pre>double adversaryGain</pre>
  212. <div class="block">Basic parameters</div>
  213. </li>
  214. <li class="blockListLast">
  215. <h4>adversaryCost</h4>
  216. <pre>double adversaryCost</pre>
  217. <div class="block">Basic parameters</div>
  218. </li>
  219. </ul>
  220. </li>
  221. </ul>
  222. </li>
  223. <li class="blockList"><a name="org.deidentifier.arx.ARXLattice">
  224. <!-- -->
  225. </a>
  226. <h3>Class <a href="org/deidentifier/arx/ARXLattice.html" title="class in org.deidentifier.arx">org.deidentifier.arx.ARXLattice</a> extends java.lang.Object implements Serializable</h3>
  227. <dl class="nameValue">
  228. <dt>serialVersionUID:</dt>
  229. <dd>-8790104959905019184L</dd>
  230. </dl>
  231. <ul class="blockList">
  232. <li class="blockList"><a name="serialized_methods">
  233. <!-- -->
  234. </a>
  235. <h3>Serialization Methods</h3>
  236. <ul class="blockList">
  237. <li class="blockListLast"><a name="readObject(java.io.ObjectInputStream)">
  238. <!-- -->
  239. </a>
  240. <h4>readObject</h4>
  241. <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;aInputStream)
  242. throws java.lang.ClassNotFoundException,
  243. java.io.IOException</pre>
  244. <div class="block">De-serialization.</div>
  245. <dl><dt><span class="strong">Throws:</span></dt>
  246. <dd><code>java.lang.ClassNotFoundException</code></dd>
  247. <dd><code>java.io.IOException</code></dd></dl>
  248. </li>
  249. </ul>
  250. </li>
  251. <li class="blockList"><a name="serializedForm">
  252. <!-- -->
  253. </a>
  254. <h3>Serialized Fields</h3>
  255. <ul class="blockList">
  256. <li class="blockList">
  257. <h4>access</h4>
  258. <pre><a href="org/deidentifier/arx/ARXLattice.Access.html" title="class in org.deidentifier.arx">ARXLattice.Access</a> access</pre>
  259. <div class="block">The accessor.</div>
  260. </li>
  261. <li class="blockList">
  262. <h4>metric</h4>
  263. <pre><a href="org/deidentifier/arx/metric/Metric.html" title="class in org.deidentifier.arx.metric">Metric</a>&lt;<a href="org/deidentifier/arx/metric/Metric.html" title="type parameter in Metric">T</a> extends <a href="org/deidentifier/arx/metric/InformationLoss.html" title="class in org.deidentifier.arx.metric">InformationLoss</a>&lt;?&gt;&gt; metric</pre>
  264. <div class="block">Metric.</div>
  265. </li>
  266. <li class="blockList">
  267. <h4>size</h4>
  268. <pre>int size</pre>
  269. <div class="block">The number of nodes.</div>
  270. </li>
  271. <li class="blockList">
  272. <h4>virtualSize</h4>
  273. <pre>java.lang.Long virtualSize</pre>
  274. <div class="block">The virtual size</div>
  275. </li>
  276. <li class="blockList">
  277. <h4>uncertainty</h4>
  278. <pre>boolean uncertainty</pre>
  279. <div class="block">Is practical monotonicity being assumed.</div>
  280. </li>
  281. <li class="blockList">
  282. <h4>complete</h4>
  283. <pre>java.lang.Boolean complete</pre>
  284. <div class="block">Is this the result of an optimal algorithm</div>
  285. </li>
  286. <li class="blockList">
  287. <h4>monotonicAnonymous</h4>
  288. <pre>boolean monotonicAnonymous</pre>
  289. <div class="block">Monotonicity of information loss.</div>
  290. </li>
  291. <li class="blockList">
  292. <h4>monotonicNonAnonymous</h4>
  293. <pre>boolean monotonicNonAnonymous</pre>
  294. <div class="block">Monotonicity of information loss.</div>
  295. </li>
  296. <li class="blockList">
  297. <h4>minimumInformationLoss</h4>
  298. <pre><a href="org/deidentifier/arx/metric/InformationLoss.html" title="class in org.deidentifier.arx.metric">InformationLoss</a>&lt;<a href="org/deidentifier/arx/metric/InformationLoss.html" title="type parameter in InformationLoss">T</a>&gt; minimumInformationLoss</pre>
  299. <div class="block">Minimum loss in the lattice.</div>
  300. </li>
  301. <li class="blockListLast">
  302. <h4>maximumInformationLoss</h4>
  303. <pre><a href="org/deidentifier/arx/metric/InformationLoss.html" title="class in org.deidentifier.arx.metric">InformationLoss</a>&lt;<a href="org/deidentifier/arx/metric/InformationLoss.html" title="type parameter in InformationLoss">T</a>&gt; maximumInformationLoss</pre>
  304. <div class="block">Maximum loss in the lattice.</div>
  305. </li>
  306. </ul>
  307. </li>
  308. </ul>
  309. </li>
  310. <li class="blockList"><a name="org.deidentifier.arx.ARXLattice.Access">
  311. <!-- -->
  312. </a>
  313. <h3>Class <a href="org/deidentifier/arx/ARXLattice.Access.html" title="class in org.deidentifier.arx">org.deidentifier.arx.ARXLattice.Access</a> extends java.lang.Object implements Serializable</h3>
  314. <dl class="nameValue">
  315. <dt>serialVersionUID:</dt>
  316. <dd>6654627605797832468L</dd>
  317. </dl>
  318. <ul class="blockList">
  319. <li class="blockList"><a name="serializedForm">
  320. <!-- -->
  321. </a>
  322. <h3>Serialized Fields</h3>
  323. <ul class="blockList">
  324. <li class="blockListLast">
  325. <h4>lattice</h4>
  326. <pre><a href="org/deidentifier/arx/ARXLattice.html" title="class in org.deidentifier.arx">ARXLattice</a> lattice</pre>
  327. <div class="block">Lattice</div>
  328. </li>
  329. </ul>
  330. </li>
  331. </ul>
  332. </li>
  333. <li class="blockList"><a name="org.deidentifier.arx.ARXLogisticRegressionConfiguration">
  334. <!-- -->
  335. </a>
  336. <h3>Class <a href="org/deidentifier/arx/ARXLogisticRegressionConfiguration.html" title="class in org.deidentifier.arx">org.deidentifier.arx.ARXLogisticRegressionConfiguration</a> extends java.lang.Object implements Serializable</h3>
  337. <dl class="nameValue">
  338. <dt>serialVersionUID:</dt>
  339. <dd>-7432423626032273246L</dd>
  340. </dl>
  341. <ul class="blockList">
  342. <li class="blockList"><a name="serializedForm">
  343. <!-- -->
  344. </a>
  345. <h3>Serialized Fields</h3>
  346. <ul class="blockList">
  347. <li class="blockList">
  348. <h4>alpha</h4>
  349. <pre>double alpha</pre>
  350. <div class="block">Configuration</div>
  351. </li>
  352. <li class="blockList">
  353. <h4>decayExponent</h4>
  354. <pre>double decayExponent</pre>
  355. <div class="block">Configuration</div>
  356. </li>
  357. <li class="blockList">
  358. <h4>lambda</h4>
  359. <pre>double lambda</pre>
  360. <div class="block">Configuration</div>
  361. </li>
  362. <li class="blockList">
  363. <h4>learningRate</h4>
  364. <pre>double learningRate</pre>
  365. <div class="block">Configuration</div>
  366. </li>
  367. <li class="blockList">
  368. <h4>stepOffset</h4>
  369. <pre>int stepOffset</pre>
  370. <div class="block">Configuration</div>
  371. </li>
  372. <li class="blockList">
  373. <h4>vectorLength</h4>
  374. <pre>int vectorLength</pre>
  375. <div class="block">Configuration</div>
  376. </li>
  377. <li class="blockList">
  378. <h4>maxRecords</h4>
  379. <pre>int maxRecords</pre>
  380. <div class="block">Max records</div>
  381. </li>
  382. <li class="blockList">
  383. <h4>seed</h4>
  384. <pre>int seed</pre>
  385. <div class="block">Seed</div>
  386. </li>
  387. <li class="blockList">
  388. <h4>numberOfFolds</h4>
  389. <pre>int numberOfFolds</pre>
  390. <div class="block">Folds</div>
  391. </li>
  392. <li class="blockList">
  393. <h4>deterministic</h4>
  394. <pre>boolean deterministic</pre>
  395. <div class="block">Deterministic</div>
  396. </li>
  397. <li class="blockListLast">
  398. <h4>prior</h4>
  399. <pre><a href="org/deidentifier/arx/ARXLogisticRegressionConfiguration.PriorFunction.html" title="enum in org.deidentifier.arx">ARXLogisticRegressionConfiguration.PriorFunction</a> prior</pre>
  400. <div class="block">Configuration</div>
  401. </li>
  402. </ul>
  403. </li>
  404. </ul>
  405. </li>
  406. <li class="blockList"><a name="org.deidentifier.arx.ARXPopulationModel">
  407. <!-- -->
  408. </a>
  409. <h3>Class <a href="org/deidentifier/arx/ARXPopulationModel.html" title="class in org.deidentifier.arx">org.deidentifier.arx.ARXPopulationModel</a> extends java.lang.Object implements Serializable</h3>
  410. <dl class="nameValue">
  411. <dt>serialVersionUID:</dt>
  412. <dd>6331644478717881214L</dd>
  413. </dl>
  414. <ul class="blockList">
  415. <li class="blockList"><a name="serializedForm">
  416. <!-- -->
  417. </a>
  418. <h3>Serialized Fields</h3>
  419. <ul class="blockList">
  420. <li class="blockList">
  421. <h4>region</h4>
  422. <pre><a href="org/deidentifier/arx/ARXPopulationModel.Region.html" title="enum in org.deidentifier.arx">ARXPopulationModel.Region</a> region</pre>
  423. <div class="block">The region</div>
  424. </li>
  425. <li class="blockList">
  426. <h4>sampleFraction</h4>
  427. <pre>double sampleFraction</pre>
  428. <div class="block">TODO: This field is here for backwards compatibility only!</div>
  429. </li>
  430. <li class="blockListLast">
  431. <h4>populationSize</h4>
  432. <pre>java.lang.Long populationSize</pre>
  433. <div class="block">The sample fraction</div>
  434. </li>
  435. </ul>
  436. </li>
  437. </ul>
  438. </li>
  439. <li class="blockList"><a name="org.deidentifier.arx.ARXSolverConfiguration">
  440. <!-- -->
  441. </a>
  442. <h3>Class <a href="org/deidentifier/arx/ARXSolverConfiguration.html" title="class in org.deidentifier.arx">org.deidentifier.arx.ARXSolverConfiguration</a> extends de.linearbits.newtonraphson.NewtonRaphsonConfiguration&lt;<a href="org/deidentifier/arx/ARXSolverConfiguration.html" title="class in org.deidentifier.arx">ARXSolverConfiguration</a>&gt; implements Serializable</h3>
  443. <dl class="nameValue">
  444. <dt>serialVersionUID:</dt>
  445. <dd>-7122709349147064168L</dd>
  446. </dl>
  447. <ul class="blockList">
  448. <li class="blockList"><a name="serializedForm">
  449. <!-- -->
  450. </a>
  451. <h3>Serialized Fields</h3>
  452. <ul class="blockList">
  453. <li class="blockListLast">
  454. <h4>modified</h4>
  455. <pre>boolean modified</pre>
  456. <div class="block">Modified</div>
  457. </li>
  458. </ul>
  459. </li>
  460. </ul>
  461. </li>
  462. <li class="blockList"><a name="org.deidentifier.arx.AttributeType">
  463. <!-- -->
  464. </a>
  465. <h3>Class <a href="org/deidentifier/arx/AttributeType.html" title="class in org.deidentifier.arx">org.deidentifier.arx.AttributeType</a> extends java.lang.Object implements Serializable</h3>
  466. <dl class="nameValue">
  467. <dt>serialVersionUID:</dt>
  468. <dd>-7358540408016873823L</dd>
  469. </dl>
  470. <ul class="blockList">
  471. <li class="blockList"><a name="serializedForm">
  472. <!-- -->
  473. </a>
  474. <h3>Serialized Fields</h3>
  475. <ul class="blockList">
  476. <li class="blockListLast">
  477. <h4>type</h4>
  478. <pre>int type</pre>
  479. <div class="block">The type.</div>
  480. </li>
  481. </ul>
  482. </li>
  483. </ul>
  484. </li>
  485. <li class="blockList"><a name="org.deidentifier.arx.AttributeType.Hierarchy">
  486. <!-- -->
  487. </a>
  488. <h3>Class <a href="org/deidentifier/arx/AttributeType.Hierarchy.html" title="class in org.deidentifier.arx">org.deidentifier.arx.AttributeType.Hierarchy</a> extends <a href="org/deidentifier/arx/AttributeType.html" title="class in org.deidentifier.arx">AttributeType</a> implements Serializable</h3>
  489. <dl class="nameValue">
  490. <dt>serialVersionUID:</dt>
  491. <dd>-4721439386792383385L</dd>
  492. </dl>
  493. </li>
  494. <li class="blockList"><a name="org.deidentifier.arx.AttributeType.Hierarchy.DefaultHierarchy">
  495. <!-- -->
  496. </a>
  497. <h3>Class <a href="org/deidentifier/arx/AttributeType.Hierarchy.DefaultHierarchy.html" title="class in org.deidentifier.arx">org.deidentifier.arx.AttributeType.Hierarchy.DefaultHierarchy</a> extends <a href="org/deidentifier/arx/AttributeType.Hierarchy.html" title="class in org.deidentifier.arx">AttributeType.Hierarchy</a> implements Serializable</h3>
  498. <dl class="nameValue">
  499. <dt>serialVersionUID:</dt>
  500. <dd>7493568420925738049L</dd>
  501. </dl>
  502. <ul class="blockList">
  503. <li class="blockList"><a name="serialized_methods">
  504. <!-- -->
  505. </a>
  506. <h3>Serialization Methods</h3>
  507. <ul class="blockList">
  508. <li class="blockListLast"><a name="readObject(java.io.ObjectInputStream)">
  509. <!-- -->
  510. </a>
  511. <h4>readObject</h4>
  512. <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;ois)
  513. throws java.lang.ClassNotFoundException,
  514. java.io.IOException</pre>
  515. <div class="block">This fixes a bug, where hierarchies which have been loaded from CSV files are trimmed but
  516. hierarchies which are deserialized are not. We fix this by implementing custom deserialization.</div>
  517. <dl><dt><span class="strong">Throws:</span></dt>
  518. <dd><code>java.lang.ClassNotFoundException</code></dd>
  519. <dd><code>java.io.IOException</code></dd></dl>
  520. </li>
  521. </ul>
  522. </li>
  523. <li class="blockList"><a name="serializedForm">
  524. <!-- -->
  525. </a>
  526. <h3>Serialized Fields</h3>
  527. <ul class="blockList">
  528. <li class="blockList">
  529. <h4>hierarchy</h4>
  530. <pre>java.util.List&lt;E&gt; hierarchy</pre>
  531. <div class="block">The raw data.</div>
  532. </li>
  533. <li class="blockListLast">
  534. <h4>array</h4>
  535. <pre>java.lang.String[][] array</pre>
  536. <div class="block">The array.</div>
  537. </li>
  538. </ul>
  539. </li>
  540. </ul>
  541. </li>
  542. <li class="blockList"><a name="org.deidentifier.arx.AttributeType.MicroAggregationFunction">
  543. <!-- -->
  544. </a>
  545. <h3>Class <a href="org/deidentifier/arx/AttributeType.MicroAggregationFunction.html" title="class in org.deidentifier.arx">org.deidentifier.arx.AttributeType.MicroAggregationFunction</a> extends <a href="org/deidentifier/arx/AttributeType.html" title="class in org.deidentifier.arx">AttributeType</a> implements Serializable</h3>
  546. <dl class="nameValue">
  547. <dt>serialVersionUID:</dt>
  548. <dd>-7175337291872533713L</dd>
  549. </dl>
  550. <ul class="blockList">
  551. <li class="blockList"><a name="serializedForm">
  552. <!-- -->
  553. </a>
  554. <h3>Serialized Fields</h3>
  555. <ul class="blockList">
  556. <li class="blockList">
  557. <h4>function</h4>
  558. <pre>org.deidentifier.arx.framework.check.distribution.DistributionAggregateFunction function</pre>
  559. <div class="block">The microaggregation function</div>
  560. </li>
  561. <li class="blockList">
  562. <h4>requiredScale</h4>
  563. <pre><a href="org/deidentifier/arx/DataScale.html" title="enum in org.deidentifier.arx">DataScale</a> requiredScale</pre>
  564. <div class="block">The required scale</div>
  565. </li>
  566. <li class="blockListLast">
  567. <h4>label</h4>
  568. <pre>java.lang.String label</pre>
  569. <div class="block">The label</div>
  570. </li>
  571. </ul>
  572. </li>
  573. </ul>
  574. </li>
  575. <li class="blockList"><a name="org.deidentifier.arx.AttributeType.MicroAggregationFunctionDescription">
  576. <!-- -->
  577. </a>
  578. <h3>Class <a href="org/deidentifier/arx/AttributeType.MicroAggregationFunctionDescription.html" title="class in org.deidentifier.arx">org.deidentifier.arx.AttributeType.MicroAggregationFunctionDescription</a> extends java.lang.Object implements Serializable</h3>
  579. <dl class="nameValue">
  580. <dt>serialVersionUID:</dt>
  581. <dd>-6608355532280843693L</dd>
  582. </dl>
  583. <ul class="blockList">
  584. <li class="blockList"><a name="serializedForm">
  585. <!-- -->
  586. </a>
  587. <h3>Serialized Fields</h3>
  588. <ul class="blockList">
  589. <li class="blockList">
  590. <h4>requiredScale</h4>
  591. <pre><a href="org/deidentifier/arx/DataScale.html" title="enum in org.deidentifier.arx">DataScale</a> requiredScale</pre>
  592. <div class="block">The required scale</div>
  593. </li>
  594. <li class="blockListLast">
  595. <h4>label</h4>
  596. <pre>java.lang.String label</pre>
  597. <div class="block">The label</div>
  598. </li>
  599. </ul>
  600. </li>
  601. </ul>
  602. </li>
  603. <li class="blockList"><a name="org.deidentifier.arx.DataGeneralizationScheme">
  604. <!-- -->
  605. </a>
  606. <h3>Class <a href="org/deidentifier/arx/DataGeneralizationScheme.html" title="class in org.deidentifier.arx">org.deidentifier.arx.DataGeneralizationScheme</a> extends java.lang.Object implements Serializable</h3>
  607. <dl class="nameValue">
  608. <dt>serialVersionUID:</dt>
  609. <dd>-5402090022629905154L</dd>
  610. </dl>
  611. <ul class="blockList">
  612. <li class="blockList"><a name="serializedForm">
  613. <!-- -->
  614. </a>
  615. <h3>Serialized Fields</h3>
  616. <ul class="blockList">
  617. <li class="blockList">
  618. <h4>degrees</h4>
  619. <pre>java.util.Map&lt;K,V&gt; degrees</pre>
  620. <div class="block">Degrees</div>
  621. </li>
  622. <li class="blockList">
  623. <h4>levels</h4>
  624. <pre>java.util.Map&lt;K,V&gt; levels</pre>
  625. <div class="block">Levels</div>
  626. </li>
  627. <li class="blockList">
  628. <h4>degree</h4>
  629. <pre><a href="org/deidentifier/arx/DataGeneralizationScheme.GeneralizationDegree.html" title="enum in org.deidentifier.arx">DataGeneralizationScheme.GeneralizationDegree</a> degree</pre>
  630. <div class="block">Degree</div>
  631. </li>
  632. <li class="blockListLast">
  633. <h4>attributes</h4>
  634. <pre>java.util.Set&lt;E&gt; attributes</pre>
  635. <div class="block">Data</div>
  636. </li>
  637. </ul>
  638. </li>
  639. </ul>
  640. </li>
  641. <li class="blockList"><a name="org.deidentifier.arx.DataSubset">
  642. <!-- -->
  643. </a>
  644. <h3>Class <a href="org/deidentifier/arx/DataSubset.html" title="class in org.deidentifier.arx">org.deidentifier.arx.DataSubset</a> extends java.lang.Object implements Serializable</h3>
  645. <dl class="nameValue">
  646. <dt>serialVersionUID:</dt>
  647. <dd>3945730896172205344L</dd>
  648. </dl>
  649. <ul class="blockList">
  650. <li class="blockList"><a name="serializedForm">
  651. <!-- -->
  652. </a>
  653. <h3>Serialized Fields</h3>
  654. <ul class="blockList">
  655. <li class="blockList">
  656. <h4>set</h4>
  657. <pre><a href="org/deidentifier/arx/RowSet.html" title="class in org.deidentifier.arx">RowSet</a> set</pre>
  658. <div class="block">The subset as a bitset.</div>
  659. </li>
  660. <li class="blockListLast">
  661. <h4>array</h4>
  662. <pre>int[] array</pre>
  663. <div class="block">The subset as a sorted array of indices.</div>
  664. </li>
  665. </ul>
  666. </li>
  667. </ul>
  668. </li>
  669. <li class="blockList"><a name="org.deidentifier.arx.DataType">
  670. <!-- -->
  671. </a>
  672. <h3>Class <a href="org/deidentifier/arx/DataType.html" title="class in org.deidentifier.arx">org.deidentifier.arx.DataType</a> extends java.lang.Object implements Serializable</h3>
  673. <dl class="nameValue">
  674. <dt>serialVersionUID:</dt>
  675. <dd>-4380267779210935078L</dd>
  676. </dl>
  677. </li>
  678. <li class="blockList"><a name="org.deidentifier.arx.DataType.ARXDate">
  679. <!-- -->
  680. </a>
  681. <h3>Class <a href="org/deidentifier/arx/DataType.ARXDate.html" title="class in org.deidentifier.arx">org.deidentifier.arx.DataType.ARXDate</a> extends <a href="org/deidentifier/arx/DataType.html" title="class in org.deidentifier.arx">DataType</a>&lt;java.util.Date&gt; implements Serializable</h3>
  682. <dl class="nameValue">
  683. <dt>serialVersionUID:</dt>
  684. <dd>-1658470914184442833L</dd>
  685. </dl>
  686. <ul class="blockList">
  687. <li class="blockList"><a name="serializedForm">
  688. <!-- -->
  689. </a>
  690. <h3>Serialized Fields</h3>
  691. <ul class="blockList">
  692. <li class="blockList">
  693. <h4>format</h4>
  694. <pre>java.text.SimpleDateFormat format</pre>
  695. <div class="block">Format.</div>
  696. </li>
  697. <li class="blockList">
  698. <h4>string</h4>
  699. <pre>java.lang.String string</pre>
  700. <div class="block">Format string.</div>
  701. </li>
  702. <li class="blockListLast">
  703. <h4>locale</h4>
  704. <pre>java.util.Locale locale</pre>
  705. <div class="block">Locale.</div>
  706. </li>
  707. </ul>
  708. </li>
  709. </ul>
  710. </li>
  711. <li class="blockList"><a name="org.deidentifier.arx.DataType.ARXDecimal">
  712. <!-- -->
  713. </a>
  714. <h3>Class <a href="org/deidentifier/arx/DataType.ARXDecimal.html" title="class in org.deidentifier.arx">org.deidentifier.arx.DataType.ARXDecimal</a> extends <a href="org/deidentifier/arx/DataType.html" title="class in org.deidentifier.arx">DataType</a>&lt;java.lang.Double&gt; implements Serializable</h3>
  715. <dl class="nameValue">
  716. <dt>serialVersionUID:</dt>
  717. <dd>7293446977526103610L</dd>
  718. </dl>
  719. <ul class="blockList">
  720. <li class="blockList"><a name="serializedForm">
  721. <!-- -->
  722. </a>
  723. <h3>Serialized Fields</h3>
  724. <ul class="blockList">
  725. <li class="blockList">
  726. <h4>format</h4>
  727. <pre>java.text.DecimalFormat format</pre>
  728. <div class="block">Format.</div>
  729. </li>
  730. <li class="blockList">
  731. <h4>string</h4>
  732. <pre>java.lang.String string</pre>
  733. <div class="block">Format string.</div>
  734. </li>
  735. <li class="blockListLast">
  736. <h4>locale</h4>
  737. <pre>java.util.Locale locale</pre>
  738. <div class="block">Locale.</div>
  739. </li>
  740. </ul>
  741. </li>
  742. </ul>
  743. </li>
  744. <li class="blockList"><a name="org.deidentifier.arx.DataType.ARXInteger">
  745. <!-- -->
  746. </a>
  747. <h3>Class <a href="org/deidentifier/arx/DataType.ARXInteger.html" title="class in org.deidentifier.arx">org.deidentifier.arx.DataType.ARXInteger</a> extends <a href="org/deidentifier/arx/DataType.html" title="class in org.deidentifier.arx">DataType</a>&lt;java.lang.Long&gt; implements Serializable</h3>
  748. <dl class="nameValue">
  749. <dt>serialVersionUID:</dt>
  750. <dd>-631163546929231044L</dd>
  751. </dl>
  752. <ul class="blockList">
  753. <li class="blockList"><a name="serializedForm">
  754. <!-- -->
  755. </a>
  756. <h3>Serialized Fields</h3>
  757. <ul class="blockList">
  758. <li class="blockList">
  759. <h4>format</h4>
  760. <pre>java.text.DecimalFormat format</pre>
  761. <div class="block">Format.</div>
  762. </li>
  763. <li class="blockList">
  764. <h4>string</h4>
  765. <pre>java.lang.String string</pre>
  766. <div class="block">Format string.</div>
  767. </li>
  768. <li class="blockListLast">
  769. <h4>locale</h4>
  770. <pre>java.util.Locale locale</pre>
  771. <div class="block">Locale.</div>
  772. </li>
  773. </ul>
  774. </li>
  775. </ul>
  776. </li>
  777. <li class="blockList"><a name="org.deidentifier.arx.DataType.ARXOrderedString">
  778. <!-- -->
  779. </a>
  780. <h3>Class <a href="org/deidentifier/arx/DataType.ARXOrderedString.html" title="class in org.deidentifier.arx">org.deidentifier.arx.DataType.ARXOrderedString</a> extends <a href="org/deidentifier/arx/DataType.html" title="class in org.deidentifier.arx">DataType</a>&lt;java.lang.String&gt; implements Serializable</h3>
  781. <dl class="nameValue">
  782. <dt>serialVersionUID:</dt>
  783. <dd>-830897705078418835L</dd>
  784. </dl>
  785. <ul class="blockList">
  786. <li class="blockList"><a name="serializedForm">
  787. <!-- -->
  788. </a>
  789. <h3>Serialized Fields</h3>
  790. <ul class="blockList">
  791. <li class="blockListLast">
  792. <h4>order</h4>
  793. <pre>java.util.Map&lt;K,V&gt; order</pre>
  794. <div class="block">The defined order</div>
  795. </li>
  796. </ul>
  797. </li>
  798. </ul>
  799. </li>
  800. <li class="blockList"><a name="org.deidentifier.arx.DataType.ARXString">
  801. <!-- -->
  802. </a>
  803. <h3>Class <a href="org/deidentifier/arx/DataType.ARXString.html" title="class in org.deidentifier.arx">org.deidentifier.arx.DataType.ARXString</a> extends <a href="org/deidentifier/arx/DataType.html" title="class in org.deidentifier.arx">DataType</a>&lt;java.lang.String&gt; implements Serializable</h3>
  804. <dl class="nameValue">
  805. <dt>serialVersionUID:</dt>
  806. <dd>903334212175979691L</dd>
  807. </dl>
  808. </li>
  809. <li class="blockList"><a name="org.deidentifier.arx.DataType.DataTypeDescription">
  810. <!-- -->
  811. </a>
  812. <h3>Class <a href="org/deidentifier/arx/DataType.DataTypeDescription.html" title="class in org.deidentifier.arx">org.deidentifier.arx.DataType.DataTypeDescription</a> extends java.lang.Object implements Serializable</h3>
  813. <dl class="nameValue">
  814. <dt>serialVersionUID:</dt>
  815. <dd>6369986224526795419L</dd>
  816. </dl>
  817. <ul class="blockList">
  818. <li class="blockList"><a name="serializedForm">
  819. <!-- -->
  820. </a>
  821. <h3>Serialized Fields</h3>
  822. <ul class="blockList">
  823. <li class="blockList">
  824. <h4>clazz</h4>
  825. <pre>java.lang.Class&lt;T&gt; clazz</pre>
  826. <div class="block">The wrapped java class.</div>
  827. </li>
  828. <li class="blockList">
  829. <h4>exampleFormats</h4>
  830. <pre>java.util.List&lt;E&gt; exampleFormats</pre>
  831. <div class="block">If yes, a list of available formats.</div>
  832. </li>
  833. <li class="blockList">
  834. <h4>hasFormat</h4>
  835. <pre>boolean hasFormat</pre>
  836. <div class="block">Can the type be parameterized with a format string.</div>
  837. </li>
  838. <li class="blockList">
  839. <h4>label</h4>
  840. <pre>java.lang.String label</pre>
  841. <div class="block">A human readable label.</div>
  842. </li>
  843. <li class="blockListLast">
  844. <h4>scale</h4>
  845. <pre><a href="org/deidentifier/arx/DataScale.html" title="enum in org.deidentifier.arx">DataScale</a> scale</pre>
  846. <div class="block">The associated scale of measure</div>
  847. </li>
  848. </ul>
  849. </li>
  850. </ul>
  851. </li>
  852. <li class="blockList"><a name="org.deidentifier.arx.RowSet">
  853. <!-- -->
  854. </a>
  855. <h3>Class <a href="org/deidentifier/arx/RowSet.html" title="class in org.deidentifier.arx">org.deidentifier.arx.RowSet</a> extends java.lang.Object implements Serializable</h3>
  856. <dl class="nameValue">
  857. <dt>serialVersionUID:</dt>
  858. <dd>1492499772279795327L</dd>
  859. </dl>
  860. <ul class="blockList">
  861. <li class="blockList"><a name="serializedForm">
  862. <!-- -->
  863. </a>
  864. <h3>Serialized Fields</h3>
  865. <ul class="blockList">
  866. <li class="blockList">
  867. <h4>array</h4>
  868. <pre>long[] array</pre>
  869. <div class="block">Array</div>
  870. </li>
  871. <li class="blockList">
  872. <h4>length</h4>
  873. <pre>int length</pre>
  874. <div class="block">Length of array</div>
  875. </li>
  876. <li class="blockListLast">
  877. <h4>size</h4>
  878. <pre>int size</pre>
  879. <div class="block">Number of bits set</div>
  880. </li>
  881. </ul>
  882. </li>
  883. </ul>
  884. </li>
  885. </ul>
  886. </li>
  887. <li class="blockList">
  888. <h2 title="Package">Package&nbsp;org.deidentifier.arx.aggregates</h2>
  889. <ul class="blockList">
  890. <li class="blockList"><a name="org.deidentifier.arx.aggregates.AggregateFunction">
  891. <!-- -->
  892. </a>
  893. <h3>Class <a href="org/deidentifier/arx/aggregates/AggregateFunction.html" title="class in org.deidentifier.arx.aggregates">org.deidentifier.arx.aggregates.AggregateFunction</a> extends java.lang.Object implements Serializable</h3>
  894. <dl class="nameValue">
  895. <dt>serialVersionUID:</dt>
  896. <dd>3803318906010996154L</dd>
  897. </dl>
  898. <ul class="blockList">
  899. <li class="blockList"><a name="serializedForm">
  900. <!-- -->
  901. </a>
  902. <h3>Serialized Fields</h3>
  903. <ul class="blockList">
  904. <li class="blockListLast">
  905. <h4>type</h4>
  906. <pre><a href="org/deidentifier/arx/DataType.html" title="class in org.deidentifier.arx">DataType</a>&lt;<a href="org/deidentifier/arx/DataType.html" title="type parameter in DataType">T</a>&gt; type</pre>
  907. <div class="block">The data type.</div>
  908. </li>
  909. </ul>
  910. </li>
  911. </ul>
  912. </li>
  913. <li class="blockList"><a name="org.deidentifier.arx.aggregates.AggregateFunction.AggregateFunctionWithParameter">
  914. <!-- -->
  915. </a>
  916. <h3>Class <a href="org/deidentifier/arx/aggregates/AggregateFunction.AggregateFunctionWithParameter.html" title="class in org.deidentifier.arx.aggregates">org.deidentifier.arx.aggregates.AggregateFunction.AggregateFunctionWithParameter</a> extends <a href="org/deidentifier/arx/aggregates/AggregateFunction.html" title="class in org.deidentifier.arx.aggregates">AggregateFunction</a>&lt;<a href="org/deidentifier/arx/aggregates/AggregateFunction.AggregateFunctionWithParameter.html" title="type parameter in AggregateFunction.AggregateFunctionWithParameter">T</a>&gt; implements Serializable</h3>
  917. <dl class="nameValue">
  918. <dt>serialVersionUID:</dt>
  919. <dd>1L</dd>
  920. </dl>
  921. </li>
  922. <li class="blockList"><a name="org.deidentifier.arx.aggregates.AggregateFunction.GenericArithmeticMean">
  923. <!-- -->
  924. </a>
  925. <h3>Class <a href="org/deidentifier/arx/aggregates/AggregateFunction.GenericArithmeticMean.html" title="class in org.deidentifier.arx.aggregates">org.deidentifier.arx.aggregates.AggregateFunction.GenericArithmeticMean</a> extends <a href="org/deidentifier/arx/aggregates/AggregateFunction.html" title="class in org.deidentifier.arx.aggregates">AggregateFunction</a>&lt;<a href="org/deidentifier/arx/aggregates/AggregateFunction.GenericArithmeticMean.html" title="type parameter in AggregateFunction.GenericArithmeticMean">T</a>&gt; implements Serializable</h3>
  926. <dl class="nameValue">
  927. <dt>serialVersionUID:</dt>
  928. <dd>-901667129625212217L</dd>
  929. </dl>
  930. </li>
  931. <li class="blockList"><a name="org.deidentifier.arx.aggregates.AggregateFunction.GenericArithmeticMeanOfBounds">
  932. <!-- -->
  933. </a>
  934. <h3>Class <a href="org/deidentifier/arx/aggregates/AggregateFunction.GenericArithmeticMeanOfBounds.html" title="class in org.deidentifier.arx.aggregates">org.deidentifier.arx.aggregates.AggregateFunction.GenericArithmeticMeanOfBounds</a> extends <a href="org/deidentifier/arx/aggregates/AggregateFunction.html" title="class in org.deidentifier.arx.aggregates">AggregateFunction</a>&lt;<a href="org/deidentifier/arx/aggregates/AggregateFunction.GenericArithmeticMeanOfBounds.html" title="type parameter in AggregateFunction.GenericArithmeticMeanOfBounds">T</a>&gt; implements Serializable</h3>
  935. <dl class="nameValue">
  936. <dt>serialVersionUID:</dt>
  937. <dd>5067728720270473715L</dd>
  938. </dl>
  939. </li>
  940. <li class="blockList"><a name="org.deidentifier.arx.aggregates.AggregateFunction.GenericBounds">
  941. <!-- -->
  942. </a>
  943. <h3>Class <a href="org/deidentifier/arx/aggregates/AggregateFunction.GenericBounds.html" title="class in org.deidentifier.arx.aggregates">org.deidentifier.arx.aggregates.AggregateFunction.GenericBounds</a> extends <a href="org/deidentifier/arx/aggregates/AggregateFunction.html" title="class in org.deidentifier.arx.aggregates">AggregateFunction</a>&lt;<a href="org/deidentifier/arx/aggregates/AggregateFunction.GenericBounds.html" title="type parameter in AggregateFunction.GenericBounds">T</a>&gt; implements Serializable</h3>
  944. <dl class="nameValue">
  945. <dt>serialVersionUID:</dt>
  946. <dd>-8884657842545379206L</dd>
  947. </dl>
  948. </li>
  949. <li class="blockList"><a name="org.deidentifier.arx.aggregates.AggregateFunction.GenericCommonPrefix">
  950. <!-- -->
  951. </a>
  952. <h3>Class <a href="org/deidentifier/arx/aggregates/AggregateFunction.GenericCommonPrefix.html" title="class in org.deidentifier.arx.aggregates">org.deidentifier.arx.aggregates.AggregateFunction.GenericCommonPrefix</a> extends <a href="org/deidentifier/arx/aggregates/AggregateFunction.AggregateFunctionWithParameter.html" title="class in org.deidentifier.arx.aggregates">AggregateFunction.AggregateFunctionWithParameter</a>&lt;<a href="org/deidentifier/arx/aggregates/AggregateFunction.GenericCommonPrefix.html" title="type parameter in AggregateFunction.GenericCommonPrefix">T</a>&gt; implements Serializable</h3>
  953. <dl class="nameValue">
  954. <dt>serialVersionUID:</dt>
  955. <dd>526809670467390820L</dd>
  956. </dl>
  957. <ul class="blockList">
  958. <li class="blockList"><a name="serializedForm">
  959. <!-- -->
  960. </a>
  961. <h3>Serialized Fields</h3>
  962. <ul class="blockList">
  963. <li class="blockListLast">
  964. <h4>redaction</h4>
  965. <pre>java.lang.Character redaction</pre>
  966. <div class="block">SVUID</div>
  967. </li>
  968. </ul>
  969. </li>
  970. </ul>
  971. </li>
  972. <li class="blockList"><a name="org.deidentifier.arx.aggregates.AggregateFunction.GenericConstant">
  973. <!-- -->
  974. </a>
  975. <h3>Class <a href="org/deidentifier/arx/aggregates/AggregateFunction.GenericConstant.html" title="class in org.deidentifier.arx.aggregates">org.deidentifier.arx.aggregates.AggregateFunction.GenericConstant</a> extends <a href="org/deidentifier/arx/aggregates/AggregateFunction.AggregateFunctionWithParameter.html" title="class in org.deidentifier.arx.aggregates">AggregateFunction.AggregateFunctionWithParameter</a>&lt;<a href="org/deidentifier/arx/aggregates/AggregateFunction.GenericConstant.html" title="type parameter in AggregateFunction.GenericConstant">T</a>&gt; implements Serializable</h3>
  976. <dl class="nameValue">
  977. <dt>serialVersionUID:</dt>
  978. <dd>-8995068916108125096L</dd>
  979. </dl>
  980. <ul class="blockList">
  981. <li class="blockList"><a name="serializedForm">
  982. <!-- -->
  983. </a>
  984. <h3>Serialized Fields</h3>
  985. <ul class="blockList">
  986. <li class="blockListLast">
  987. <h4>value</h4>
  988. <pre>java.lang.String value</pre>
  989. <div class="block">SVUID</div>
  990. </li>
  991. </ul>
  992. </li>
  993. </ul>
  994. </li>
  995. <li class="blockList"><a name="org.deidentifier.arx.aggregates.AggregateFunction.GenericGeometricMean">
  996. <!-- -->
  997. </a>
  998. <h3>Class <a href="org/deidentifier/arx/aggregates/AggregateFunction.GenericGeometricMean.html" title="class in org.deidentifier.arx.aggregates">org.deidentifier.arx.aggregates.AggregateFunction.GenericGeometricMean</a> extends <a href="org/deidentifier/arx/aggregates/AggregateFunction.html" title="class in org.deidentifier.arx.aggregates">AggregateFunction</a>&lt;<a href="org/deidentifier/arx/aggregates/AggregateFunction.GenericGeometricMean.html" title="type parameter in AggregateFunction.GenericGeometricMean">T</a>&gt; implements Serializable</h3>
  999. <dl class="nameValue">
  1000. <dt>serialVersionUID:</dt>
  1001. <dd>-1756610766270481335L</dd>
  1002. </dl>
  1003. </li>
  1004. <li class="blockList"><a name="org.deidentifier.arx.aggregates.AggregateFunction.GenericGeometricMeanOfBounds">
  1005. <!-- -->
  1006. </a>
  1007. <h3>Class <a href="org/deidentifier/arx/aggregates/AggregateFunction.GenericGeometricMeanOfBounds.html" title="class in org.deidentifier.arx.aggregates">org.deidentifier.arx.aggregates.AggregateFunction.GenericGeometricMeanOfBounds</a> extends <a href="org/deidentifier/arx/aggregates/AggregateFunction.html" title="class in org.deidentifier.arx.aggregates">AggregateFunction</a>&lt;<a href="org/deidentifier/arx/aggregates/AggregateFunction.GenericGeometricMeanOfBounds.html" title="type parameter in AggregateFunction.GenericGeometricMeanOfBounds">T</a>&gt; implements Serializable</h3>
  1008. <dl class="nameValue">
  1009. <dt>serialVersionUID:</dt>
  1010. <dd>8155390779775522723L</dd>
  1011. </dl>
  1012. </li>
  1013. <li class="blockList"><a name="org.deidentifier.arx.aggregates.AggregateFunction.GenericInterval">
  1014. <!-- -->
  1015. </a>
  1016. <h3>Class <a href="org/deidentifier/arx/aggregates/AggregateFunction.GenericInterval.html" title="class in org.deidentifier.arx.aggregates">org.deidentifier.arx.aggregates.AggregateFunction.GenericInterval</a> extends <a href="org/deidentifier/arx/aggregates/AggregateFunction.html" title="class in org.deidentifier.arx.aggregates">AggregateFunction</a>&lt;<a href="org/deidentifier/arx/aggregates/AggregateFunction.GenericInterval.html" title="type parameter in AggregateFunction.GenericInterval">T</a>&gt; implements Serializable</h3>
  1017. <dl class="nameValue">
  1018. <dt>serialVersionUID:</dt>
  1019. <dd>-5182521036467379023L</dd>
  1020. </dl>
  1021. <ul class="blockList">
  1022. <li class="blockList"><a name="serializedForm">
  1023. <!-- -->
  1024. </a>
  1025. <h3>Serialized Fields</h3>
  1026. <ul class="blockList">
  1027. <li class="blockList">
  1028. <h4>lowerIncluded</h4>
  1029. <pre>boolean lowerIncluded</pre>
  1030. <div class="block">SVUID</div>
  1031. </li>
  1032. <li class="blockListLast">
  1033. <h4>upperIncluded</h4>
  1034. <pre>boolean upperIncluded</pre>
  1035. <div class="block">SVUID</div>
  1036. </li>
  1037. </ul>
  1038. </li>
  1039. </ul>
  1040. </li>
  1041. <li class="blockList"><a name="org.deidentifier.arx.aggregates.AggregateFunction.GenericSet">
  1042. <!-- -->
  1043. </a>
  1044. <h3>Class <a href="org/deidentifier/arx/aggregates/AggregateFunction.GenericSet.html" title="class in org.deidentifier.arx.aggregates">org.deidentifier.arx.aggregates.AggregateFunction.GenericSet</a> extends <a href="org/deidentifier/arx/aggregates/AggregateFunction.html" title="class in org.deidentifier.arx.aggregates">AggregateFunction</a>&lt;<a href="org/deidentifier/arx/aggregates/AggregateFunction.GenericSet.html" title="type parameter in AggregateFunction.GenericSet">T</a>&gt; implements Serializable</h3>
  1045. <dl class="nameValue">
  1046. <dt>serialVersionUID:</dt>
  1047. <dd>-4029191421720743653L</dd>
  1048. </dl>
  1049. </li>
  1050. <li class="blockList"><a name="org.deidentifier.arx.aggregates.AggregateFunction.GenericSetOfPrefixes">
  1051. <!-- -->
  1052. </a>
  1053. <h3>Class <a href="org/deidentifier/arx/aggregates/AggregateFunction.GenericSetOfPrefixes.html" title="class in org.deidentifier.arx.aggregates">org.deidentifier.arx.aggregates.AggregateFunction.GenericSetOfPrefixes</a> extends <a href="org/deidentifier/arx/aggregates/AggregateFunction.AggregateFunctionWithParameter.html" title="class in org.deidentifier.arx.aggregates">AggregateFunction.AggregateFunctionWithParameter</a>&lt;<a href="org/deidentifier/arx/aggregates/AggregateFunction.GenericSetOfPrefixes.html" title="type parameter in AggregateFunction.GenericSetOfPrefixes">T</a>&gt; implements Serializable</h3>
  1054. <dl class="nameValue">
  1055. <dt>serialVersionUID:</dt>
  1056. <dd>-4164142474804296433L</dd>
  1057. </dl>
  1058. <ul class="blockList">
  1059. <li class="blockList"><a name="serializedForm">
  1060. <!-- -->
  1061. </a>
  1062. <h3>Serialized Fields</h3>
  1063. <ul class="blockList">
  1064. <li class="blockListLast">
  1065. <h4>length</h4>
  1066. <pre>int length</pre>
  1067. <div class="block">SVUID</div>
  1068. </li>
  1069. </ul>
  1070. </li>
  1071. </ul>
  1072. </li>
  1073. <li class="blockList"><a name="org.deidentifier.arx.aggregates.HierarchyBuilder">
  1074. <!-- -->
  1075. </a>
  1076. <h3>Class <a href="org/deidentifier/arx/aggregates/HierarchyBuilder.html" title="class in org.deidentifier.arx.aggregates">org.deidentifier.arx.aggregates.HierarchyBuilder</a> extends java.lang.Object implements Serializable</h3>
  1077. <dl class="nameValue">
  1078. <dt>serialVersionUID:</dt>
  1079. <dd>-4182364711973630816L</dd>
  1080. </dl>
  1081. <ul class="blockList">
  1082. <li class="blockList"><a name="serializedForm">
  1083. <!-- -->
  1084. </a>
  1085. <h3>Serialized Fields</h3>
  1086. <ul class="blockList">
  1087. <li class="blockListLast">
  1088. <h4>type</h4>
  1089. <pre><a href="org/deidentifier/arx/aggregates/HierarchyBuilder.Type.html" title="enum in org.deidentifier.arx.aggregates">HierarchyBuilder.Type</a> type</pre>
  1090. <div class="block">The type.</div>
  1091. </li>
  1092. </ul>
  1093. </li>
  1094. </ul>
  1095. </li>
  1096. <li class="blockList"><a name="org.deidentifier.arx.aggregates.HierarchyBuilderGroupingBased">
  1097. <!-- -->
  1098. </a>
  1099. <h3>Class <a href="org/deidentifier/arx/aggregates/HierarchyBuilderGroupingBased.html" title="class in org.deidentifier.arx.aggregates">org.deidentifier.arx.aggregates.HierarchyBuilderGroupingBased</a> extends <a href="org/deidentifier/arx/aggregates/HierarchyBuilder.html" title="class in org.deidentifier.arx.aggregates">HierarchyBuilder</a>&lt;<a href="org/deidentifier/arx/aggregates/HierarchyBuilderGroupingBased.html" title="type parameter in HierarchyBuilderGroupingBased">T</a>&gt; implements Serializable</h3>
  1100. <dl class="nameValue">
  1101. <dt>serialVersionUID:</dt>
  1102. <dd>3208791665131141362L</dd>
  1103. </dl>
  1104. <ul class="blockList">
  1105. <li class="blockList"><a name="serializedForm">
  1106. <!-- -->
  1107. </a>
  1108. <h3>Serialized Fields</h3>
  1109. <ul class="blockList">
  1110. <li class="blockList">
  1111. <h4>groups</h4>
  1112. <pre>java.util.Map&lt;K,V&gt; groups</pre>
  1113. <div class="block">All fanouts for each level.</div>
  1114. </li>
  1115. <li class="blockList">
  1116. <h4>datatype</h4>
  1117. <pre><a href="org/deidentifier/arx/DataType.html" title="class in org.deidentifier.arx">DataType</a>&lt;<a href="org/deidentifier/arx/DataType.html" title="type parameter in DataType">T</a>&gt; datatype</pre>
  1118. <div class="block">The data type.</div>
  1119. </li>
  1120. <li class="blockListLast">
  1121. <h4>function</h4>
  1122. <pre><a href="org/deidentifier/arx/aggregates/AggregateFunction.html" title="class in org.deidentifier.arx.aggregates">AggregateFunction</a>&lt;<a href="org/deidentifier/arx/aggregates/AggregateFunction.html" title="type parameter in AggregateFunction">T</a>&gt; function</pre>
  1123. <div class="block">The default aggregate function, might be null.</div>
  1124. </li>
  1125. </ul>
  1126. </li>
  1127. </ul>
  1128. </li>
  1129. <li class="blockList"><a name="org.deidentifier.arx.aggregates.HierarchyBuilderGroupingBased.AbstractGroup">
  1130. <!-- -->
  1131. </a>
  1132. <h3>Class org.deidentifier.arx.aggregates.HierarchyBuilderGroupingBased.AbstractGroup extends java.lang.Object implements Serializable</h3>
  1133. <dl class="nameValue">
  1134. <dt>serialVersionUID:</dt>
  1135. <dd>-7657969446040078411L</dd>
  1136. </dl>
  1137. <ul class="blockList">
  1138. <li class="blockList"><a name="serializedForm">
  1139. <!-- -->
  1140. </a>
  1141. <h3>Serialized Fields</h3>
  1142. <ul class="blockList">
  1143. <li class="blockListLast">
  1144. <h4>label</h4>
  1145. <pre>java.lang.String label</pre>
  1146. <div class="block">TODO</div>
  1147. </li>
  1148. </ul>
  1149. </li>
  1150. </ul>
  1151. </li>
  1152. <li class="blockList"><a name="org.deidentifier.arx.aggregates.HierarchyBuilderGroupingBased.Group">
  1153. <!-- -->
  1154. </a>
  1155. <h3>Class <a href="org/deidentifier/arx/aggregates/HierarchyBuilderGroupingBased.Group.html" title="class in org.deidentifier.arx.aggregates">org.deidentifier.arx.aggregates.HierarchyBuilderGroupingBased.Group</a> extends java.lang.Object implements Serializable</h3>
  1156. <dl class="nameValue">
  1157. <dt>serialVersionUID:</dt>
  1158. <dd>-5767501048737045793L</dd>
  1159. </dl>
  1160. <ul class="blockList">
  1161. <li class="blockList"><a name="serializedForm">
  1162. <!-- -->
  1163. </a>
  1164. <h3>Serialized Fields</h3>
  1165. <ul class="blockList">
  1166. <li class="blockList">
  1167. <h4>size</h4>
  1168. <pre>int size</pre>
  1169. <div class="block">Fanout.</div>
  1170. </li>
  1171. <li class="blockListLast">
  1172. <h4>function</h4>
  1173. <pre><a href="org/deidentifier/arx/aggregates/AggregateFunction.html" title="class in org.deidentifier.arx.aggregates">AggregateFunction</a>&lt;<a href="org/deidentifier/arx/aggregates/AggregateFunction.html" title="type parameter in AggregateFunction">T</a>&gt; function</pre>
  1174. <div class="block">Aggregate function.</div>
  1175. </li>
  1176. </ul>
  1177. </li>
  1178. </ul>
  1179. </li>
  1180. <li class="blockList"><a name="org.deidentifier.arx.aggregates.HierarchyBuilderGroupingBased.Level">
  1181. <!-- -->
  1182. </a>
  1183. <h3>Class <a href="org/deidentifier/arx/aggregates/HierarchyBuilderGroupingBased.Level.html" title="class in org.deidentifier.arx.aggregates">org.deidentifier.arx.aggregates.HierarchyBuilderGroupingBased.Level</a> extends java.lang.Object implements Serializable</h3>
  1184. <dl class="nameValue">
  1185. <dt>serialVersionUID:</dt>
  1186. <dd>1410005675926162598L</dd>
  1187. </dl>
  1188. <ul class="blockList">
  1189. <li class="blockList"><a name="serializedForm">
  1190. <!-- -->
  1191. </a>
  1192. <h3>Serialized Fields</h3>
  1193. <ul class="blockList">
  1194. <li class="blockList">
  1195. <h4>level</h4>
  1196. <pre>int level</pre>
  1197. <div class="block">Level.</div>
  1198. </li>
  1199. <li class="blockList">
  1200. <h4>list</h4>
  1201. <pre>java.util.List&lt;E&gt; list</pre>
  1202. <div class="block">List of groups.</div>
  1203. </li>
  1204. <li class="blockListLast">
  1205. <h4>builder</h4>
  1206. <pre><a href="org/deidentifier/arx/aggregates/HierarchyBuilderGroupingBased.html" title="class in org.deidentifier.arx.aggregates">HierarchyBuilderGroupingBased</a>&lt;<a href="org/deidentifier/arx/aggregates/HierarchyBuilderGroupingBased.html" title="type parameter in HierarchyBuilderGroupingBased">T</a>&gt; builder</pre>
  1207. <div class="block">Builder.</div>
  1208. </li>
  1209. </ul>
  1210. </li>
  1211. </ul>
  1212. </li>
  1213. <li class="blockList"><a name="org.deidentifier.arx.aggregates.HierarchyBuilderIntervalBased">
  1214. <!-- -->
  1215. </a>
  1216. <h3>Class <a href="org/deidentifier/arx/aggregates/HierarchyBuilderIntervalBased.html" title="class in org.deidentifier.arx.aggregates">org.deidentifier.arx.aggregates.HierarchyBuilderIntervalBased</a> extends <a href="org/deidentifier/arx/aggregates/HierarchyBuilderGroupingBased.html" title="class in org.deidentifier.arx.aggregates">HierarchyBuilderGroupingBased</a>&lt;<a href="org/deidentifier/arx/aggregates/HierarchyBuilderIntervalBased.html" title="type parameter in HierarchyBuilderIntervalBased">T</a>&gt; implements Serializable</h3>
  1217. <dl class="nameValue">
  1218. <dt>serialVersionUID:</dt>
  1219. <dd>3663874945543082808L</dd>
  1220. </dl>
  1221. <ul class="blockList">
  1222. <li class="blockList"><a name="serializedForm">
  1223. <!-- -->
  1224. </a>
  1225. <h3>Serialized Fields</h3>
  1226. <ul class="blockList">
  1227. <li class="blockList">
  1228. <h4>lowerRange</h4>
  1229. <pre><a href="org/deidentifier/arx/aggregates/HierarchyBuilderIntervalBased.Range.html" title="class in org.deidentifier.arx.aggregates">HierarchyBuilderIntervalBased.Range</a>&lt;<a href="org/deidentifier/arx/aggregates/HierarchyBuilderIntervalBased.Range.html" title="type parameter in HierarchyBuilderIntervalBased.Range">U</a>&gt; lowerRange</pre>
  1230. <div class="block">Adjustment.</div>
  1231. </li>
  1232. <li class="blockList">
  1233. <h4>upperRange</h4>
  1234. <pre><a href="org/deidentifier/arx/aggregates/HierarchyBuilderIntervalBased.Range.html" title="class in org.deidentifier.arx.aggregates">HierarchyBuilderIntervalBased.Range</a>&lt;<a href="org/deidentifier/arx/aggregates/HierarchyBuilderIntervalBased.Range.html" title="type parameter in HierarchyBuilderIntervalBased.Range">U</a>&gt; upperRange</pre>
  1235. <div class="block">Adjustment.</div>
  1236. </li>
  1237. <li class="blockListLast">
  1238. <h4>intervals</h4>
  1239. <pre>java.util.List&lt;E&gt; intervals</pre>
  1240. <div class="block">Defined intervals.</div>
  1241. </li>
  1242. </ul>
  1243. </li>
  1244. </ul>
  1245. </li>
  1246. <li class="blockList"><a name="org.deidentifier.arx.aggregates.HierarchyBuilderIntervalBased.IndexNode">
  1247. <!-- -->
  1248. </a>
  1249. <h3>Class <a href="org/deidentifier/arx/aggregates/HierarchyBuilderIntervalBased.IndexNode.html" title="class in org.deidentifier.arx.aggregates">org.deidentifier.arx.aggregates.HierarchyBuilderIntervalBased.IndexNode</a> extends java.lang.Object implements Serializable</h3>
  1250. <dl class="nameValue">
  1251. <dt>serialVersionUID:</dt>
  1252. <dd>5985820929677249525L</dd>
  1253. </dl>
  1254. <ul class="blockList">
  1255. <li class="blockList"><a name="serializedForm">
  1256. <!-- -->
  1257. </a>
  1258. <h3>Serialized Fields</h3>
  1259. <ul class="blockList">
  1260. <li class="blockList">
  1261. <h4>children</h4>
  1262. <pre><a href="org/deidentifier/arx/aggregates/HierarchyBuilderIntervalBased.IndexNode.html" title="class in org.deidentifier.arx.aggregates">HierarchyBuilderIntervalBased.IndexNode</a>[] children</pre>
  1263. <div class="block">Children.</div>
  1264. </li>
  1265. <li class="blockList">
  1266. <h4>isLeaf</h4>
  1267. <pre>boolean isLeaf</pre>
  1268. <div class="block">IsLeaf.</div>
  1269. </li>
  1270. <li class="blockList">
  1271. <h4>leafs</h4>
  1272. <pre><a href="org/deidentifier/arx/aggregates/HierarchyBuilderIntervalBased.Interval.html" title="class in org.deidentifier.arx.aggregates">HierarchyBuilderIntervalBased.Interval</a>&lt;<a href="org/deidentifier/arx/aggregates/HierarchyBuilderIntervalBased.Interval.html" title="type parameter in HierarchyBuilderIntervalBased.Interval">T</a>&gt;[] leafs</pre>
  1273. <div class="block">Leafs.</div>
  1274. </li>
  1275. <li class="blockList">
  1276. <h4>max</h4>
  1277. <pre>java.lang.Object max</pre>
  1278. <div class="block">Max is exclusive.</div>
  1279. </li>
  1280. <li class="blockListLast">
  1281. <h4>min</h4>
  1282. <pre>java.lang.Object min</pre>
  1283. <div class="block">Min is inclusive.</div>
  1284. </li>
  1285. </ul>
  1286. </li>
  1287. </ul>
  1288. </li>
  1289. <li class="blockList"><a name="org.deidentifier.arx.aggregates.HierarchyBuilderIntervalBased.Interval">
  1290. <!-- -->
  1291. </a>
  1292. <h3>Class <a href="org/deidentifier/arx/aggregates/HierarchyBuilderIntervalBased.Interval.html" title="class in org.deidentifier.arx.aggregates">org.deidentifier.arx.aggregates.HierarchyBuilderIntervalBased.Interval</a> extends org.deidentifier.arx.aggregates.HierarchyBuilderGroupingBased.AbstractGroup implements Serializable</h3>
  1293. <dl class="nameValue">
  1294. <dt>serialVersionUID:</dt>
  1295. <dd>5985820929677249525L</dd>
  1296. </dl>
  1297. <ul class="blockList">
  1298. <li class="blockList"><a name="serializedForm">
  1299. <!-- -->
  1300. </a>
  1301. <h3>Serialized Fields</h3>
  1302. <ul class="blockList">
  1303. <li class="blockList">
  1304. <h4>function</h4>
  1305. <pre><a href="org/deidentifier/arx/aggregates/AggregateFunction.html" title="class in org.deidentifier.arx.aggregates">AggregateFunction</a>&lt;<a href="org/deidentifier/arx/aggregates/AggregateFunction.html" title="type parameter in AggregateFunction">T</a>&gt; function</pre>
  1306. <div class="block">The function.</div>
  1307. </li>
  1308. <li class="blockList">
  1309. <h4>max</h4>
  1310. <pre>java.lang.Object max</pre>
  1311. <div class="block">Max is exclusive.</div>
  1312. </li>
  1313. <li class="blockList">
  1314. <h4>min</h4>
  1315. <pre>java.lang.Object min</pre>
  1316. <div class="block">Min is inclusive.</div>
  1317. </li>
  1318. <li class="blockList">
  1319. <h4>builder</h4>
  1320. <pre><a href="org/deidentifier/arx/aggregates/HierarchyBuilderGroupingBased.html" title="class in org.deidentifier.arx.aggregates">HierarchyBuilderGroupingBased</a>&lt;<a href="org/deidentifier/arx/aggregates/HierarchyBuilderGroupingBased.html" title="type parameter in HierarchyBuilderGroupingBased">T</a>&gt; builder</pre>
  1321. <div class="block">The builder.</div>
  1322. </li>
  1323. <li class="blockListLast">
  1324. <h4>lower</h4>
  1325. <pre>java.lang.Boolean lower</pre>
  1326. <div class="block">Null for normal intervals, true if <min, false if >max.</div>
  1327. </li>
  1328. </ul>
  1329. </li>
  1330. </ul>
  1331. </li>
  1332. <li class="blockList"><a name="org.deidentifier.arx.aggregates.HierarchyBuilderIntervalBased.Range">
  1333. <!-- -->
  1334. </a>
  1335. <h3>Class <a href="org/deidentifier/arx/aggregates/HierarchyBuilderIntervalBased.Range.html" title="class in org.deidentifier.arx.aggregates">org.deidentifier.arx.aggregates.HierarchyBuilderIntervalBased.Range</a> extends java.lang.Object implements Serializable</h3>
  1336. <dl class="nameValue">
  1337. <dt>serialVersionUID:</dt>
  1338. <dd>-5385139177770612960L</dd>
  1339. </dl>
  1340. <ul class="blockList">
  1341. <li class="blockList"><a name="serializedForm">
  1342. <!-- -->
  1343. </a>
  1344. <h3>Serialized Fields</h3>
  1345. <ul class="blockList">
  1346. <li class="blockList">
  1347. <h4>repeatBound</h4>
  1348. <pre>java.lang.Object repeatBound</pre>
  1349. <div class="block">Bound.</div>
  1350. </li>
  1351. <li class="blockList">
  1352. <h4>snapBound</h4>
  1353. <pre>java.lang.Object snapBound</pre>
  1354. <div class="block">Bound.</div>
  1355. </li>
  1356. <li class="blockListLast">
  1357. <h4>labelBound</h4>
  1358. <pre>java.lang.Object labelBound</pre>
  1359. <div class="block">Bound.</div>
  1360. </li>
  1361. </ul>
  1362. </li>
  1363. </ul>
  1364. </li>
  1365. <li class="blockList"><a name="org.deidentifier.arx.aggregates.HierarchyBuilderOrderBased">
  1366. <!-- -->
  1367. </a>
  1368. <h3>Class <a href="org/deidentifier/arx/aggregates/HierarchyBuilderOrderBased.html" title="class in org.deidentifier.arx.aggregates">org.deidentifier.arx.aggregates.HierarchyBuilderOrderBased</a> extends <a href="org/deidentifier/arx/aggregates/HierarchyBuilderGroupingBased.html" title="class in org.deidentifier.arx.aggregates">HierarchyBuilderGroupingBased</a>&lt;<a href="org/deidentifier/arx/aggregates/HierarchyBuilderOrderBased.html" title="type parameter in HierarchyBuilderOrderBased">T</a>&gt; implements Serializable</h3>
  1369. <dl class="nameValue">
  1370. <dt>serialVersionUID:</dt>
  1371. <dd>-2749758635401073668L</dd>
  1372. </dl>
  1373. <ul class="blockList">
  1374. <li class="blockList"><a name="serializedForm">
  1375. <!-- -->
  1376. </a>
  1377. <h3>Serialized Fields</h3>
  1378. <ul class="blockList">
  1379. <li class="blockListLast">
  1380. <h4>comparator</h4>
  1381. <pre>java.util.Comparator&lt;T&gt; comparator</pre>
  1382. <div class="block">Comparator</div>
  1383. </li>
  1384. </ul>
  1385. </li>
  1386. </ul>
  1387. </li>
  1388. <li class="blockList"><a name="org.deidentifier.arx.aggregates.HierarchyBuilderOrderBased.CloseElements">
  1389. <!-- -->
  1390. </a>
  1391. <h3>Class org.deidentifier.arx.aggregates.HierarchyBuilderOrderBased.CloseElements extends org.deidentifier.arx.aggregates.HierarchyBuilderGroupingBased.AbstractGroup implements Serializable</h3>
  1392. <dl class="nameValue">
  1393. <dt>serialVersionUID:</dt>
  1394. <dd>7224062023293601561L</dd>
  1395. </dl>
  1396. <ul class="blockList">
  1397. <li class="blockList"><a name="serializedForm">
  1398. <!-- -->
  1399. </a>
  1400. <h3>Serialized Fields</h3>
  1401. <ul class="blockList">
  1402. <li class="blockListLast">
  1403. <h4>values</h4>
  1404. <pre>java.lang.String[] values</pre>
  1405. <div class="block">Values</div>
  1406. </li>
  1407. </ul>
  1408. </li>
  1409. </ul>
  1410. </li>
  1411. <li class="blockList"><a name="org.deidentifier.arx.aggregates.HierarchyBuilderOrderBased.SerializableComparator">
  1412. <!-- -->
  1413. </a>
  1414. <h3>Class <a href="org/deidentifier/arx/aggregates/HierarchyBuilderOrderBased.SerializableComparator.html" title="class in org.deidentifier.arx.aggregates">org.deidentifier.arx.aggregates.HierarchyBuilderOrderBased.SerializableComparator</a> extends java.lang.Object implements Serializable</h3>
  1415. <dl class="nameValue">
  1416. <dt>serialVersionUID:</dt>
  1417. <dd>3851134667082727602L</dd>
  1418. </dl>
  1419. </li>
  1420. <li class="blockList"><a name="org.deidentifier.arx.aggregates.HierarchyBuilderRedactionBased">
  1421. <!-- -->
  1422. </a>
  1423. <h3>Class <a href="org/deidentifier/arx/aggregates/HierarchyBuilderRedactionBased.html" title="class in org.deidentifier.arx.aggregates">org.deidentifier.arx.aggregates.HierarchyBuilderRedactionBased</a> extends <a href="org/deidentifier/arx/aggregates/HierarchyBuilder.html" title="class in org.deidentifier.arx.aggregates">HierarchyBuilder</a>&lt;<a href="org/deidentifier/arx/aggregates/HierarchyBuilderRedactionBased.html" title="type parameter in HierarchyBuilderRedactionBased">T</a>&gt; implements Serializable</h3>
  1424. <dl class="nameValue">
  1425. <dt>serialVersionUID:</dt>
  1426. <dd>3625654600380531803L</dd>
  1427. </dl>
  1428. <ul class="blockList">
  1429. <li class="blockList"><a name="serializedForm">
  1430. <!-- -->
  1431. </a>
  1432. <h3>Serialized Fields</h3>
  1433. <ul class="blockList">
  1434. <li class="blockList">
  1435. <h4>aligmentOrder</h4>
  1436. <pre><a href="org/deidentifier/arx/aggregates/HierarchyBuilderRedactionBased.Order.html" title="enum in org.deidentifier.arx.aggregates">HierarchyBuilderRedactionBased.Order</a> aligmentOrder</pre>
  1437. <div class="block">Alignment order.</div>
  1438. </li>
  1439. <li class="blockList">
  1440. <h4>paddingCharacter</h4>
  1441. <pre>char paddingCharacter</pre>
  1442. <div class="block">Padding character.</div>
  1443. </li>
  1444. <li class="blockList">
  1445. <h4>redactionCharacter</h4>
  1446. <pre>char redactionCharacter</pre>
  1447. <div class="block">Redaction character.</div>
  1448. </li>
  1449. <li class="blockList">
  1450. <h4>redactionOrder</h4>
  1451. <pre><a href="org/deidentifier/arx/aggregates/HierarchyBuilderRedactionBased.Order.html" title="enum in org.deidentifier.arx.aggregates">HierarchyBuilderRedactionBased.Order</a> redactionOrder</pre>
  1452. <div class="block">Redaction order.</div>
  1453. </li>
  1454. <li class="blockList">
  1455. <h4>maxValueLength</h4>
  1456. <pre>java.lang.Double maxValueLength</pre>
  1457. <div class="block">Meta-data about the nature of the domain of the attribute. Modeled as Double
  1458. for backwards compatibility</div>
  1459. </li>
  1460. <li class="blockList">
  1461. <h4>domainSize</h4>
  1462. <pre>java.lang.Double domainSize</pre>
  1463. <div class="block">Meta-data about the nature of the domain of the attribute. Modeled as Double
  1464. for backwards compatibility</div>
  1465. </li>
  1466. <li class="blockListLast">
  1467. <h4>alphabetSize</h4>
  1468. <pre>java.lang.Double alphabetSize</pre>
  1469. <div class="block">Meta-data about the nature of the domain of the attribute. Modeled as Double
  1470. for backwards compatibility</div>
  1471. </li>
  1472. </ul>
  1473. </li>
  1474. </ul>
  1475. </li>
  1476. </ul>
  1477. </li>
  1478. <li class="blockList">
  1479. <h2 title="Package">Package&nbsp;org.deidentifier.arx.criteria</h2>
  1480. <ul class="blockList">
  1481. <li class="blockList"><a name="org.deidentifier.arx.criteria.AverageReidentificationRisk">
  1482. <!-- -->
  1483. </a>
  1484. <h3>Class <a href="org/deidentifier/arx/criteria/AverageReidentificationRisk.html" title="class in org.deidentifier.arx.criteria">org.deidentifier.arx.criteria.AverageReidentificationRisk</a> extends <a href="org/deidentifier/arx/criteria/RiskBasedCriterion.html" title="class in org.deidentifier.arx.criteria">RiskBasedCriterion</a> implements Serializable</h3>
  1485. <dl class="nameValue">
  1486. <dt>serialVersionUID:</dt>
  1487. <dd>-2953252206954936045L</dd>
  1488. </dl>
  1489. </li>
  1490. <li class="blockList"><a name="org.deidentifier.arx.criteria.BasicBLikeness">
  1491. <!-- -->
  1492. </a>
  1493. <h3>Class <a href="org/deidentifier/arx/criteria/BasicBLikeness.html" title="class in org.deidentifier.arx.criteria">org.deidentifier.arx.criteria.BasicBLikeness</a> extends <a href="org/deidentifier/arx/criteria/ExplicitPrivacyCriterion.html" title="class in org.deidentifier.arx.criteria">ExplicitPrivacyCriterion</a> implements Serializable</h3>
  1494. <dl class="nameValue">
  1495. <dt>serialVersionUID:</dt>
  1496. <dd>2528498679732389575L</dd>
  1497. </dl>
  1498. <ul class="blockList">
  1499. <li class="blockList"><a name="serializedForm">
  1500. <!-- -->
  1501. </a>
  1502. <h3>Serialized Fields</h3>
  1503. <ul class="blockList">
  1504. <li class="blockList">
  1505. <h4>b</h4>
  1506. <pre>double b</pre>
  1507. <div class="block">Parameter</div>
  1508. </li>
  1509. <li class="blockListLast">
  1510. <h4>distribution</h4>
  1511. <pre>double[] distribution</pre>
  1512. <div class="block">The original distribution.</div>
  1513. </li>
  1514. </ul>
  1515. </li>
  1516. </ul>
  1517. </li>
  1518. <li class="blockList"><a name="org.deidentifier.arx.criteria.DDisclosurePrivacy">
  1519. <!-- -->
  1520. </a>
  1521. <h3>Class <a href="org/deidentifier/arx/criteria/DDisclosurePrivacy.html" title="class in org.deidentifier.arx.criteria">org.deidentifier.arx.criteria.DDisclosurePrivacy</a> extends <a href="org/deidentifier/arx/criteria/ExplicitPrivacyCriterion.html" title="class in org.deidentifier.arx.criteria">ExplicitPrivacyCriterion</a> implements Serializable</h3>
  1522. <dl class="nameValue">
  1523. <dt>serialVersionUID:</dt>
  1524. <dd>1543994581019659183L</dd>
  1525. </dl>
  1526. <ul class="blockList">
  1527. <li class="blockList"><a name="serializedForm">
  1528. <!-- -->
  1529. </a>
  1530. <h3>Serialized Fields</h3>
  1531. <ul class="blockList">
  1532. <li class="blockList">
  1533. <h4>d</h4>
  1534. <pre>double d</pre>
  1535. <div class="block">Parameter</div>
  1536. </li>
  1537. <li class="blockListLast">
  1538. <h4>distribution</h4>
  1539. <pre>double[] distribution</pre>
  1540. <div class="block">The original distribution.</div>
  1541. </li>
  1542. </ul>
  1543. </li>
  1544. </ul>
  1545. </li>
  1546. <li class="blockList"><a name="org.deidentifier.arx.criteria.DistinctLDiversity">
  1547. <!-- -->
  1548. </a>
  1549. <h3>Class <a href="org/deidentifier/arx/criteria/DistinctLDiversity.html" title="class in org.deidentifier.arx.criteria">org.deidentifier.arx.criteria.DistinctLDiversity</a> extends <a href="org/deidentifier/arx/criteria/LDiversity.html" title="class in org.deidentifier.arx.criteria">LDiversity</a> implements Serializable</h3>
  1550. <dl class="nameValue">
  1551. <dt>serialVersionUID:</dt>
  1552. <dd>-7973221140269608088L</dd>
  1553. </dl>
  1554. </li>
  1555. <li class="blockList"><a name="org.deidentifier.arx.criteria.DPresence">
  1556. <!-- -->
  1557. </a>
  1558. <h3>Class <a href="org/deidentifier/arx/criteria/DPresence.html" title="class in org.deidentifier.arx.criteria">org.deidentifier.arx.criteria.DPresence</a> extends <a href="org/deidentifier/arx/criteria/ImplicitPrivacyCriterion.html" title="class in org.deidentifier.arx.criteria">ImplicitPrivacyCriterion</a> implements Serializable</h3>
  1559. <dl class="nameValue">
  1560. <dt>serialVersionUID:</dt>
  1561. <dd>8534004943055128797L</dd>
  1562. </dl>
  1563. <ul class="blockList">
  1564. <li class="blockList"><a name="serializedForm">
  1565. <!-- -->
  1566. </a>
  1567. <h3>Serialized Fields</h3>
  1568. <ul class="blockList">
  1569. <li class="blockList">
  1570. <h4>dMin</h4>
  1571. <pre>double dMin</pre>
  1572. <div class="block">Delta min.</div>
  1573. </li>
  1574. <li class="blockList">
  1575. <h4>dMax</h4>
  1576. <pre>double dMax</pre>
  1577. <div class="block">Delta max.</div>
  1578. </li>
  1579. <li class="blockListLast">
  1580. <h4>subset</h4>
  1581. <pre><a href="org/deidentifier/arx/DataSubset.html" title="class in org.deidentifier.arx">DataSubset</a> subset</pre>
  1582. <div class="block">A compressed representation of the research subset.</div>
  1583. </li>
  1584. </ul>
  1585. </li>
  1586. </ul>
  1587. </li>
  1588. <li class="blockList"><a name="org.deidentifier.arx.criteria.EDDifferentialPrivacy">
  1589. <!-- -->
  1590. </a>
  1591. <h3>Class <a href="org/deidentifier/arx/criteria/EDDifferentialPrivacy.html" title="class in org.deidentifier.arx.criteria">org.deidentifier.arx.criteria.EDDifferentialPrivacy</a> extends <a href="org/deidentifier/arx/criteria/ImplicitPrivacyCriterion.html" title="class in org.deidentifier.arx.criteria">ImplicitPrivacyCriterion</a> implements Serializable</h3>
  1592. <dl class="nameValue">
  1593. <dt>serialVersionUID:</dt>
  1594. <dd>242579895476272606L</dd>
  1595. </dl>
  1596. <ul class="blockList">
  1597. <li class="blockList"><a name="serializedForm">
  1598. <!-- -->
  1599. </a>
  1600. <h3>Serialized Fields</h3>
  1601. <ul class="blockList">
  1602. <li class="blockList">
  1603. <h4>epsilon</h4>
  1604. <pre>double epsilon</pre>
  1605. <div class="block">Parameter</div>
  1606. </li>
  1607. <li class="blockList">
  1608. <h4>delta</h4>
  1609. <pre>double delta</pre>
  1610. <div class="block">Parameter</div>
  1611. </li>
  1612. <li class="blockList">
  1613. <h4>k</h4>
  1614. <pre>int k</pre>
  1615. <div class="block">Parameter</div>
  1616. </li>
  1617. <li class="blockList">
  1618. <h4>beta</h4>
  1619. <pre>double beta</pre>
  1620. <div class="block">Parameter</div>
  1621. </li>
  1622. <li class="blockList">
  1623. <h4>subset</h4>
  1624. <pre><a href="org/deidentifier/arx/DataSubset.html" title="class in org.deidentifier.arx">DataSubset</a> subset</pre>
  1625. <div class="block">Parameter</div>
  1626. </li>
  1627. <li class="blockListLast">
  1628. <h4>generalization</h4>
  1629. <pre><a href="org/deidentifier/arx/DataGeneralizationScheme.html" title="class in org.deidentifier.arx">DataGeneralizationScheme</a> generalization</pre>
  1630. <div class="block">Parameter</div>
  1631. </li>
  1632. </ul>
  1633. </li>
  1634. </ul>
  1635. </li>
  1636. <li class="blockList"><a name="org.deidentifier.arx.criteria.EnhancedBLikeness">
  1637. <!-- -->
  1638. </a>
  1639. <h3>Class <a href="org/deidentifier/arx/criteria/EnhancedBLikeness.html" title="class in org.deidentifier.arx.criteria">org.deidentifier.arx.criteria.EnhancedBLikeness</a> extends <a href="org/deidentifier/arx/criteria/ExplicitPrivacyCriterion.html" title="class in org.deidentifier.arx.criteria">ExplicitPrivacyCriterion</a> implements Serializable</h3>
  1640. <dl class="nameValue">
  1641. <dt>serialVersionUID:</dt>
  1642. <dd>5319052409590347904L</dd>
  1643. </dl>
  1644. <ul class="blockList">
  1645. <li class="blockList"><a name="serializedForm">
  1646. <!-- -->
  1647. </a>
  1648. <h3>Serialized Fields</h3>
  1649. <ul class="blockList">
  1650. <li class="blockList">
  1651. <h4>b</h4>
  1652. <pre>double b</pre>
  1653. <div class="block">Parameter</div>
  1654. </li>
  1655. <li class="blockListLast">
  1656. <h4>distribution</h4>
  1657. <pre>double[] distribution</pre>
  1658. <div class="block">The original distribution.</div>
  1659. </li>
  1660. </ul>
  1661. </li>
  1662. </ul>
  1663. </li>
  1664. <li class="blockList"><a name="org.deidentifier.arx.criteria.EntropyLDiversity">
  1665. <!-- -->
  1666. </a>
  1667. <h3>Class <a href="org/deidentifier/arx/criteria/EntropyLDiversity.html" title="class in org.deidentifier.arx.criteria">org.deidentifier.arx.criteria.EntropyLDiversity</a> extends <a href="org/deidentifier/arx/criteria/LDiversity.html" title="class in org.deidentifier.arx.criteria">LDiversity</a> implements Serializable</h3>
  1668. <dl class="nameValue">
  1669. <dt>serialVersionUID:</dt>
  1670. <dd>-354688551915634000L</dd>
  1671. </dl>
  1672. <ul class="blockList">
  1673. <li class="blockList"><a name="serialized_methods">
  1674. <!-- -->
  1675. </a>
  1676. <h3>Serialization Methods</h3>
  1677. <ul class="blockList">
  1678. <li class="blockListLast"><a name="readObject(java.io.ObjectInputStream)">
  1679. <!-- -->
  1680. </a>
  1681. <h4>readObject</h4>
  1682. <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;ois)
  1683. throws java.lang.ClassNotFoundException,
  1684. java.io.IOException</pre>
  1685. <div class="block">Custom de-serialization
  1686. If we de-serialize an older object where the entropy estimator
  1687. could not be chosen, set the estimator to the default: Shannon.</div>
  1688. <dl><dt><span class="strong">Throws:</span></dt>
  1689. <dd><code>java.lang.ClassNotFoundException</code></dd>
  1690. <dd><code>java.io.IOException</code></dd></dl>
  1691. </li>
  1692. </ul>
  1693. </li>
  1694. <li class="blockList"><a name="serializedForm">
  1695. <!-- -->
  1696. </a>
  1697. <h3>Serialized Fields</h3>
  1698. <ul class="blockList">
  1699. <li class="blockListLast">
  1700. <h4>estimator</h4>
  1701. <pre><a href="org/deidentifier/arx/criteria/EntropyLDiversity.EntropyEstimator.html" title="enum in org.deidentifier.arx.criteria">EntropyLDiversity.EntropyEstimator</a> estimator</pre>
  1702. <div class="block">Entropy estimator to be used</div>
  1703. </li>
  1704. </ul>
  1705. </li>
  1706. </ul>
  1707. </li>
  1708. <li class="blockList"><a name="org.deidentifier.arx.criteria.EqualDistanceTCloseness">
  1709. <!-- -->
  1710. </a>
  1711. <h3>Class <a href="org/deidentifier/arx/criteria/EqualDistanceTCloseness.html" title="class in org.deidentifier.arx.criteria">org.deidentifier.arx.criteria.EqualDistanceTCloseness</a> extends <a href="org/deidentifier/arx/criteria/TCloseness.html" title="class in org.deidentifier.arx.criteria">TCloseness</a> implements Serializable</h3>
  1712. <dl class="nameValue">
  1713. <dt>serialVersionUID:</dt>
  1714. <dd>-1383357036299011323L</dd>
  1715. </dl>
  1716. <ul class="blockList">
  1717. <li class="blockList"><a name="serializedForm">
  1718. <!-- -->
  1719. </a>
  1720. <h3>Serialized Fields</h3>
  1721. <ul class="blockList">
  1722. <li class="blockListLast">
  1723. <h4>distribution</h4>
  1724. <pre>double[] distribution</pre>
  1725. <div class="block">The original distribution.</div>
  1726. </li>
  1727. </ul>
  1728. </li>
  1729. </ul>
  1730. </li>
  1731. <li class="blockList"><a name="org.deidentifier.arx.criteria.ExplicitPrivacyCriterion">
  1732. <!-- -->
  1733. </a>
  1734. <h3>Class <a href="org/deidentifier/arx/criteria/ExplicitPrivacyCriterion.html" title="class in org.deidentifier.arx.criteria">org.deidentifier.arx.criteria.ExplicitPrivacyCriterion</a> extends <a href="org/deidentifier/arx/criteria/PrivacyCriterion.html" title="class in org.deidentifier.arx.criteria">PrivacyCriterion</a> implements Serializable</h3>
  1735. <dl class="nameValue">
  1736. <dt>serialVersionUID:</dt>
  1737. <dd>-6467044039242481225L</dd>
  1738. </dl>
  1739. <ul class="blockList">
  1740. <li class="blockList"><a name="serializedForm">
  1741. <!-- -->
  1742. </a>
  1743. <h3>Serialized Fields</h3>
  1744. <ul class="blockList">
  1745. <li class="blockList">
  1746. <h4>attribute</h4>
  1747. <pre>java.lang.String attribute</pre>
  1748. <div class="block">Attribute</div>
  1749. </li>
  1750. <li class="blockListLast">
  1751. <h4>index</h4>
  1752. <pre>int index</pre>
  1753. <div class="block">Attribute index</div>
  1754. </li>
  1755. </ul>
  1756. </li>
  1757. </ul>
  1758. </li>
  1759. <li class="blockList"><a name="org.deidentifier.arx.criteria.HierarchicalDistanceTCloseness">
  1760. <!-- -->
  1761. </a>
  1762. <h3>Class <a href="org/deidentifier/arx/criteria/HierarchicalDistanceTCloseness.html" title="class in org.deidentifier.arx.criteria">org.deidentifier.arx.criteria.HierarchicalDistanceTCloseness</a> extends <a href="org/deidentifier/arx/criteria/TCloseness.html" title="class in org.deidentifier.arx.criteria">TCloseness</a> implements Serializable</h3>
  1763. <dl class="nameValue">
  1764. <dt>serialVersionUID:</dt>
  1765. <dd>-2142590190479670706L</dd>
  1766. </dl>
  1767. <ul class="blockList">
  1768. <li class="blockList"><a name="serializedForm">
  1769. <!-- -->
  1770. </a>
  1771. <h3>Serialized Fields</h3>
  1772. <ul class="blockList">
  1773. <li class="blockList">
  1774. <h4>hierarchy</h4>
  1775. <pre><a href="org/deidentifier/arx/AttributeType.Hierarchy.html" title="class in org.deidentifier.arx">AttributeType.Hierarchy</a> hierarchy</pre>
  1776. <div class="block">The hierarchy used for the EMD.</div>
  1777. </li>
  1778. <li class="blockList">
  1779. <h4>tree</h4>
  1780. <pre>int[] tree</pre>
  1781. <div class="block">Internal tree.</div>
  1782. </li>
  1783. <li class="blockList">
  1784. <h4>start</h4>
  1785. <pre>int start</pre>
  1786. <div class="block">Internal offset.</div>
  1787. </li>
  1788. <li class="blockListLast">
  1789. <h4>empty</h4>
  1790. <pre>int[] empty</pre>
  1791. <div class="block">Internal empty tree.</div>
  1792. </li>
  1793. </ul>
  1794. </li>
  1795. </ul>
  1796. </li>
  1797. <li class="blockList"><a name="org.deidentifier.arx.criteria.ImplicitPrivacyCriterion">
  1798. <!-- -->
  1799. </a>
  1800. <h3>Class <a href="org/deidentifier/arx/criteria/ImplicitPrivacyCriterion.html" title="class in org.deidentifier.arx.criteria">org.deidentifier.arx.criteria.ImplicitPrivacyCriterion</a> extends <a href="org/deidentifier/arx/criteria/PrivacyCriterion.html" title="class in org.deidentifier.arx.criteria">PrivacyCriterion</a> implements Serializable</h3>
  1801. <dl class="nameValue">
  1802. <dt>serialVersionUID:</dt>
  1803. <dd>-6467044039242481225L</dd>
  1804. </dl>
  1805. </li>
  1806. <li class="blockList"><a name="org.deidentifier.arx.criteria.Inclusion">
  1807. <!-- -->
  1808. </a>
  1809. <h3>Class <a href="org/deidentifier/arx/criteria/Inclusion.html" title="class in org.deidentifier.arx.criteria">org.deidentifier.arx.criteria.Inclusion</a> extends <a href="org/deidentifier/arx/criteria/DPresence.html" title="class in org.deidentifier.arx.criteria">DPresence</a> implements Serializable</h3>
  1810. <dl class="nameValue">
  1811. <dt>serialVersionUID:</dt>
  1812. <dd>-3984193225980793775L</dd>
  1813. </dl>
  1814. </li>
  1815. <li class="blockList"><a name="org.deidentifier.arx.criteria.KAnonymity">
  1816. <!-- -->
  1817. </a>
  1818. <h3>Class <a href="org/deidentifier/arx/criteria/KAnonymity.html" title="class in org.deidentifier.arx.criteria">org.deidentifier.arx.criteria.KAnonymity</a> extends <a href="org/deidentifier/arx/criteria/ImplicitPrivacyCriterion.html" title="class in org.deidentifier.arx.criteria">ImplicitPrivacyCriterion</a> implements Serializable</h3>
  1819. <dl class="nameValue">
  1820. <dt>serialVersionUID:</dt>
  1821. <dd>-8370928677928140572L</dd>
  1822. </dl>
  1823. <ul class="blockList">
  1824. <li class="blockList"><a name="serializedForm">
  1825. <!-- -->
  1826. </a>
  1827. <h3>Serialized Fields</h3>
  1828. <ul class="blockList">
  1829. <li class="blockListLast">
  1830. <h4>k</h4>
  1831. <pre>int k</pre>
  1832. <div class="block">The parameter k.</div>
  1833. </li>
  1834. </ul>
  1835. </li>
  1836. </ul>
  1837. </li>
  1838. <li class="blockList"><a name="org.deidentifier.arx.criteria.KMap">
  1839. <!-- -->
  1840. </a>
  1841. <h3>Class <a href="org/deidentifier/arx/criteria/KMap.html" title="class in org.deidentifier.arx.criteria">org.deidentifier.arx.criteria.KMap</a> extends <a href="org/deidentifier/arx/criteria/ImplicitPrivacyCriterion.html" title="class in org.deidentifier.arx.criteria">ImplicitPrivacyCriterion</a> implements Serializable</h3>
  1842. <dl class="nameValue">
  1843. <dt>serialVersionUID:</dt>
  1844. <dd>-6966985761538810077L</dd>
  1845. </dl>
  1846. <ul class="blockList">
  1847. <li class="blockList"><a name="serializedForm">
  1848. <!-- -->
  1849. </a>
  1850. <h3>Serialized Fields</h3>
  1851. <ul class="blockList">
  1852. <li class="blockList">
  1853. <h4>k</h4>
  1854. <pre>int k</pre>
  1855. <div class="block">K</div>
  1856. </li>
  1857. <li class="blockList">
  1858. <h4>subset</h4>
  1859. <pre><a href="org/deidentifier/arx/DataSubset.html" title="class in org.deidentifier.arx">DataSubset</a> subset</pre>
  1860. <div class="block">A compressed representation of the research subset.</div>
  1861. </li>
  1862. <li class="blockList">
  1863. <h4>derivedK</h4>
  1864. <pre>int derivedK</pre>
  1865. <div class="block">The parameter k'.</div>
  1866. </li>
  1867. <li class="blockList">
  1868. <h4>significanceLevel</h4>
  1869. <pre>double significanceLevel</pre>
  1870. <div class="block">The significance level</div>
  1871. </li>
  1872. <li class="blockList">
  1873. <h4>populationModel</h4>
  1874. <pre><a href="org/deidentifier/arx/ARXPopulationModel.html" title="class in org.deidentifier.arx">ARXPopulationModel</a> populationModel</pre>
  1875. <div class="block">The population model</div>
  1876. </li>
  1877. <li class="blockList">
  1878. <h4>estimator</h4>
  1879. <pre><a href="org/deidentifier/arx/criteria/KMap.CellSizeEstimator.html" title="enum in org.deidentifier.arx.criteria">KMap.CellSizeEstimator</a> estimator</pre>
  1880. <div class="block">The selected estimator</div>
  1881. </li>
  1882. <li class="blockListLast">
  1883. <h4>type1Error</h4>
  1884. <pre>double type1Error</pre>
  1885. <div class="block">The actual type I error.</div>
  1886. </li>
  1887. </ul>
  1888. </li>
  1889. </ul>
  1890. </li>
  1891. <li class="blockList"><a name="org.deidentifier.arx.criteria.LDiversity">
  1892. <!-- -->
  1893. </a>
  1894. <h3>Class <a href="org/deidentifier/arx/criteria/LDiversity.html" title="class in org.deidentifier.arx.criteria">org.deidentifier.arx.criteria.LDiversity</a> extends <a href="org/deidentifier/arx/criteria/ExplicitPrivacyCriterion.html" title="class in org.deidentifier.arx.criteria">ExplicitPrivacyCriterion</a> implements Serializable</h3>
  1895. <dl class="nameValue">
  1896. <dt>serialVersionUID:</dt>
  1897. <dd>6429149925699964530L</dd>
  1898. </dl>
  1899. <ul class="blockList">
  1900. <li class="blockList"><a name="serializedForm">
  1901. <!-- -->
  1902. </a>
  1903. <h3>Serialized Fields</h3>
  1904. <ul class="blockList">
  1905. <li class="blockList">
  1906. <h4>l</h4>
  1907. <pre>double l</pre>
  1908. <div class="block">The parameter l.</div>
  1909. </li>
  1910. <li class="blockListLast">
  1911. <h4>minSize</h4>
  1912. <pre>int minSize</pre>
  1913. <div class="block">The derived minimal size of a class</div>
  1914. </li>
  1915. </ul>
  1916. </li>
  1917. </ul>
  1918. </li>
  1919. <li class="blockList"><a name="org.deidentifier.arx.criteria.OrderedDistanceTCloseness">
  1920. <!-- -->
  1921. </a>
  1922. <h3>Class <a href="org/deidentifier/arx/criteria/OrderedDistanceTCloseness.html" title="class in org.deidentifier.arx.criteria">org.deidentifier.arx.criteria.OrderedDistanceTCloseness</a> extends <a href="org/deidentifier/arx/criteria/TCloseness.html" title="class in org.deidentifier.arx.criteria">TCloseness</a> implements Serializable</h3>
  1923. <dl class="nameValue">
  1924. <dt>serialVersionUID:</dt>
  1925. <dd>-2395544663063577862L</dd>
  1926. </dl>
  1927. <ul class="blockList">
  1928. <li class="blockList"><a name="serializedForm">
  1929. <!-- -->
  1930. </a>
  1931. <h3>Serialized Fields</h3>
  1932. <ul class="blockList">
  1933. <li class="blockList">
  1934. <h4>distribution</h4>
  1935. <pre>double[] distribution</pre>
  1936. <div class="block">The original distribution.</div>
  1937. </li>
  1938. <li class="blockListLast">
  1939. <h4>order</h4>
  1940. <pre>int[] order</pre>
  1941. <div class="block">The order of the elements.</div>
  1942. </li>
  1943. </ul>
  1944. </li>
  1945. </ul>
  1946. </li>
  1947. <li class="blockList"><a name="org.deidentifier.arx.criteria.PopulationUniqueness">
  1948. <!-- -->
  1949. </a>
  1950. <h3>Class <a href="org/deidentifier/arx/criteria/PopulationUniqueness.html" title="class in org.deidentifier.arx.criteria">org.deidentifier.arx.criteria.PopulationUniqueness</a> extends <a href="org/deidentifier/arx/criteria/RiskBasedCriterion.html" title="class in org.deidentifier.arx.criteria">RiskBasedCriterion</a> implements Serializable</h3>
  1951. <dl class="nameValue">
  1952. <dt>serialVersionUID:</dt>
  1953. <dd>618039085843721351L</dd>
  1954. </dl>
  1955. <ul class="blockList">
  1956. <li class="blockList"><a name="serializedForm">
  1957. <!-- -->
  1958. </a>
  1959. <h3>Serialized Fields</h3>
  1960. <ul class="blockList">
  1961. <li class="blockList">
  1962. <h4>statisticalModel</h4>
  1963. <pre><a href="org/deidentifier/arx/risk/RiskModelPopulationUniqueness.PopulationUniquenessModel.html" title="enum in org.deidentifier.arx.risk">RiskModelPopulationUniqueness.PopulationUniquenessModel</a> statisticalModel</pre>
  1964. <div class="block">The statistical model</div>
  1965. </li>
  1966. <li class="blockList">
  1967. <h4>populationModel</h4>
  1968. <pre><a href="org/deidentifier/arx/ARXPopulationModel.html" title="class in org.deidentifier.arx">ARXPopulationModel</a> populationModel</pre>
  1969. <div class="block">The population model</div>
  1970. </li>
  1971. <li class="blockListLast">
  1972. <h4>solverConfig</h4>
  1973. <pre><a href="org/deidentifier/arx/ARXSolverConfiguration.html" title="class in org.deidentifier.arx">ARXSolverConfiguration</a> solverConfig</pre>
  1974. <div class="block">The solver config</div>
  1975. </li>
  1976. </ul>
  1977. </li>
  1978. </ul>
  1979. </li>
  1980. <li class="blockList"><a name="org.deidentifier.arx.criteria.PrivacyCriterion">
  1981. <!-- -->
  1982. </a>
  1983. <h3>Class <a href="org/deidentifier/arx/criteria/PrivacyCriterion.html" title="class in org.deidentifier.arx.criteria">org.deidentifier.arx.criteria.PrivacyCriterion</a> extends java.lang.Object implements Serializable</h3>
  1984. <dl class="nameValue">
  1985. <dt>serialVersionUID:</dt>
  1986. <dd>-8460571120677880409L</dd>
  1987. </dl>
  1988. <ul class="blockList">
  1989. <li class="blockList"><a name="serializedForm">
  1990. <!-- -->
  1991. </a>
  1992. <h3>Serialized Fields</h3>
  1993. <ul class="blockList">
  1994. <li class="blockList">
  1995. <h4>monotonic</h4>
  1996. <pre>boolean monotonic</pre>
  1997. <div class="block">Is the criterion monotonic with generalization and suppression.</div>
  1998. </li>
  1999. <li class="blockListLast">
  2000. <h4>monotonicWithGeneralization</h4>
  2001. <pre>java.lang.Boolean monotonicWithGeneralization</pre>
  2002. <div class="block">Is the criterion monotonic with generalization.</div>
  2003. </li>
  2004. </ul>
  2005. </li>
  2006. </ul>
  2007. </li>
  2008. <li class="blockList"><a name="org.deidentifier.arx.criteria.ProfitabilityJournalist">
  2009. <!-- -->
  2010. </a>
  2011. <h3>Class <a href="org/deidentifier/arx/criteria/ProfitabilityJournalist.html" title="class in org.deidentifier.arx.criteria">org.deidentifier.arx.criteria.ProfitabilityJournalist</a> extends <a href="org/deidentifier/arx/criteria/ProfitabilityProsecutor.html" title="class in org.deidentifier.arx.criteria">ProfitabilityProsecutor</a> implements Serializable</h3>
  2012. <dl class="nameValue">
  2013. <dt>serialVersionUID:</dt>
  2014. <dd>5089787798100584405L</dd>
  2015. </dl>
  2016. <ul class="blockList">
  2017. <li class="blockList"><a name="serializedForm">
  2018. <!-- -->
  2019. </a>
  2020. <h3>Serialized Fields</h3>
  2021. <ul class="blockList">
  2022. <li class="blockListLast">
  2023. <h4>subset</h4>
  2024. <pre><a href="org/deidentifier/arx/DataSubset.html" title="class in org.deidentifier.arx">DataSubset</a> subset</pre>
  2025. <div class="block">Data subset</div>
  2026. </li>
  2027. </ul>
  2028. </li>
  2029. </ul>
  2030. </li>
  2031. <li class="blockList"><a name="org.deidentifier.arx.criteria.ProfitabilityJournalistNoAttack">
  2032. <!-- -->
  2033. </a>
  2034. <h3>Class <a href="org/deidentifier/arx/criteria/ProfitabilityJournalistNoAttack.html" title="class in org.deidentifier.arx.criteria">org.deidentifier.arx.criteria.ProfitabilityJournalistNoAttack</a> extends <a href="org/deidentifier/arx/criteria/ProfitabilityProsecutorNoAttack.html" title="class in org.deidentifier.arx.criteria">ProfitabilityProsecutorNoAttack</a> implements Serializable</h3>
  2035. <dl class="nameValue">
  2036. <dt>serialVersionUID:</dt>
  2037. <dd>1073520003237793563L</dd>
  2038. </dl>
  2039. <ul class="blockList">
  2040. <li class="blockList"><a name="serializedForm">
  2041. <!-- -->
  2042. </a>
  2043. <h3>Serialized Fields</h3>
  2044. <ul class="blockList">
  2045. <li class="blockListLast">
  2046. <h4>subset</h4>
  2047. <pre><a href="org/deidentifier/arx/DataSubset.html" title="class in org.deidentifier.arx">DataSubset</a> subset</pre>
  2048. <div class="block">The data subset</div>
  2049. </li>
  2050. </ul>
  2051. </li>
  2052. </ul>
  2053. </li>
  2054. <li class="blockList"><a name="org.deidentifier.arx.criteria.ProfitabilityProsecutor">
  2055. <!-- -->
  2056. </a>
  2057. <h3>Class <a href="org/deidentifier/arx/criteria/ProfitabilityProsecutor.html" title="class in org.deidentifier.arx.criteria">org.deidentifier.arx.criteria.ProfitabilityProsecutor</a> extends <a href="org/deidentifier/arx/criteria/ImplicitPrivacyCriterion.html" title="class in org.deidentifier.arx.criteria">ImplicitPrivacyCriterion</a> implements Serializable</h3>
  2058. <dl class="nameValue">
  2059. <dt>serialVersionUID:</dt>
  2060. <dd>-1698534839214708559L</dd>
  2061. </dl>
  2062. <ul class="blockList">
  2063. <li class="blockList"><a name="serializedForm">
  2064. <!-- -->
  2065. </a>
  2066. <h3>Serialized Fields</h3>
  2067. <ul class="blockList">
  2068. <li class="blockList">
  2069. <h4>config</h4>
  2070. <pre><a href="org/deidentifier/arx/ARXCostBenefitConfiguration.html" title="class in org.deidentifier.arx">ARXCostBenefitConfiguration</a> config</pre>
  2071. <div class="block">Configuration</div>
  2072. </li>
  2073. <li class="blockList">
  2074. <h4>shares</h4>
  2075. <pre><a href="org/deidentifier/arx/metric/v2/DomainShare.html" title="interface in org.deidentifier.arx.metric.v2">DomainShare</a>[] shares</pre>
  2076. <div class="block">Domain shares for each dimension.</div>
  2077. </li>
  2078. <li class="blockList">
  2079. <h4>microaggregationFunctions</h4>
  2080. <pre>org.deidentifier.arx.framework.check.distribution.DistributionAggregateFunction[] microaggregationFunctions</pre>
  2081. <div class="block">The microaggregation functions.</div>
  2082. </li>
  2083. <li class="blockList">
  2084. <h4>microaggregationStartIndex</h4>
  2085. <pre>int microaggregationStartIndex</pre>
  2086. <div class="block">The start index of the attributes with microaggregation in the data array (dataAnalyzed)</div>
  2087. </li>
  2088. <li class="blockList">
  2089. <h4>microaggregationDomainSizes</h4>
  2090. <pre>int[] microaggregationDomainSizes</pre>
  2091. <div class="block">Domain size for each microaggregated attribute</div>
  2092. </li>
  2093. <li class="blockList">
  2094. <h4>maxIL</h4>
  2095. <pre>double maxIL</pre>
  2096. <div class="block">MaxIL</div>
  2097. </li>
  2098. <li class="blockListLast">
  2099. <h4>riskModel</h4>
  2100. <pre><a href="org/deidentifier/arx/risk/RiskModelCostBenefit.html" title="class in org.deidentifier.arx.risk">RiskModelCostBenefit</a> riskModel</pre>
  2101. <div class="block">Risk model</div>
  2102. </li>
  2103. </ul>
  2104. </li>
  2105. </ul>
  2106. </li>
  2107. <li class="blockList"><a name="org.deidentifier.arx.criteria.ProfitabilityProsecutorNoAttack">
  2108. <!-- -->
  2109. </a>
  2110. <h3>Class <a href="org/deidentifier/arx/criteria/ProfitabilityProsecutorNoAttack.html" title="class in org.deidentifier.arx.criteria">org.deidentifier.arx.criteria.ProfitabilityProsecutorNoAttack</a> extends <a href="org/deidentifier/arx/criteria/ImplicitPrivacyCriterion.html" title="class in org.deidentifier.arx.criteria">ImplicitPrivacyCriterion</a> implements Serializable</h3>
  2111. <dl class="nameValue">
  2112. <dt>serialVersionUID:</dt>
  2113. <dd>-1283022087083117810L</dd>
  2114. </dl>
  2115. <ul class="blockList">
  2116. <li class="blockList"><a name="serializedForm">
  2117. <!-- -->
  2118. </a>
  2119. <h3>Serialized Fields</h3>
  2120. <ul class="blockList">
  2121. <li class="blockList">
  2122. <h4>k</h4>
  2123. <pre>int k</pre>
  2124. <div class="block">The underlying k-anonymity privacy model</div>
  2125. </li>
  2126. <li class="blockListLast">
  2127. <h4>config</h4>
  2128. <pre><a href="org/deidentifier/arx/ARXCostBenefitConfiguration.html" title="class in org.deidentifier.arx">ARXCostBenefitConfiguration</a> config</pre>
  2129. <div class="block">The underlying cost/benefit configuration</div>
  2130. </li>
  2131. </ul>
  2132. </li>
  2133. </ul>
  2134. </li>
  2135. <li class="blockList"><a name="org.deidentifier.arx.criteria.RecursiveCLDiversity">
  2136. <!-- -->
  2137. </a>
  2138. <h3>Class <a href="org/deidentifier/arx/criteria/RecursiveCLDiversity.html" title="class in org.deidentifier.arx.criteria">org.deidentifier.arx.criteria.RecursiveCLDiversity</a> extends <a href="org/deidentifier/arx/criteria/LDiversity.html" title="class in org.deidentifier.arx.criteria">LDiversity</a> implements Serializable</h3>
  2139. <dl class="nameValue">
  2140. <dt>serialVersionUID:</dt>
  2141. <dd>-5893481096346270328L</dd>
  2142. </dl>
  2143. <ul class="blockList">
  2144. <li class="blockList"><a name="serializedForm">
  2145. <!-- -->
  2146. </a>
  2147. <h3>Serialized Fields</h3>
  2148. <ul class="blockList">
  2149. <li class="blockListLast">
  2150. <h4>c</h4>
  2151. <pre>double c</pre>
  2152. <div class="block">The parameter c.</div>
  2153. </li>
  2154. </ul>
  2155. </li>
  2156. </ul>
  2157. </li>
  2158. <li class="blockList"><a name="org.deidentifier.arx.criteria.RiskBasedCriterion">
  2159. <!-- -->
  2160. </a>
  2161. <h3>Class <a href="org/deidentifier/arx/criteria/RiskBasedCriterion.html" title="class in org.deidentifier.arx.criteria">org.deidentifier.arx.criteria.RiskBasedCriterion</a> extends <a href="org/deidentifier/arx/criteria/SampleBasedCriterion.html" title="class in org.deidentifier.arx.criteria">SampleBasedCriterion</a> implements Serializable</h3>
  2162. <dl class="nameValue">
  2163. <dt>serialVersionUID:</dt>
  2164. <dd>-2711630526630937284L</dd>
  2165. </dl>
  2166. <ul class="blockList">
  2167. <li class="blockList"><a name="serializedForm">
  2168. <!-- -->
  2169. </a>
  2170. <h3>Serialized Fields</h3>
  2171. <ul class="blockList">
  2172. <li class="blockListLast">
  2173. <h4>threshold</h4>
  2174. <pre>double threshold</pre>
  2175. <div class="block">The threshold</div>
  2176. </li>
  2177. </ul>
  2178. </li>
  2179. </ul>
  2180. </li>
  2181. <li class="blockList"><a name="org.deidentifier.arx.criteria.SampleBasedCriterion">
  2182. <!-- -->
  2183. </a>
  2184. <h3>Class <a href="org/deidentifier/arx/criteria/SampleBasedCriterion.html" title="class in org.deidentifier.arx.criteria">org.deidentifier.arx.criteria.SampleBasedCriterion</a> extends <a href="org/deidentifier/arx/criteria/PrivacyCriterion.html" title="class in org.deidentifier.arx.criteria">PrivacyCriterion</a> implements Serializable</h3>
  2185. <dl class="nameValue">
  2186. <dt>serialVersionUID:</dt>
  2187. <dd>5687067920181297803L</dd>
  2188. </dl>
  2189. </li>
  2190. <li class="blockList"><a name="org.deidentifier.arx.criteria.SampleUniqueness">
  2191. <!-- -->
  2192. </a>
  2193. <h3>Class <a href="org/deidentifier/arx/criteria/SampleUniqueness.html" title="class in org.deidentifier.arx.criteria">org.deidentifier.arx.criteria.SampleUniqueness</a> extends <a href="org/deidentifier/arx/criteria/RiskBasedCriterion.html" title="class in org.deidentifier.arx.criteria">RiskBasedCriterion</a> implements Serializable</h3>
  2194. <dl class="nameValue">
  2195. <dt>serialVersionUID:</dt>
  2196. <dd>-4528395062333281525L</dd>
  2197. </dl>
  2198. </li>
  2199. <li class="blockList"><a name="org.deidentifier.arx.criteria.TCloseness">
  2200. <!-- -->
  2201. </a>
  2202. <h3>Class <a href="org/deidentifier/arx/criteria/TCloseness.html" title="class in org.deidentifier.arx.criteria">org.deidentifier.arx.criteria.TCloseness</a> extends <a href="org/deidentifier/arx/criteria/ExplicitPrivacyCriterion.html" title="class in org.deidentifier.arx.criteria">ExplicitPrivacyCriterion</a> implements Serializable</h3>
  2203. <dl class="nameValue">
  2204. <dt>serialVersionUID:</dt>
  2205. <dd>-139670758266526116L</dd>
  2206. </dl>
  2207. <ul class="blockList">
  2208. <li class="blockList"><a name="serializedForm">
  2209. <!-- -->
  2210. </a>
  2211. <h3>Serialized Fields</h3>
  2212. <ul class="blockList">
  2213. <li class="blockListLast">
  2214. <h4>t</h4>
  2215. <pre>double t</pre>
  2216. <div class="block">The param t.</div>
  2217. </li>
  2218. </ul>
  2219. </li>
  2220. </ul>
  2221. </li>
  2222. </ul>
  2223. </li>
  2224. <li class="blockList">
  2225. <h2 title="Package">Package&nbsp;org.deidentifier.arx.exceptions</h2>
  2226. <ul class="blockList">
  2227. <li class="blockList"><a name="org.deidentifier.arx.exceptions.ComputationInterruptedException">
  2228. <!-- -->
  2229. </a>
  2230. <h3>Class <a href="org/deidentifier/arx/exceptions/ComputationInterruptedException.html" title="class in org.deidentifier.arx.exceptions">org.deidentifier.arx.exceptions.ComputationInterruptedException</a> extends java.lang.RuntimeException implements Serializable</h3>
  2231. <dl class="nameValue">
  2232. <dt>serialVersionUID:</dt>
  2233. <dd>5339918851212367422L</dd>
  2234. </dl>
  2235. </li>
  2236. <li class="blockList"><a name="org.deidentifier.arx.exceptions.RollbackRequiredException">
  2237. <!-- -->
  2238. </a>
  2239. <h3>Class <a href="org/deidentifier/arx/exceptions/RollbackRequiredException.html" title="class in org.deidentifier.arx.exceptions">org.deidentifier.arx.exceptions.RollbackRequiredException</a> extends java.lang.Exception implements Serializable</h3>
  2240. <dl class="nameValue">
  2241. <dt>serialVersionUID:</dt>
  2242. <dd>-7587463020191596936L</dd>
  2243. </dl>
  2244. </li>
  2245. </ul>
  2246. </li>
  2247. <li class="blockList">
  2248. <h2 title="Package">Package&nbsp;org.deidentifier.arx.io</h2>
  2249. <ul class="blockList">
  2250. <li class="blockList"><a name="org.deidentifier.arx.io.CSVSyntax">
  2251. <!-- -->
  2252. </a>
  2253. <h3>Class <a href="org/deidentifier/arx/io/CSVSyntax.html" title="class in org.deidentifier.arx.io">org.deidentifier.arx.io.CSVSyntax</a> extends java.lang.Object implements Serializable</h3>
  2254. <dl class="nameValue">
  2255. <dt>serialVersionUID:</dt>
  2256. <dd>-3978502790060734961L</dd>
  2257. </dl>
  2258. <ul class="blockList">
  2259. <li class="blockList"><a name="serializedForm">
  2260. <!-- -->
  2261. </a>
  2262. <h3>Serialized Fields</h3>
  2263. <ul class="blockList">
  2264. <li class="blockList">
  2265. <h4>delimiter</h4>
  2266. <pre>char delimiter</pre>
  2267. <div class="block">The delimiter.</div>
  2268. </li>
  2269. <li class="blockList">
  2270. <h4>quote</h4>
  2271. <pre>char quote</pre>
  2272. <div class="block">The quote.</div>
  2273. </li>
  2274. <li class="blockList">
  2275. <h4>escape</h4>
  2276. <pre>char escape</pre>
  2277. <div class="block">The escape.</div>
  2278. </li>
  2279. <li class="blockListLast">
  2280. <h4>linebreak</h4>
  2281. <pre>char[] linebreak</pre>
  2282. <div class="block">The linebreak.</div>
  2283. </li>
  2284. </ul>
  2285. </li>
  2286. </ul>
  2287. </li>
  2288. </ul>
  2289. </li>
  2290. <li class="blockList">
  2291. <h2 title="Package">Package&nbsp;org.deidentifier.arx.metric</h2>
  2292. <ul class="blockList">
  2293. <li class="blockList"><a name="org.deidentifier.arx.metric.InformationLoss">
  2294. <!-- -->
  2295. </a>
  2296. <h3>Class <a href="org/deidentifier/arx/metric/InformationLoss.html" title="class in org.deidentifier.arx.metric">org.deidentifier.arx.metric.InformationLoss</a> extends java.lang.Object implements Serializable</h3>
  2297. <dl class="nameValue">
  2298. <dt>serialVersionUID:</dt>
  2299. <dd>-5347658129539223333L</dd>
  2300. </dl>
  2301. <ul class="blockList">
  2302. <li class="blockList"><a name="serializedForm">
  2303. <!-- -->
  2304. </a>
  2305. <h3>Serialized Fields</h3>
  2306. <ul class="blockList">
  2307. <li class="blockListLast">
  2308. <h4>metadata</h4>
  2309. <pre>java.util.List&lt;E&gt; metadata</pre>
  2310. <div class="block">Metadata</div>
  2311. </li>
  2312. </ul>
  2313. </li>
  2314. </ul>
  2315. </li>
  2316. <li class="blockList"><a name="org.deidentifier.arx.metric.Metric">
  2317. <!-- -->
  2318. </a>
  2319. <h3>Class <a href="org/deidentifier/arx/metric/Metric.html" title="class in org.deidentifier.arx.metric">org.deidentifier.arx.metric.Metric</a> extends java.lang.Object implements Serializable</h3>
  2320. <dl class="nameValue">
  2321. <dt>serialVersionUID:</dt>
  2322. <dd>-2657745103125430229L</dd>
  2323. </dl>
  2324. <ul class="blockList">
  2325. <li class="blockList"><a name="serializedForm">
  2326. <!-- -->
  2327. </a>
  2328. <h3>Serialized Fields</h3>
  2329. <ul class="blockList">
  2330. <li class="blockList">
  2331. <h4>independent</h4>
  2332. <pre>boolean independent</pre>
  2333. <div class="block">Is the metric independent?.</div>
  2334. </li>
  2335. <li class="blockList">
  2336. <h4>monotonicWithGeneralization</h4>
  2337. <pre>java.lang.Boolean monotonicWithGeneralization</pre>
  2338. <div class="block">Is the metric monotonic with generalization?.</div>
  2339. </li>
  2340. <li class="blockList">
  2341. <h4>monotonic</h4>
  2342. <pre>boolean monotonic</pre>
  2343. <div class="block">Is the metric monotonic with suppression?.</div>
  2344. </li>
  2345. <li class="blockList">
  2346. <h4>gFactor</h4>
  2347. <pre>java.lang.Double gFactor</pre>
  2348. <div class="block">Configuration factor.</div>
  2349. </li>
  2350. <li class="blockList">
  2351. <h4>gsFactor</h4>
  2352. <pre>java.lang.Double gsFactor</pre>
  2353. <div class="block">Configuration factor.</div>
  2354. </li>
  2355. <li class="blockListLast">
  2356. <h4>sFactor</h4>
  2357. <pre>java.lang.Double sFactor</pre>
  2358. <div class="block">Configuration factor.</div>
  2359. </li>
  2360. </ul>
  2361. </li>
  2362. </ul>
  2363. </li>
  2364. <li class="blockList"><a name="org.deidentifier.arx.metric.MetricAECS">
  2365. <!-- -->
  2366. </a>
  2367. <h3>Class <a href="org/deidentifier/arx/metric/MetricAECS.html" title="class in org.deidentifier.arx.metric">org.deidentifier.arx.metric.MetricAECS</a> extends <a href="org/deidentifier/arx/metric/MetricDefault.html" title="class in org.deidentifier.arx.metric">MetricDefault</a> implements Serializable</h3>
  2368. <dl class="nameValue">
  2369. <dt>serialVersionUID:</dt>
  2370. <dd>-532478849890959974L</dd>
  2371. </dl>
  2372. <ul class="blockList">
  2373. <li class="blockList"><a name="serializedForm">
  2374. <!-- -->
  2375. </a>
  2376. <h3>Serialized Fields</h3>
  2377. <ul class="blockList">
  2378. <li class="blockListLast">
  2379. <h4>rowCount</h4>
  2380. <pre>double rowCount</pre>
  2381. <div class="block">Number of tuples.</div>
  2382. </li>
  2383. </ul>
  2384. </li>
  2385. </ul>
  2386. </li>
  2387. <li class="blockList"><a name="org.deidentifier.arx.metric.MetricConfiguration">
  2388. <!-- -->
  2389. </a>
  2390. <h3>Class <a href="org/deidentifier/arx/metric/MetricConfiguration.html" title="class in org.deidentifier.arx.metric">org.deidentifier.arx.metric.MetricConfiguration</a> extends java.lang.Object implements Serializable</h3>
  2391. <dl class="nameValue">
  2392. <dt>serialVersionUID:</dt>
  2393. <dd>871854276489749340L</dd>
  2394. </dl>
  2395. <ul class="blockList">
  2396. <li class="blockList"><a name="serializedForm">
  2397. <!-- -->
  2398. </a>
  2399. <h3>Serialized Fields</h3>
  2400. <ul class="blockList">
  2401. <li class="blockList">
  2402. <h4>monotonic</h4>
  2403. <pre>boolean monotonic</pre>
  2404. <div class="block">Monotonic variant.</div>
  2405. </li>
  2406. <li class="blockList">
  2407. <h4>gsFactor</h4>
  2408. <pre>double gsFactor</pre>
  2409. <div class="block">Coding model.</div>
  2410. </li>
  2411. <li class="blockList">
  2412. <h4>precomputed</h4>
  2413. <pre>boolean precomputed</pre>
  2414. <div class="block">Precomputed.</div>
  2415. </li>
  2416. <li class="blockList">
  2417. <h4>precomputationThreshold</h4>
  2418. <pre>double precomputationThreshold</pre>
  2419. <div class="block">Precomputation threshold.</div>
  2420. </li>
  2421. <li class="blockListLast">
  2422. <h4>aggregateFunction</h4>
  2423. <pre><a href="org/deidentifier/arx/metric/Metric.AggregateFunction.html" title="enum in org.deidentifier.arx.metric">Metric.AggregateFunction</a> aggregateFunction</pre>
  2424. <div class="block">Aggregate function.</div>
  2425. </li>
  2426. </ul>
  2427. </li>
  2428. </ul>
  2429. </li>
  2430. <li class="blockList"><a name="org.deidentifier.arx.metric.MetricDefault">
  2431. <!-- -->
  2432. </a>
  2433. <h3>Class <a href="org/deidentifier/arx/metric/MetricDefault.html" title="class in org.deidentifier.arx.metric">org.deidentifier.arx.metric.MetricDefault</a> extends <a href="org/deidentifier/arx/metric/Metric.html" title="class in org.deidentifier.arx.metric">Metric</a>&lt;org.deidentifier.arx.metric.InformationLossDefault&gt; implements Serializable</h3>
  2434. <dl class="nameValue">
  2435. <dt>serialVersionUID:</dt>
  2436. <dd>2672819203235170632L</dd>
  2437. </dl>
  2438. </li>
  2439. <li class="blockList"><a name="org.deidentifier.arx.metric.MetricDescription">
  2440. <!-- -->
  2441. </a>
  2442. <h3>Class <a href="org/deidentifier/arx/metric/MetricDescription.html" title="class in org.deidentifier.arx.metric">org.deidentifier.arx.metric.MetricDescription</a> extends java.lang.Object implements Serializable</h3>
  2443. <dl class="nameValue">
  2444. <dt>serialVersionUID:</dt>
  2445. <dd>-2774981286637344244L</dd>
  2446. </dl>
  2447. <ul class="blockList">
  2448. <li class="blockList"><a name="serializedForm">
  2449. <!-- -->
  2450. </a>
  2451. <h3>Serialized Fields</h3>
  2452. <ul class="blockList">
  2453. <li class="blockList">
  2454. <h4>name</h4>
  2455. <pre>java.lang.String name</pre>
  2456. <div class="block">Name.</div>
  2457. </li>
  2458. <li class="blockList">
  2459. <h4>monotonicVariantSupported</h4>
  2460. <pre>boolean monotonicVariantSupported</pre>
  2461. <div class="block">Monotonic variant supported.</div>
  2462. </li>
  2463. <li class="blockList">
  2464. <h4>attributeWeightsSupported</h4>
  2465. <pre>boolean attributeWeightsSupported</pre>
  2466. <div class="block">Attribute weights supported.</div>
  2467. </li>
  2468. <li class="blockList">
  2469. <h4>configurableCodingModelSupported</h4>
  2470. <pre>boolean configurableCodingModelSupported</pre>
  2471. <div class="block">Configurable coding model supported.</div>
  2472. </li>
  2473. <li class="blockList">
  2474. <h4>precomputationSupported</h4>
  2475. <pre>boolean precomputationSupported</pre>
  2476. <div class="block">Pre-computation supported.</div>
  2477. </li>
  2478. <li class="blockList">
  2479. <h4>aggregateFunctionSupported</h4>
  2480. <pre>boolean aggregateFunctionSupported</pre>
  2481. <div class="block">Aggregate functions supported.</div>
  2482. </li>
  2483. <li class="blockListLast">
  2484. <h4>attackerModelSupported</h4>
  2485. <pre>boolean attackerModelSupported</pre>
  2486. <div class="block">Are different attacker models supported.</div>
  2487. </li>
  2488. </ul>
  2489. </li>
  2490. </ul>
  2491. </li>
  2492. <li class="blockList"><a name="org.deidentifier.arx.metric.MetricDM">
  2493. <!-- -->
  2494. </a>
  2495. <h3>Class <a href="org/deidentifier/arx/metric/MetricDM.html" title="class in org.deidentifier.arx.metric">org.deidentifier.arx.metric.MetricDM</a> extends <a href="org/deidentifier/arx/metric/MetricDefault.html" title="class in org.deidentifier.arx.metric">MetricDefault</a> implements Serializable</h3>
  2496. <dl class="nameValue">
  2497. <dt>serialVersionUID:</dt>
  2498. <dd>4886262855672670521L</dd>
  2499. </dl>
  2500. <ul class="blockList">
  2501. <li class="blockList"><a name="serializedForm">
  2502. <!-- -->
  2503. </a>
  2504. <h3>Serialized Fields</h3>
  2505. <ul class="blockList">
  2506. <li class="blockListLast">
  2507. <h4>rowCount</h4>
  2508. <pre>int rowCount</pre>
  2509. <div class="block">Number of tuples.</div>
  2510. </li>
  2511. </ul>
  2512. </li>
  2513. </ul>
  2514. </li>
  2515. <li class="blockList"><a name="org.deidentifier.arx.metric.MetricDMStar">
  2516. <!-- -->
  2517. </a>
  2518. <h3>Class <a href="org/deidentifier/arx/metric/MetricDMStar.html" title="class in org.deidentifier.arx.metric">org.deidentifier.arx.metric.MetricDMStar</a> extends <a href="org/deidentifier/arx/metric/MetricDefault.html" title="class in org.deidentifier.arx.metric">MetricDefault</a> implements Serializable</h3>
  2519. <dl class="nameValue">
  2520. <dt>serialVersionUID:</dt>
  2521. <dd>-3324788439890959974L</dd>
  2522. </dl>
  2523. <ul class="blockList">
  2524. <li class="blockList"><a name="serializedForm">
  2525. <!-- -->
  2526. </a>
  2527. <h3>Serialized Fields</h3>
  2528. <ul class="blockList">
  2529. <li class="blockListLast">
  2530. <h4>rowCount</h4>
  2531. <pre>double rowCount</pre>
  2532. <div class="block">Number of tuples.</div>
  2533. </li>
  2534. </ul>
  2535. </li>
  2536. </ul>
  2537. </li>
  2538. <li class="blockList"><a name="org.deidentifier.arx.metric.MetricEntropy">
  2539. <!-- -->
  2540. </a>
  2541. <h3>Class <a href="org/deidentifier/arx/metric/MetricEntropy.html" title="class in org.deidentifier.arx.metric">org.deidentifier.arx.metric.MetricEntropy</a> extends <a href="org/deidentifier/arx/metric/MetricDefault.html" title="class in org.deidentifier.arx.metric">MetricDefault</a> implements Serializable</h3>
  2542. <dl class="nameValue">
  2543. <dt>serialVersionUID:</dt>
  2544. <dd>-8618697919821588987L</dd>
  2545. </dl>
  2546. <ul class="blockList">
  2547. <li class="blockList"><a name="serializedForm">
  2548. <!-- -->
  2549. </a>
  2550. <h3>Serialized Fields</h3>
  2551. <ul class="blockList">
  2552. <li class="blockList">
  2553. <h4>cache</h4>
  2554. <pre>double[][] cache</pre>
  2555. <div class="block">Column -> Level -> Value.</div>
  2556. </li>
  2557. <li class="blockList">
  2558. <h4>cardinalities</h4>
  2559. <pre>int[][][] cardinalities</pre>
  2560. <div class="block">Column -> Id -> Level -> Count.</div>
  2561. </li>
  2562. <li class="blockListLast">
  2563. <h4>hierarchies</h4>
  2564. <pre>int[][][] hierarchies</pre>
  2565. <div class="block">Column -> Id -> Level -> Output.</div>
  2566. </li>
  2567. </ul>
  2568. </li>
  2569. </ul>
  2570. </li>
  2571. <li class="blockList"><a name="org.deidentifier.arx.metric.MetricHeight">
  2572. <!-- -->
  2573. </a>
  2574. <h3>Class <a href="org/deidentifier/arx/metric/MetricHeight.html" title="class in org.deidentifier.arx.metric">org.deidentifier.arx.metric.MetricHeight</a> extends <a href="org/deidentifier/arx/metric/MetricDefault.html" title="class in org.deidentifier.arx.metric">MetricDefault</a> implements Serializable</h3>
  2575. <dl class="nameValue">
  2576. <dt>serialVersionUID:</dt>
  2577. <dd>5911337622032778562L</dd>
  2578. </dl>
  2579. <ul class="blockList">
  2580. <li class="blockList"><a name="serializedForm">
  2581. <!-- -->
  2582. </a>
  2583. <h3>Serialized Fields</h3>
  2584. <ul class="blockList">
  2585. <li class="blockList">
  2586. <h4>minHeight</h4>
  2587. <pre>int minHeight</pre>
  2588. <div class="block">The minimum height.</div>
  2589. </li>
  2590. <li class="blockListLast">
  2591. <h4>maxHeight</h4>
  2592. <pre>int maxHeight</pre>
  2593. <div class="block">The maximum height.</div>
  2594. </li>
  2595. </ul>
  2596. </li>
  2597. </ul>
  2598. </li>
  2599. <li class="blockList"><a name="org.deidentifier.arx.metric.MetricNMEntropy">
  2600. <!-- -->
  2601. </a>
  2602. <h3>Class <a href="org/deidentifier/arx/metric/MetricNMEntropy.html" title="class in org.deidentifier.arx.metric">org.deidentifier.arx.metric.MetricNMEntropy</a> extends <a href="org/deidentifier/arx/metric/MetricEntropy.html" title="class in org.deidentifier.arx.metric">MetricEntropy</a> implements Serializable</h3>
  2603. <dl class="nameValue">
  2604. <dt>serialVersionUID:</dt>
  2605. <dd>5789738609326541247L</dd>
  2606. </dl>
  2607. </li>
  2608. <li class="blockList"><a name="org.deidentifier.arx.metric.MetricNMPrecision">
  2609. <!-- -->
  2610. </a>
  2611. <h3>Class <a href="org/deidentifier/arx/metric/MetricNMPrecision.html" title="class in org.deidentifier.arx.metric">org.deidentifier.arx.metric.MetricNMPrecision</a> extends <a href="org/deidentifier/arx/metric/MetricWeighted.html" title="class in org.deidentifier.arx.metric">MetricWeighted</a>&lt;org.deidentifier.arx.metric.InformationLossDefault&gt; implements Serializable</h3>
  2612. <dl class="nameValue">
  2613. <dt>serialVersionUID:</dt>
  2614. <dd>-218192738838711533L</dd>
  2615. </dl>
  2616. <ul class="blockList">
  2617. <li class="blockList"><a name="serializedForm">
  2618. <!-- -->
  2619. </a>
  2620. <h3>Serialized Fields</h3>
  2621. <ul class="blockList">
  2622. <li class="blockList">
  2623. <h4>height</h4>
  2624. <pre>int[] height</pre>
  2625. <div class="block">Height.</div>
  2626. </li>
  2627. <li class="blockListLast">
  2628. <h4>cells</h4>
  2629. <pre>double cells</pre>
  2630. <div class="block">Number of cells.</div>
  2631. </li>
  2632. </ul>
  2633. </li>
  2634. </ul>
  2635. </li>
  2636. <li class="blockList"><a name="org.deidentifier.arx.metric.MetricPrecision">
  2637. <!-- -->
  2638. </a>
  2639. <h3>Class <a href="org/deidentifier/arx/metric/MetricPrecision.html" title="class in org.deidentifier.arx.metric">org.deidentifier.arx.metric.MetricPrecision</a> extends <a href="org/deidentifier/arx/metric/MetricWeighted.html" title="class in org.deidentifier.arx.metric">MetricWeighted</a>&lt;org.deidentifier.arx.metric.InformationLossDefault&gt; implements Serializable</h3>
  2640. <dl class="nameValue">
  2641. <dt>serialVersionUID:</dt>
  2642. <dd>-7612335677779934529L</dd>
  2643. </dl>
  2644. <ul class="blockList">
  2645. <li class="blockList"><a name="serializedForm">
  2646. <!-- -->
  2647. </a>
  2648. <h3>Serialized Fields</h3>
  2649. <ul class="blockList">
  2650. <li class="blockListLast">
  2651. <h4>maxLevels</h4>
  2652. <pre>int[] maxLevels</pre>
  2653. <div class="block">Height.</div>
  2654. </li>
  2655. </ul>
  2656. </li>
  2657. </ul>
  2658. </li>
  2659. <li class="blockList"><a name="org.deidentifier.arx.metric.MetricStatic">
  2660. <!-- -->
  2661. </a>
  2662. <h3>Class <a href="org/deidentifier/arx/metric/MetricStatic.html" title="class in org.deidentifier.arx.metric">org.deidentifier.arx.metric.MetricStatic</a> extends <a href="org/deidentifier/arx/metric/MetricWeighted.html" title="class in org.deidentifier.arx.metric">MetricWeighted</a>&lt;org.deidentifier.arx.metric.InformationLossDefault&gt; implements Serializable</h3>
  2663. <dl class="nameValue">
  2664. <dt>serialVersionUID:</dt>
  2665. <dd>3778891174824606177L</dd>
  2666. </dl>
  2667. <ul class="blockList">
  2668. <li class="blockList"><a name="serializedForm">
  2669. <!-- -->
  2670. </a>
  2671. <h3>Serialized Fields</h3>
  2672. <ul class="blockList">
  2673. <li class="blockList">
  2674. <h4>_infoloss</h4>
  2675. <pre>java.util.Map&lt;K,V&gt; _infoloss</pre>
  2676. <div class="block">The user defined information loss per level, indexed by column name.</div>
  2677. </li>
  2678. <li class="blockListLast">
  2679. <h4>infoloss</h4>
  2680. <pre>double[][] infoloss</pre>
  2681. <div class="block">The pre-calculated information loss.</div>
  2682. </li>
  2683. </ul>
  2684. </li>
  2685. </ul>
  2686. </li>
  2687. <li class="blockList"><a name="org.deidentifier.arx.metric.MetricWeighted">
  2688. <!-- -->
  2689. </a>
  2690. <h3>Class <a href="org/deidentifier/arx/metric/MetricWeighted.html" title="class in org.deidentifier.arx.metric">org.deidentifier.arx.metric.MetricWeighted</a> extends <a href="org/deidentifier/arx/metric/Metric.html" title="class in org.deidentifier.arx.metric">Metric</a>&lt;<a href="org/deidentifier/arx/metric/MetricWeighted.html" title="type parameter in MetricWeighted">T</a> extends <a href="org/deidentifier/arx/metric/InformationLoss.html" title="class in org.deidentifier.arx.metric">InformationLoss</a>&lt;?&gt;&gt; implements Serializable</h3>
  2691. <dl class="nameValue">
  2692. <dt>serialVersionUID:</dt>
  2693. <dd>6508220940790010968L</dd>
  2694. </dl>
  2695. <ul class="blockList">
  2696. <li class="blockList"><a name="serializedForm">
  2697. <!-- -->
  2698. </a>
  2699. <h3>Serialized Fields</h3>
  2700. <ul class="blockList">
  2701. <li class="blockListLast">
  2702. <h4>weights</h4>
  2703. <pre>double[] weights</pre>
  2704. <div class="block">The weights.</div>
  2705. </li>
  2706. </ul>
  2707. </li>
  2708. </ul>
  2709. </li>
  2710. </ul>
  2711. </li>
  2712. <li class="blockList">
  2713. <h2 title="Package">Package&nbsp;org.deidentifier.arx.metric.v2</h2>
  2714. <ul class="blockList">
  2715. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.AbstractILMultiDimensional">
  2716. <!-- -->
  2717. </a>
  2718. <h3>Class <a href="org/deidentifier/arx/metric/v2/AbstractILMultiDimensional.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.AbstractILMultiDimensional</a> extends <a href="org/deidentifier/arx/metric/InformationLoss.html" title="class in org.deidentifier.arx.metric">InformationLoss</a>&lt;double[]&gt; implements Serializable</h3>
  2719. <dl class="nameValue">
  2720. <dt>serialVersionUID:</dt>
  2721. <dd>4600789773980813693L</dd>
  2722. </dl>
  2723. <ul class="blockList">
  2724. <li class="blockList"><a name="serializedForm">
  2725. <!-- -->
  2726. </a>
  2727. <h3>Serialized Fields</h3>
  2728. <ul class="blockList">
  2729. <li class="blockList">
  2730. <h4>values</h4>
  2731. <pre>double[] values</pre>
  2732. <div class="block">Values.</div>
  2733. </li>
  2734. <li class="blockListLast">
  2735. <h4>weights</h4>
  2736. <pre>double[] weights</pre>
  2737. <div class="block">Weights.</div>
  2738. </li>
  2739. </ul>
  2740. </li>
  2741. </ul>
  2742. </li>
  2743. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.AbstractILMultiDimensionalReduced">
  2744. <!-- -->
  2745. </a>
  2746. <h3>Class <a href="org/deidentifier/arx/metric/v2/AbstractILMultiDimensionalReduced.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.AbstractILMultiDimensionalReduced</a> extends <a href="org/deidentifier/arx/metric/v2/AbstractILMultiDimensional.html" title="class in org.deidentifier.arx.metric.v2">AbstractILMultiDimensional</a> implements Serializable</h3>
  2747. <dl class="nameValue">
  2748. <dt>serialVersionUID:</dt>
  2749. <dd>7228258212711188233L</dd>
  2750. </dl>
  2751. <ul class="blockList">
  2752. <li class="blockList"><a name="serializedForm">
  2753. <!-- -->
  2754. </a>
  2755. <h3>Serialized Fields</h3>
  2756. <ul class="blockList">
  2757. <li class="blockListLast">
  2758. <h4>aggregate</h4>
  2759. <pre>double aggregate</pre>
  2760. <div class="block">Aggregate.</div>
  2761. </li>
  2762. </ul>
  2763. </li>
  2764. </ul>
  2765. </li>
  2766. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.AbstractMetricMultiDimensional">
  2767. <!-- -->
  2768. </a>
  2769. <h3>Class <a href="org/deidentifier/arx/metric/v2/AbstractMetricMultiDimensional.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.AbstractMetricMultiDimensional</a> extends <a href="org/deidentifier/arx/metric/Metric.html" title="class in org.deidentifier.arx.metric">Metric</a>&lt;<a href="org/deidentifier/arx/metric/v2/AbstractILMultiDimensional.html" title="class in org.deidentifier.arx.metric.v2">AbstractILMultiDimensional</a>&gt; implements Serializable</h3>
  2770. <dl class="nameValue">
  2771. <dt>serialVersionUID:</dt>
  2772. <dd>3909752748519119689L</dd>
  2773. </dl>
  2774. <ul class="blockList">
  2775. <li class="blockList"><a name="serializedForm">
  2776. <!-- -->
  2777. </a>
  2778. <h3>Serialized Fields</h3>
  2779. <ul class="blockList">
  2780. <li class="blockList">
  2781. <h4>weights</h4>
  2782. <pre>double[] weights</pre>
  2783. <div class="block">The weights.</div>
  2784. </li>
  2785. <li class="blockList">
  2786. <h4>dimensions</h4>
  2787. <pre>int dimensions</pre>
  2788. <div class="block">Number of dimensions.</div>
  2789. </li>
  2790. <li class="blockList">
  2791. <h4>dimensionsGeneralized</h4>
  2792. <pre>int dimensionsGeneralized</pre>
  2793. <div class="block">Number of dimensions with generalization</div>
  2794. </li>
  2795. <li class="blockList">
  2796. <h4>dimensionsAggregated</h4>
  2797. <pre>int dimensionsAggregated</pre>
  2798. <div class="block">Number of dimensions with aggregation</div>
  2799. </li>
  2800. <li class="blockList">
  2801. <h4>min</h4>
  2802. <pre>double[] min</pre>
  2803. <div class="block">Min.</div>
  2804. </li>
  2805. <li class="blockList">
  2806. <h4>max</h4>
  2807. <pre>double[] max</pre>
  2808. <div class="block">Max.</div>
  2809. </li>
  2810. <li class="blockList">
  2811. <h4>function</h4>
  2812. <pre><a href="org/deidentifier/arx/metric/Metric.AggregateFunction.html" title="enum in org.deidentifier.arx.metric">Metric.AggregateFunction</a> function</pre>
  2813. <div class="block">The aggregate function.</div>
  2814. </li>
  2815. <li class="blockList">
  2816. <h4>microaggregationFunctions</h4>
  2817. <pre>org.deidentifier.arx.framework.check.distribution.DistributionAggregateFunction[] microaggregationFunctions</pre>
  2818. <div class="block">The microaggregation functions.</div>
  2819. </li>
  2820. <li class="blockList">
  2821. <h4>microaggregationStartIndex</h4>
  2822. <pre>int microaggregationStartIndex</pre>
  2823. <div class="block">The start index of the attributes with microaggregation in the data array</div>
  2824. </li>
  2825. <li class="blockList">
  2826. <h4>microaggregationUseMeanSquaredError</h4>
  2827. <pre>boolean microaggregationUseMeanSquaredError</pre>
  2828. <div class="block">Should the mean squared error be used</div>
  2829. </li>
  2830. <li class="blockListLast">
  2831. <h4>microaggregationHeader</h4>
  2832. <pre>java.lang.String[] microaggregationHeader</pre>
  2833. <div class="block">Header of the microaggregated data subset</div>
  2834. </li>
  2835. </ul>
  2836. </li>
  2837. </ul>
  2838. </li>
  2839. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.AbstractMetricMultiDimensionalPotentiallyPrecomputed">
  2840. <!-- -->
  2841. </a>
  2842. <h3>Class <a href="org/deidentifier/arx/metric/v2/AbstractMetricMultiDimensionalPotentiallyPrecomputed.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.AbstractMetricMultiDimensionalPotentiallyPrecomputed</a> extends <a href="org/deidentifier/arx/metric/v2/AbstractMetricMultiDimensional.html" title="class in org.deidentifier.arx.metric.v2">AbstractMetricMultiDimensional</a> implements Serializable</h3>
  2843. <dl class="nameValue">
  2844. <dt>serialVersionUID:</dt>
  2845. <dd>7278544218893194559L</dd>
  2846. </dl>
  2847. <ul class="blockList">
  2848. <li class="blockList"><a name="serializedForm">
  2849. <!-- -->
  2850. </a>
  2851. <h3>Serialized Fields</h3>
  2852. <ul class="blockList">
  2853. <li class="blockList">
  2854. <h4>precomputed</h4>
  2855. <pre>boolean precomputed</pre>
  2856. <div class="block">Is this instance precomputed.</div>
  2857. </li>
  2858. <li class="blockList">
  2859. <h4>threshold</h4>
  2860. <pre>double threshold</pre>
  2861. <div class="block">The threshold.</div>
  2862. </li>
  2863. <li class="blockList">
  2864. <h4>defaultMetric</h4>
  2865. <pre><a href="org/deidentifier/arx/metric/v2/AbstractMetricMultiDimensional.html" title="class in org.deidentifier.arx.metric.v2">AbstractMetricMultiDimensional</a> defaultMetric</pre>
  2866. <div class="block">The default metric.</div>
  2867. </li>
  2868. <li class="blockListLast">
  2869. <h4>precomputedMetric</h4>
  2870. <pre><a href="org/deidentifier/arx/metric/v2/AbstractMetricMultiDimensional.html" title="class in org.deidentifier.arx.metric.v2">AbstractMetricMultiDimensional</a> precomputedMetric</pre>
  2871. <div class="block">The precomputed variant.</div>
  2872. </li>
  2873. </ul>
  2874. </li>
  2875. </ul>
  2876. </li>
  2877. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.AbstractMetricSingleDimensional">
  2878. <!-- -->
  2879. </a>
  2880. <h3>Class <a href="org/deidentifier/arx/metric/v2/AbstractMetricSingleDimensional.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.AbstractMetricSingleDimensional</a> extends <a href="org/deidentifier/arx/metric/Metric.html" title="class in org.deidentifier.arx.metric">Metric</a>&lt;<a href="org/deidentifier/arx/metric/v2/ILSingleDimensional.html" title="class in org.deidentifier.arx.metric.v2">ILSingleDimensional</a>&gt; implements Serializable</h3>
  2881. <dl class="nameValue">
  2882. <dt>serialVersionUID:</dt>
  2883. <dd>-1082954137578580790L</dd>
  2884. </dl>
  2885. <ul class="blockList">
  2886. <li class="blockList"><a name="serializedForm">
  2887. <!-- -->
  2888. </a>
  2889. <h3>Serialized Fields</h3>
  2890. <ul class="blockList">
  2891. <li class="blockList">
  2892. <h4>tuples</h4>
  2893. <pre>java.lang.Double tuples</pre>
  2894. <div class="block">Row count.</div>
  2895. </li>
  2896. <li class="blockList">
  2897. <h4>dimensions</h4>
  2898. <pre>int dimensions</pre>
  2899. <div class="block">Number of dimensions.</div>
  2900. </li>
  2901. <li class="blockList">
  2902. <h4>dimensionsGeneralized</h4>
  2903. <pre>int dimensionsGeneralized</pre>
  2904. <div class="block">Number of dimensions with generalization</div>
  2905. </li>
  2906. <li class="blockList">
  2907. <h4>dimensionsAggregated</h4>
  2908. <pre>int dimensionsAggregated</pre>
  2909. <div class="block">Number of dimensions with aggregation</div>
  2910. </li>
  2911. <li class="blockList">
  2912. <h4>microaggregationFunctions</h4>
  2913. <pre>org.deidentifier.arx.framework.check.distribution.DistributionAggregateFunction[] microaggregationFunctions</pre>
  2914. <div class="block">The microaggregation functions.</div>
  2915. </li>
  2916. <li class="blockList">
  2917. <h4>microaggregationStartIndex</h4>
  2918. <pre>int microaggregationStartIndex</pre>
  2919. <div class="block">The start index of the attributes with microaggregation in the data array (dataAnalyzed)</div>
  2920. </li>
  2921. <li class="blockListLast">
  2922. <h4>microaggregationDomainSizes</h4>
  2923. <pre>int[] microaggregationDomainSizes</pre>
  2924. <div class="block">Domain size for each microaggregated attribute</div>
  2925. </li>
  2926. </ul>
  2927. </li>
  2928. </ul>
  2929. </li>
  2930. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.Cardinalities">
  2931. <!-- -->
  2932. </a>
  2933. <h3>Class <a href="org/deidentifier/arx/metric/v2/Cardinalities.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.Cardinalities</a> extends java.lang.Object implements Serializable</h3>
  2934. <dl class="nameValue">
  2935. <dt>serialVersionUID:</dt>
  2936. <dd>6164578830669365810L</dd>
  2937. </dl>
  2938. <ul class="blockList">
  2939. <li class="blockList"><a name="serializedForm">
  2940. <!-- -->
  2941. </a>
  2942. <h3>Serialized Fields</h3>
  2943. <ul class="blockList">
  2944. <li class="blockListLast">
  2945. <h4>cardinalities</h4>
  2946. <pre>int[][][] cardinalities</pre>
  2947. <div class="block">Cardinalities: Column -> Id -> Level -> Count.</div>
  2948. </li>
  2949. </ul>
  2950. </li>
  2951. </ul>
  2952. </li>
  2953. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.DomainShareInterval">
  2954. <!-- -->
  2955. </a>
  2956. <h3>Class <a href="org/deidentifier/arx/metric/v2/DomainShareInterval.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.DomainShareInterval</a> extends <a href="org/deidentifier/arx/aggregates/HierarchyBuilderIntervalBased.html" title="class in org.deidentifier.arx.aggregates">HierarchyBuilderIntervalBased</a>&lt;<a href="org/deidentifier/arx/metric/v2/DomainShareInterval.html" title="type parameter in DomainShareInterval">T</a>&gt; implements Serializable</h3>
  2957. <dl class="nameValue">
  2958. <dt>serialVersionUID:</dt>
  2959. <dd>3430961217394466615L</dd>
  2960. </dl>
  2961. <ul class="blockList">
  2962. <li class="blockList"><a name="serialized_methods">
  2963. <!-- -->
  2964. </a>
  2965. <h3>Serialization Methods</h3>
  2966. <ul class="blockList">
  2967. <li class="blockList"><a name="readObject(java.io.ObjectInputStream)">
  2968. <!-- -->
  2969. </a>
  2970. <h4>readObject</h4>
  2971. <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;aInputStream)
  2972. throws java.lang.ClassNotFoundException,
  2973. java.io.IOException</pre>
  2974. <div class="block">De-serialization.</div>
  2975. <dl><dt><span class="strong">Throws:</span></dt>
  2976. <dd><code>java.lang.ClassNotFoundException</code></dd>
  2977. <dd><code>java.io.IOException</code></dd></dl>
  2978. </li>
  2979. <li class="blockListLast"><a name="writeObject(java.io.ObjectOutputStream)">
  2980. <!-- -->
  2981. </a>
  2982. <h4>writeObject</h4>
  2983. <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;aOutputStream)
  2984. throws java.io.IOException</pre>
  2985. <div class="block">Serialization.</div>
  2986. <dl><dt><span class="strong">Throws:</span></dt>
  2987. <dd><code>java.io.IOException</code></dd></dl>
  2988. </li>
  2989. </ul>
  2990. </li>
  2991. <li class="blockList"><a name="serializedForm">
  2992. <!-- -->
  2993. </a>
  2994. <h3>Serialized Fields</h3>
  2995. <ul class="blockList">
  2996. <li class="blockList">
  2997. <h4>domainSize</h4>
  2998. <pre>double domainSize</pre>
  2999. <div class="block">The domain size.</div>
  3000. </li>
  3001. <li class="blockList">
  3002. <h4>dataType</h4>
  3003. <pre><a href="org/deidentifier/arx/DataType.DataTypeWithRatioScale.html" title="interface in org.deidentifier.arx">DataType.DataTypeWithRatioScale</a>&lt;<a href="org/deidentifier/arx/DataType.DataTypeWithRatioScale.html" title="type parameter in DataType.DataTypeWithRatioScale">T</a>&gt; dataType</pre>
  3004. <div class="block">Data type.</div>
  3005. </li>
  3006. <li class="blockListLast">
  3007. <h4>shares</h4>
  3008. <pre>double[] shares</pre>
  3009. <div class="block">One share per attribute.</div>
  3010. </li>
  3011. </ul>
  3012. </li>
  3013. </ul>
  3014. </li>
  3015. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.DomainShareMaterialized">
  3016. <!-- -->
  3017. </a>
  3018. <h3>Class <a href="org/deidentifier/arx/metric/v2/DomainShareMaterialized.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.DomainShareMaterialized</a> extends java.lang.Object implements Serializable</h3>
  3019. <dl class="nameValue">
  3020. <dt>serialVersionUID:</dt>
  3021. <dd>-8981924690395236648L</dd>
  3022. </dl>
  3023. <ul class="blockList">
  3024. <li class="blockList"><a name="serialized_methods">
  3025. <!-- -->
  3026. </a>
  3027. <h3>Serialization Methods</h3>
  3028. <ul class="blockList">
  3029. <li class="blockList"><a name="readObject(java.io.ObjectInputStream)">
  3030. <!-- -->
  3031. </a>
  3032. <h4>readObject</h4>
  3033. <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;aInputStream)
  3034. throws java.lang.ClassNotFoundException,
  3035. java.io.IOException</pre>
  3036. <div class="block">De-serialization.</div>
  3037. <dl><dt><span class="strong">Throws:</span></dt>
  3038. <dd><code>java.lang.ClassNotFoundException</code></dd>
  3039. <dd><code>java.io.IOException</code></dd></dl>
  3040. </li>
  3041. <li class="blockListLast"><a name="writeObject(java.io.ObjectOutputStream)">
  3042. <!-- -->
  3043. </a>
  3044. <h4>writeObject</h4>
  3045. <pre>private&nbsp;void&nbsp;writeObject(java.io.ObjectOutputStream&nbsp;aOutputStream)
  3046. throws java.io.IOException</pre>
  3047. <div class="block">Serialization.</div>
  3048. <dl><dt><span class="strong">Throws:</span></dt>
  3049. <dd><code>java.io.IOException</code></dd></dl>
  3050. </li>
  3051. </ul>
  3052. </li>
  3053. <li class="blockList"><a name="serializedForm">
  3054. <!-- -->
  3055. </a>
  3056. <h3>Serialized Fields</h3>
  3057. <ul class="blockList">
  3058. <li class="blockList">
  3059. <h4>size</h4>
  3060. <pre>double size</pre>
  3061. <div class="block">The size of the domain.</div>
  3062. </li>
  3063. <li class="blockListLast">
  3064. <h4>shares</h4>
  3065. <pre>double[] shares</pre>
  3066. <div class="block">One share per attribute.</div>
  3067. </li>
  3068. </ul>
  3069. </li>
  3070. </ul>
  3071. </li>
  3072. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.DomainShareRedaction">
  3073. <!-- -->
  3074. </a>
  3075. <h3>Class <a href="org/deidentifier/arx/metric/v2/DomainShareRedaction.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.DomainShareRedaction</a> extends java.lang.Object implements Serializable</h3>
  3076. <dl class="nameValue">
  3077. <dt>serialVersionUID:</dt>
  3078. <dd>2015677962393713964L</dd>
  3079. </dl>
  3080. <ul class="blockList">
  3081. <li class="blockList"><a name="serializedForm">
  3082. <!-- -->
  3083. </a>
  3084. <h3>Serialized Fields</h3>
  3085. <ul class="blockList">
  3086. <li class="blockList">
  3087. <h4>maxValueLength</h4>
  3088. <pre>double maxValueLength</pre>
  3089. <div class="block">Meta-data about the nature of the domain of the attribute.</div>
  3090. </li>
  3091. <li class="blockList">
  3092. <h4>domainSize</h4>
  3093. <pre>double domainSize</pre>
  3094. <div class="block">Meta-data about the nature of the domain of the attribute.</div>
  3095. </li>
  3096. <li class="blockList">
  3097. <h4>alphabetSize</h4>
  3098. <pre>double alphabetSize</pre>
  3099. <div class="block">Meta-data about the nature of the domain of the attribute.</div>
  3100. </li>
  3101. <li class="blockList">
  3102. <h4>minInput</h4>
  3103. <pre>double minInput</pre>
  3104. <div class="block">For interpolating linearly from input to output range.</div>
  3105. </li>
  3106. <li class="blockList">
  3107. <h4>maxInput</h4>
  3108. <pre>double maxInput</pre>
  3109. <div class="block">For interpolating linearly from input to output range.</div>
  3110. </li>
  3111. <li class="blockList">
  3112. <h4>minOutput</h4>
  3113. <pre>double minOutput</pre>
  3114. <div class="block">For interpolating linearly from input to output range.</div>
  3115. </li>
  3116. <li class="blockListLast">
  3117. <h4>maxOutput</h4>
  3118. <pre>double maxOutput</pre>
  3119. <div class="block">For interpolating linearly from input to output range.</div>
  3120. </li>
  3121. </ul>
  3122. </li>
  3123. </ul>
  3124. </li>
  3125. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.ILMultiDimensionalArithmeticMean">
  3126. <!-- -->
  3127. </a>
  3128. <h3>Class <a href="org/deidentifier/arx/metric/v2/ILMultiDimensionalArithmeticMean.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.ILMultiDimensionalArithmeticMean</a> extends <a href="org/deidentifier/arx/metric/v2/AbstractILMultiDimensionalReduced.html" title="class in org.deidentifier.arx.metric.v2">AbstractILMultiDimensionalReduced</a> implements Serializable</h3>
  3129. <dl class="nameValue">
  3130. <dt>serialVersionUID:</dt>
  3131. <dd>5142553922311764185L</dd>
  3132. </dl>
  3133. </li>
  3134. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.ILMultiDimensionalGeometricMean">
  3135. <!-- -->
  3136. </a>
  3137. <h3>Class <a href="org/deidentifier/arx/metric/v2/ILMultiDimensionalGeometricMean.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.ILMultiDimensionalGeometricMean</a> extends <a href="org/deidentifier/arx/metric/v2/AbstractILMultiDimensionalReduced.html" title="class in org.deidentifier.arx.metric.v2">AbstractILMultiDimensionalReduced</a> implements Serializable</h3>
  3138. <dl class="nameValue">
  3139. <dt>serialVersionUID:</dt>
  3140. <dd>621501985571033348L</dd>
  3141. </dl>
  3142. </li>
  3143. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.ILMultiDimensionalMax">
  3144. <!-- -->
  3145. </a>
  3146. <h3>Class <a href="org/deidentifier/arx/metric/v2/ILMultiDimensionalMax.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.ILMultiDimensionalMax</a> extends <a href="org/deidentifier/arx/metric/v2/AbstractILMultiDimensionalReduced.html" title="class in org.deidentifier.arx.metric.v2">AbstractILMultiDimensionalReduced</a> implements Serializable</h3>
  3147. <dl class="nameValue">
  3148. <dt>serialVersionUID:</dt>
  3149. <dd>-3373577899437514858L</dd>
  3150. </dl>
  3151. </li>
  3152. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.ILMultiDimensionalRank">
  3153. <!-- -->
  3154. </a>
  3155. <h3>Class <a href="org/deidentifier/arx/metric/v2/ILMultiDimensionalRank.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.ILMultiDimensionalRank</a> extends <a href="org/deidentifier/arx/metric/v2/AbstractILMultiDimensional.html" title="class in org.deidentifier.arx.metric.v2">AbstractILMultiDimensional</a> implements Serializable</h3>
  3156. <dl class="nameValue">
  3157. <dt>serialVersionUID:</dt>
  3158. <dd>591145071792293317L</dd>
  3159. </dl>
  3160. <ul class="blockList">
  3161. <li class="blockList"><a name="serialized_methods">
  3162. <!-- -->
  3163. </a>
  3164. <h3>Serialization Methods</h3>
  3165. <ul class="blockList">
  3166. <li class="blockListLast"><a name="readObject(java.io.ObjectInputStream)">
  3167. <!-- -->
  3168. </a>
  3169. <h4>readObject</h4>
  3170. <pre>private&nbsp;void&nbsp;readObject(java.io.ObjectInputStream&nbsp;stream)
  3171. throws java.io.IOException,
  3172. java.lang.ClassNotFoundException</pre>
  3173. <div class="block">Overwritten to handle changes in how the mean is computed.</div>
  3174. <dl><dt><span class="strong">Throws:</span></dt>
  3175. <dd><code>java.io.IOException</code></dd>
  3176. <dd><code>java.lang.ClassNotFoundException</code></dd></dl>
  3177. </li>
  3178. </ul>
  3179. </li>
  3180. <li class="blockList"><a name="serializedForm">
  3181. <!-- -->
  3182. </a>
  3183. <h3>Serialized Fields</h3>
  3184. <ul class="blockList">
  3185. <li class="blockList">
  3186. <h4>aggregate</h4>
  3187. <pre>double[] aggregate</pre>
  3188. <div class="block">Aggregate.</div>
  3189. </li>
  3190. <li class="blockListLast">
  3191. <h4>mean</h4>
  3192. <pre>double mean</pre>
  3193. <div class="block">Geometric mean.</div>
  3194. </li>
  3195. </ul>
  3196. </li>
  3197. </ul>
  3198. </li>
  3199. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.ILMultiDimensionalSum">
  3200. <!-- -->
  3201. </a>
  3202. <h3>Class <a href="org/deidentifier/arx/metric/v2/ILMultiDimensionalSum.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.ILMultiDimensionalSum</a> extends <a href="org/deidentifier/arx/metric/v2/AbstractILMultiDimensionalReduced.html" title="class in org.deidentifier.arx.metric.v2">AbstractILMultiDimensionalReduced</a> implements Serializable</h3>
  3203. <dl class="nameValue">
  3204. <dt>serialVersionUID:</dt>
  3205. <dd>6456243227046629659L</dd>
  3206. </dl>
  3207. </li>
  3208. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.ILSingleDimensional">
  3209. <!-- -->
  3210. </a>
  3211. <h3>Class <a href="org/deidentifier/arx/metric/v2/ILSingleDimensional.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.ILSingleDimensional</a> extends <a href="org/deidentifier/arx/metric/InformationLoss.html" title="class in org.deidentifier.arx.metric">InformationLoss</a>&lt;java.lang.Double&gt; implements Serializable</h3>
  3212. <dl class="nameValue">
  3213. <dt>serialVersionUID:</dt>
  3214. <dd>8045076435539841773L</dd>
  3215. </dl>
  3216. <ul class="blockList">
  3217. <li class="blockList"><a name="serializedForm">
  3218. <!-- -->
  3219. </a>
  3220. <h3>Serialized Fields</h3>
  3221. <ul class="blockList">
  3222. <li class="blockListLast">
  3223. <h4>value</h4>
  3224. <pre>double value</pre>
  3225. <div class="block">Values.</div>
  3226. </li>
  3227. </ul>
  3228. </li>
  3229. </ul>
  3230. </li>
  3231. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.MetricMDHeight">
  3232. <!-- -->
  3233. </a>
  3234. <h3>Class <a href="org/deidentifier/arx/metric/v2/MetricMDHeight.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.MetricMDHeight</a> extends <a href="org/deidentifier/arx/metric/v2/AbstractMetricMultiDimensional.html" title="class in org.deidentifier.arx.metric.v2">AbstractMetricMultiDimensional</a> implements Serializable</h3>
  3235. <dl class="nameValue">
  3236. <dt>serialVersionUID:</dt>
  3237. <dd>-4720395539299677086L</dd>
  3238. </dl>
  3239. </li>
  3240. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.MetricMDNMLoss">
  3241. <!-- -->
  3242. </a>
  3243. <h3>Class <a href="org/deidentifier/arx/metric/v2/MetricMDNMLoss.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.MetricMDNMLoss</a> extends <a href="org/deidentifier/arx/metric/v2/AbstractMetricMultiDimensional.html" title="class in org.deidentifier.arx.metric.v2">AbstractMetricMultiDimensional</a> implements Serializable</h3>
  3244. <dl class="nameValue">
  3245. <dt>serialVersionUID:</dt>
  3246. <dd>-573670902335136600L</dd>
  3247. </dl>
  3248. <ul class="blockList">
  3249. <li class="blockList"><a name="serializedForm">
  3250. <!-- -->
  3251. </a>
  3252. <h3>Serialized Fields</h3>
  3253. <ul class="blockList">
  3254. <li class="blockList">
  3255. <h4>tuples</h4>
  3256. <pre>double tuples</pre>
  3257. <div class="block">Total number of tuples, depends on existence of research subset.</div>
  3258. </li>
  3259. <li class="blockList">
  3260. <h4>shares</h4>
  3261. <pre><a href="org/deidentifier/arx/metric/v2/DomainShare.html" title="interface in org.deidentifier.arx.metric.v2">DomainShare</a>[] shares</pre>
  3262. <div class="block">Domain shares for each dimension.</div>
  3263. </li>
  3264. <li class="blockList">
  3265. <h4>gFactor</h4>
  3266. <pre>double gFactor</pre>
  3267. <div class="block">TODO: We must override this for backward compatibility. Remove, when re-implemented.</div>
  3268. </li>
  3269. <li class="blockList">
  3270. <h4>gsFactor</h4>
  3271. <pre>double gsFactor</pre>
  3272. <div class="block">TODO: We must override this for backward compatibility. Remove, when re-implemented.</div>
  3273. </li>
  3274. <li class="blockListLast">
  3275. <h4>sFactor</h4>
  3276. <pre>double sFactor</pre>
  3277. <div class="block">TODO: We must override this for backward compatibility. Remove, when re-implemented.</div>
  3278. </li>
  3279. </ul>
  3280. </li>
  3281. </ul>
  3282. </li>
  3283. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.MetricMDNMLossPotentiallyPrecomputed">
  3284. <!-- -->
  3285. </a>
  3286. <h3>Class <a href="org/deidentifier/arx/metric/v2/MetricMDNMLossPotentiallyPrecomputed.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.MetricMDNMLossPotentiallyPrecomputed</a> extends <a href="org/deidentifier/arx/metric/v2/AbstractMetricMultiDimensionalPotentiallyPrecomputed.html" title="class in org.deidentifier.arx.metric.v2">AbstractMetricMultiDimensionalPotentiallyPrecomputed</a> implements Serializable</h3>
  3287. <dl class="nameValue">
  3288. <dt>serialVersionUID:</dt>
  3289. <dd>-409964525491865637L</dd>
  3290. </dl>
  3291. </li>
  3292. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.MetricMDNMLossPrecomputed">
  3293. <!-- -->
  3294. </a>
  3295. <h3>Class <a href="org/deidentifier/arx/metric/v2/MetricMDNMLossPrecomputed.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.MetricMDNMLossPrecomputed</a> extends <a href="org/deidentifier/arx/metric/v2/MetricMDNMLoss.html" title="class in org.deidentifier.arx.metric.v2">MetricMDNMLoss</a> implements Serializable</h3>
  3296. <dl class="nameValue">
  3297. <dt>serialVersionUID:</dt>
  3298. <dd>-7505441444551612996L</dd>
  3299. </dl>
  3300. <ul class="blockList">
  3301. <li class="blockList"><a name="serializedForm">
  3302. <!-- -->
  3303. </a>
  3304. <h3>Serialized Fields</h3>
  3305. <ul class="blockList">
  3306. <li class="blockList">
  3307. <h4>cardinalities</h4>
  3308. <pre><a href="org/deidentifier/arx/metric/v2/Cardinalities.html" title="class in org.deidentifier.arx.metric.v2">Cardinalities</a> cardinalities</pre>
  3309. <div class="block">Cardinalities.</div>
  3310. </li>
  3311. <li class="blockListLast">
  3312. <h4>values</h4>
  3313. <pre>int[][][] values</pre>
  3314. <div class="block">Distinct values: attribute -> level -> values.</div>
  3315. </li>
  3316. </ul>
  3317. </li>
  3318. </ul>
  3319. </li>
  3320. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.MetricMDNMPrecision">
  3321. <!-- -->
  3322. </a>
  3323. <h3>Class <a href="org/deidentifier/arx/metric/v2/MetricMDNMPrecision.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.MetricMDNMPrecision</a> extends <a href="org/deidentifier/arx/metric/v2/AbstractMetricMultiDimensional.html" title="class in org.deidentifier.arx.metric.v2">AbstractMetricMultiDimensional</a> implements Serializable</h3>
  3324. <dl class="nameValue">
  3325. <dt>serialVersionUID:</dt>
  3326. <dd>7972929684708525849L</dd>
  3327. </dl>
  3328. <ul class="blockList">
  3329. <li class="blockList"><a name="serializedForm">
  3330. <!-- -->
  3331. </a>
  3332. <h3>Serialized Fields</h3>
  3333. <ul class="blockList">
  3334. <li class="blockList">
  3335. <h4>rowCount</h4>
  3336. <pre>double rowCount</pre>
  3337. <div class="block">Row count.</div>
  3338. </li>
  3339. <li class="blockListLast">
  3340. <h4>heights</h4>
  3341. <pre>int[] heights</pre>
  3342. <div class="block">Hierarchy heights.</div>
  3343. </li>
  3344. </ul>
  3345. </li>
  3346. </ul>
  3347. </li>
  3348. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.MetricMDNUEntropy">
  3349. <!-- -->
  3350. </a>
  3351. <h3>Class <a href="org/deidentifier/arx/metric/v2/MetricMDNUEntropy.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.MetricMDNUEntropy</a> extends <a href="org/deidentifier/arx/metric/v2/MetricMDNUEntropyPrecomputed.html" title="class in org.deidentifier.arx.metric.v2">MetricMDNUEntropyPrecomputed</a> implements Serializable</h3>
  3352. <dl class="nameValue">
  3353. <dt>serialVersionUID:</dt>
  3354. <dd>-8114158144622853288L</dd>
  3355. </dl>
  3356. </li>
  3357. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.MetricMDNUEntropyPotentiallyPrecomputed">
  3358. <!-- -->
  3359. </a>
  3360. <h3>Class <a href="org/deidentifier/arx/metric/v2/MetricMDNUEntropyPotentiallyPrecomputed.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.MetricMDNUEntropyPotentiallyPrecomputed</a> extends <a href="org/deidentifier/arx/metric/v2/AbstractMetricMultiDimensionalPotentiallyPrecomputed.html" title="class in org.deidentifier.arx.metric.v2">AbstractMetricMultiDimensionalPotentiallyPrecomputed</a> implements Serializable</h3>
  3361. <dl class="nameValue">
  3362. <dt>serialVersionUID:</dt>
  3363. <dd>7044684079235440871L</dd>
  3364. </dl>
  3365. </li>
  3366. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.MetricMDNUEntropyPrecomputed">
  3367. <!-- -->
  3368. </a>
  3369. <h3>Class <a href="org/deidentifier/arx/metric/v2/MetricMDNUEntropyPrecomputed.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.MetricMDNUEntropyPrecomputed</a> extends <a href="org/deidentifier/arx/metric/v2/AbstractMetricMultiDimensional.html" title="class in org.deidentifier.arx.metric.v2">AbstractMetricMultiDimensional</a> implements Serializable</h3>
  3370. <dl class="nameValue">
  3371. <dt>serialVersionUID:</dt>
  3372. <dd>8053878428909814308L</dd>
  3373. </dl>
  3374. <ul class="blockList">
  3375. <li class="blockList"><a name="serializedForm">
  3376. <!-- -->
  3377. </a>
  3378. <h3>Serialized Fields</h3>
  3379. <ul class="blockList">
  3380. <li class="blockList">
  3381. <h4>cardinalities</h4>
  3382. <pre><a href="org/deidentifier/arx/metric/v2/Cardinalities.html" title="class in org.deidentifier.arx.metric.v2">Cardinalities</a> cardinalities</pre>
  3383. <div class="block">Cardinalities.</div>
  3384. </li>
  3385. <li class="blockList">
  3386. <h4>cache</h4>
  3387. <pre>double[][] cache</pre>
  3388. <div class="block">Column -> Level -> Value.</div>
  3389. </li>
  3390. <li class="blockList">
  3391. <h4>hierarchies</h4>
  3392. <pre>int[][][] hierarchies</pre>
  3393. <div class="block">Column -> Id -> Level -> Output.</div>
  3394. </li>
  3395. <li class="blockListLast">
  3396. <h4>rows</h4>
  3397. <pre>double rows</pre>
  3398. <div class="block">Num rows</div>
  3399. </li>
  3400. </ul>
  3401. </li>
  3402. </ul>
  3403. </li>
  3404. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.MetricMDNUNMEntropy">
  3405. <!-- -->
  3406. </a>
  3407. <h3>Class <a href="org/deidentifier/arx/metric/v2/MetricMDNUNMEntropy.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.MetricMDNUNMEntropy</a> extends <a href="org/deidentifier/arx/metric/v2/MetricMDNUNMEntropyPrecomputed.html" title="class in org.deidentifier.arx.metric.v2">MetricMDNUNMEntropyPrecomputed</a> implements Serializable</h3>
  3408. <dl class="nameValue">
  3409. <dt>serialVersionUID:</dt>
  3410. <dd>-7428794463838685004L</dd>
  3411. </dl>
  3412. </li>
  3413. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.MetricMDNUNMEntropyPotentiallyPrecomputed">
  3414. <!-- -->
  3415. </a>
  3416. <h3>Class <a href="org/deidentifier/arx/metric/v2/MetricMDNUNMEntropyPotentiallyPrecomputed.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.MetricMDNUNMEntropyPotentiallyPrecomputed</a> extends <a href="org/deidentifier/arx/metric/v2/AbstractMetricMultiDimensionalPotentiallyPrecomputed.html" title="class in org.deidentifier.arx.metric.v2">AbstractMetricMultiDimensionalPotentiallyPrecomputed</a> implements Serializable</h3>
  3417. <dl class="nameValue">
  3418. <dt>serialVersionUID:</dt>
  3419. <dd>-3213516677340712914L</dd>
  3420. </dl>
  3421. </li>
  3422. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.MetricMDNUNMEntropyPrecomputed">
  3423. <!-- -->
  3424. </a>
  3425. <h3>Class <a href="org/deidentifier/arx/metric/v2/MetricMDNUNMEntropyPrecomputed.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.MetricMDNUNMEntropyPrecomputed</a> extends <a href="org/deidentifier/arx/metric/v2/MetricMDNUEntropyPrecomputed.html" title="class in org.deidentifier.arx.metric.v2">MetricMDNUEntropyPrecomputed</a> implements Serializable</h3>
  3426. <dl class="nameValue">
  3427. <dt>serialVersionUID:</dt>
  3428. <dd>-7428794463838685004L</dd>
  3429. </dl>
  3430. </li>
  3431. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.MetricMDNUNMNormalizedEntropy">
  3432. <!-- -->
  3433. </a>
  3434. <h3>Class <a href="org/deidentifier/arx/metric/v2/MetricMDNUNMNormalizedEntropy.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.MetricMDNUNMNormalizedEntropy</a> extends <a href="org/deidentifier/arx/metric/v2/MetricMDNUNMNormalizedEntropyPrecomputed.html" title="class in org.deidentifier.arx.metric.v2">MetricMDNUNMNormalizedEntropyPrecomputed</a> implements Serializable</h3>
  3435. <dl class="nameValue">
  3436. <dt>serialVersionUID:</dt>
  3437. <dd>8815423510640657624L</dd>
  3438. </dl>
  3439. </li>
  3440. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.MetricMDNUNMNormalizedEntropyPotentiallyPrecomputed">
  3441. <!-- -->
  3442. </a>
  3443. <h3>Class <a href="org/deidentifier/arx/metric/v2/MetricMDNUNMNormalizedEntropyPotentiallyPrecomputed.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.MetricMDNUNMNormalizedEntropyPotentiallyPrecomputed</a> extends <a href="org/deidentifier/arx/metric/v2/AbstractMetricMultiDimensionalPotentiallyPrecomputed.html" title="class in org.deidentifier.arx.metric.v2">AbstractMetricMultiDimensionalPotentiallyPrecomputed</a> implements Serializable</h3>
  3444. <dl class="nameValue">
  3445. <dt>serialVersionUID:</dt>
  3446. <dd>-3297238195567701353L</dd>
  3447. </dl>
  3448. </li>
  3449. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.MetricMDNUNMNormalizedEntropyPrecomputed">
  3450. <!-- -->
  3451. </a>
  3452. <h3>Class <a href="org/deidentifier/arx/metric/v2/MetricMDNUNMNormalizedEntropyPrecomputed.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.MetricMDNUNMNormalizedEntropyPrecomputed</a> extends <a href="org/deidentifier/arx/metric/v2/MetricMDNUNMEntropyPrecomputed.html" title="class in org.deidentifier.arx.metric.v2">MetricMDNUNMEntropyPrecomputed</a> implements Serializable</h3>
  3453. <dl class="nameValue">
  3454. <dt>serialVersionUID:</dt>
  3455. <dd>-2384411534214262365L</dd>
  3456. </dl>
  3457. <ul class="blockList">
  3458. <li class="blockList"><a name="serializedForm">
  3459. <!-- -->
  3460. </a>
  3461. <h3>Serialized Fields</h3>
  3462. <ul class="blockList">
  3463. <li class="blockListLast">
  3464. <h4>upper</h4>
  3465. <pre>double[] upper</pre>
  3466. <div class="block">Upper bounds</div>
  3467. </li>
  3468. </ul>
  3469. </li>
  3470. </ul>
  3471. </li>
  3472. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.MetricMDPrecision">
  3473. <!-- -->
  3474. </a>
  3475. <h3>Class <a href="org/deidentifier/arx/metric/v2/MetricMDPrecision.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.MetricMDPrecision</a> extends <a href="org/deidentifier/arx/metric/v2/MetricMDNMPrecision.html" title="class in org.deidentifier.arx.metric.v2">MetricMDNMPrecision</a> implements Serializable</h3>
  3476. <dl class="nameValue">
  3477. <dt>serialVersionUID:</dt>
  3478. <dd>8514706682676049814L</dd>
  3479. </dl>
  3480. </li>
  3481. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.MetricMDStatic">
  3482. <!-- -->
  3483. </a>
  3484. <h3>Class <a href="org/deidentifier/arx/metric/v2/MetricMDStatic.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.MetricMDStatic</a> extends <a href="org/deidentifier/arx/metric/v2/AbstractMetricMultiDimensional.html" title="class in org.deidentifier.arx.metric.v2">AbstractMetricMultiDimensional</a> implements Serializable</h3>
  3485. <dl class="nameValue">
  3486. <dt>serialVersionUID:</dt>
  3487. <dd>-1436611621616365335L</dd>
  3488. </dl>
  3489. <ul class="blockList">
  3490. <li class="blockList"><a name="serializedForm">
  3491. <!-- -->
  3492. </a>
  3493. <h3>Serialized Fields</h3>
  3494. <ul class="blockList">
  3495. <li class="blockList">
  3496. <h4>_infoloss</h4>
  3497. <pre>java.util.Map&lt;K,V&gt; _infoloss</pre>
  3498. <div class="block">The user defined information loss per level, indexed by column name.</div>
  3499. </li>
  3500. <li class="blockListLast">
  3501. <h4>infoloss</h4>
  3502. <pre>double[][] infoloss</pre>
  3503. <div class="block">The pre-calculated information loss.</div>
  3504. </li>
  3505. </ul>
  3506. </li>
  3507. </ul>
  3508. </li>
  3509. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.MetricSDAECS">
  3510. <!-- -->
  3511. </a>
  3512. <h3>Class <a href="org/deidentifier/arx/metric/v2/MetricSDAECS.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.MetricSDAECS</a> extends <a href="org/deidentifier/arx/metric/v2/AbstractMetricSingleDimensional.html" title="class in org.deidentifier.arx.metric.v2">AbstractMetricSingleDimensional</a> implements Serializable</h3>
  3513. <dl class="nameValue">
  3514. <dt>serialVersionUID:</dt>
  3515. <dd>8076459507565472479L</dd>
  3516. </dl>
  3517. </li>
  3518. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.MetricSDDiscernability">
  3519. <!-- -->
  3520. </a>
  3521. <h3>Class <a href="org/deidentifier/arx/metric/v2/MetricSDDiscernability.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.MetricSDDiscernability</a> extends <a href="org/deidentifier/arx/metric/v2/MetricSDNMDiscernability.html" title="class in org.deidentifier.arx.metric.v2">MetricSDNMDiscernability</a> implements Serializable</h3>
  3522. <dl class="nameValue">
  3523. <dt>serialVersionUID:</dt>
  3524. <dd>-9156839234909657895L</dd>
  3525. </dl>
  3526. </li>
  3527. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.MetricSDNMAmbiguity">
  3528. <!-- -->
  3529. </a>
  3530. <h3>Class <a href="org/deidentifier/arx/metric/v2/MetricSDNMAmbiguity.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.MetricSDNMAmbiguity</a> extends <a href="org/deidentifier/arx/metric/v2/AbstractMetricSingleDimensional.html" title="class in org.deidentifier.arx.metric.v2">AbstractMetricSingleDimensional</a> implements Serializable</h3>
  3531. <dl class="nameValue">
  3532. <dt>serialVersionUID:</dt>
  3533. <dd>-4376770864891280340L</dd>
  3534. </dl>
  3535. <ul class="blockList">
  3536. <li class="blockList"><a name="serializedForm">
  3537. <!-- -->
  3538. </a>
  3539. <h3>Serialized Fields</h3>
  3540. <ul class="blockList">
  3541. <li class="blockList">
  3542. <h4>tuples</h4>
  3543. <pre>java.lang.Double tuples</pre>
  3544. <div class="block">Total number of tuples, depends on existence of research subset.</div>
  3545. </li>
  3546. <li class="blockList">
  3547. <h4>shares</h4>
  3548. <pre><a href="org/deidentifier/arx/metric/v2/DomainShare.html" title="interface in org.deidentifier.arx.metric.v2">DomainShare</a>[] shares</pre>
  3549. <div class="block">Domain shares for each dimension.</div>
  3550. </li>
  3551. <li class="blockListLast">
  3552. <h4>max</h4>
  3553. <pre>java.lang.Double max</pre>
  3554. <div class="block">Maximum value</div>
  3555. </li>
  3556. </ul>
  3557. </li>
  3558. </ul>
  3559. </li>
  3560. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.MetricSDNMDiscernability">
  3561. <!-- -->
  3562. </a>
  3563. <h3>Class <a href="org/deidentifier/arx/metric/v2/MetricSDNMDiscernability.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.MetricSDNMDiscernability</a> extends <a href="org/deidentifier/arx/metric/v2/AbstractMetricSingleDimensional.html" title="class in org.deidentifier.arx.metric.v2">AbstractMetricSingleDimensional</a> implements Serializable</h3>
  3564. <dl class="nameValue">
  3565. <dt>serialVersionUID:</dt>
  3566. <dd>-8573084860566655278L</dd>
  3567. </dl>
  3568. </li>
  3569. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.MetricSDNMEntropyBasedInformationLoss">
  3570. <!-- -->
  3571. </a>
  3572. <h3>Class <a href="org/deidentifier/arx/metric/v2/MetricSDNMEntropyBasedInformationLoss.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.MetricSDNMEntropyBasedInformationLoss</a> extends <a href="org/deidentifier/arx/metric/v2/AbstractMetricSingleDimensional.html" title="class in org.deidentifier.arx.metric.v2">AbstractMetricSingleDimensional</a> implements Serializable</h3>
  3573. <dl class="nameValue">
  3574. <dt>serialVersionUID:</dt>
  3575. <dd>-2443537745262162075L</dd>
  3576. </dl>
  3577. <ul class="blockList">
  3578. <li class="blockList"><a name="serializedForm">
  3579. <!-- -->
  3580. </a>
  3581. <h3>Serialized Fields</h3>
  3582. <ul class="blockList">
  3583. <li class="blockList">
  3584. <h4>shares</h4>
  3585. <pre><a href="org/deidentifier/arx/metric/v2/DomainShare.html" title="interface in org.deidentifier.arx.metric.v2">DomainShare</a>[] shares</pre>
  3586. <div class="block">Domain shares for each dimension.</div>
  3587. </li>
  3588. <li class="blockListLast">
  3589. <h4>maxIL</h4>
  3590. <pre>double maxIL</pre>
  3591. <div class="block">MaxIL</div>
  3592. </li>
  3593. </ul>
  3594. </li>
  3595. </ul>
  3596. </li>
  3597. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.MetricSDNMKLDivergence">
  3598. <!-- -->
  3599. </a>
  3600. <h3>Class <a href="org/deidentifier/arx/metric/v2/MetricSDNMKLDivergence.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.MetricSDNMKLDivergence</a> extends <a href="org/deidentifier/arx/metric/v2/AbstractMetricSingleDimensional.html" title="class in org.deidentifier.arx.metric.v2">AbstractMetricSingleDimensional</a> implements Serializable</h3>
  3601. <dl class="nameValue">
  3602. <dt>serialVersionUID:</dt>
  3603. <dd>-4918601543733931921L</dd>
  3604. </dl>
  3605. <ul class="blockList">
  3606. <li class="blockList"><a name="serializedForm">
  3607. <!-- -->
  3608. </a>
  3609. <h3>Serialized Fields</h3>
  3610. <ul class="blockList">
  3611. <li class="blockList">
  3612. <h4>tuples</h4>
  3613. <pre>java.lang.Double tuples</pre>
  3614. <div class="block">Total number of tuples, depends on existence of research subset.</div>
  3615. </li>
  3616. <li class="blockList">
  3617. <h4>shares</h4>
  3618. <pre><a href="org/deidentifier/arx/metric/v2/DomainShare.html" title="interface in org.deidentifier.arx.metric.v2">DomainShare</a>[] shares</pre>
  3619. <div class="block">Domain shares for each dimension.</div>
  3620. </li>
  3621. <li class="blockList">
  3622. <h4>max</h4>
  3623. <pre>java.lang.Double max</pre>
  3624. <div class="block">Maximum value</div>
  3625. </li>
  3626. <li class="blockList">
  3627. <h4>matcher</h4>
  3628. <pre><a href="org/deidentifier/arx/metric/v2/TupleMatcher.html" title="class in org.deidentifier.arx.metric.v2">TupleMatcher</a> matcher</pre>
  3629. <div class="block">Tuple matcher</div>
  3630. </li>
  3631. <li class="blockList">
  3632. <h4>inputDistribution</h4>
  3633. <pre>double[] inputDistribution</pre>
  3634. <div class="block">Distribution</div>
  3635. </li>
  3636. <li class="blockListLast">
  3637. <h4>maximalArea</h4>
  3638. <pre>double maximalArea</pre>
  3639. <div class="block">Maximal area</div>
  3640. </li>
  3641. </ul>
  3642. </li>
  3643. </ul>
  3644. </li>
  3645. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.MetricSDNMPublisherPayout">
  3646. <!-- -->
  3647. </a>
  3648. <h3>Class <a href="org/deidentifier/arx/metric/v2/MetricSDNMPublisherPayout.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.MetricSDNMPublisherPayout</a> extends <a href="org/deidentifier/arx/metric/v2/AbstractMetricSingleDimensional.html" title="class in org.deidentifier.arx.metric.v2">AbstractMetricSingleDimensional</a> implements Serializable</h3>
  3649. <dl class="nameValue">
  3650. <dt>serialVersionUID:</dt>
  3651. <dd>5729454129866471107L</dd>
  3652. </dl>
  3653. <ul class="blockList">
  3654. <li class="blockList"><a name="serializedForm">
  3655. <!-- -->
  3656. </a>
  3657. <h3>Serialized Fields</h3>
  3658. <ul class="blockList">
  3659. <li class="blockList">
  3660. <h4>config</h4>
  3661. <pre><a href="org/deidentifier/arx/ARXCostBenefitConfiguration.html" title="class in org.deidentifier.arx">ARXCostBenefitConfiguration</a> config</pre>
  3662. <div class="block">Configuration for the Stackelberg game</div>
  3663. </li>
  3664. <li class="blockList">
  3665. <h4>shares</h4>
  3666. <pre><a href="org/deidentifier/arx/metric/v2/DomainShare.html" title="interface in org.deidentifier.arx.metric.v2">DomainShare</a>[] shares</pre>
  3667. <div class="block">Domain shares for each dimension.</div>
  3668. </li>
  3669. <li class="blockList">
  3670. <h4>maxIL</h4>
  3671. <pre>double maxIL</pre>
  3672. <div class="block">Maximal information loss</div>
  3673. </li>
  3674. <li class="blockList">
  3675. <h4>modelRisk</h4>
  3676. <pre><a href="org/deidentifier/arx/risk/RiskModelCostBenefit.html" title="class in org.deidentifier.arx.risk">RiskModelCostBenefit</a> modelRisk</pre>
  3677. <div class="block">Risk model</div>
  3678. </li>
  3679. <li class="blockList">
  3680. <h4>journalistAttackerModel</h4>
  3681. <pre>boolean journalistAttackerModel</pre>
  3682. <div class="block">Journalist attacker model</div>
  3683. </li>
  3684. <li class="blockListLast">
  3685. <h4>maximalPayout</h4>
  3686. <pre><a href="org/deidentifier/arx/metric/v2/QualityMetadata.html" title="class in org.deidentifier.arx.metric.v2">QualityMetadata</a>&lt;<a href="org/deidentifier/arx/metric/v2/QualityMetadata.html" title="type parameter in QualityMetadata">T</a>&gt; maximalPayout</pre>
  3687. <div class="block">Maximal payout</div>
  3688. </li>
  3689. </ul>
  3690. </li>
  3691. </ul>
  3692. </li>
  3693. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.QualityMetadata">
  3694. <!-- -->
  3695. </a>
  3696. <h3>Class <a href="org/deidentifier/arx/metric/v2/QualityMetadata.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.QualityMetadata</a> extends java.lang.Object implements Serializable</h3>
  3697. <dl class="nameValue">
  3698. <dt>serialVersionUID:</dt>
  3699. <dd>8750896039746232218L</dd>
  3700. </dl>
  3701. <ul class="blockList">
  3702. <li class="blockList"><a name="serializedForm">
  3703. <!-- -->
  3704. </a>
  3705. <h3>Serialized Fields</h3>
  3706. <ul class="blockList">
  3707. <li class="blockList">
  3708. <h4>parameter</h4>
  3709. <pre>java.lang.String parameter</pre>
  3710. <div class="block">Parameter</div>
  3711. </li>
  3712. <li class="blockListLast">
  3713. <h4>value</h4>
  3714. <pre>java.lang.Object value</pre>
  3715. <div class="block">Value</div>
  3716. </li>
  3717. </ul>
  3718. </li>
  3719. </ul>
  3720. </li>
  3721. <li class="blockList"><a name="org.deidentifier.arx.metric.v2.TupleMatcher">
  3722. <!-- -->
  3723. </a>
  3724. <h3>Class <a href="org/deidentifier/arx/metric/v2/TupleMatcher.html" title="class in org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2.TupleMatcher</a> extends java.lang.Object implements Serializable</h3>
  3725. <dl class="nameValue">
  3726. <dt>serialVersionUID:</dt>
  3727. <dd>-5081573765755187296L</dd>
  3728. </dl>
  3729. <ul class="blockList">
  3730. <li class="blockList"><a name="serializedForm">
  3731. <!-- -->
  3732. </a>
  3733. <h3>Serialized Fields</h3>
  3734. <ul class="blockList">
  3735. <li class="blockList">
  3736. <h4>hierarchies</h4>
  3737. <pre>int[][][] hierarchies</pre>
  3738. <div class="block">Data</div>
  3739. </li>
  3740. <li class="blockList">
  3741. <h4>data</h4>
  3742. <pre>int[][] data</pre>
  3743. <div class="block">Data</div>
  3744. </li>
  3745. <li class="blockListLast">
  3746. <h4>tuple</h4>
  3747. <pre>int[] tuple</pre>
  3748. <div class="block">Data</div>
  3749. </li>
  3750. </ul>
  3751. </li>
  3752. </ul>
  3753. </li>
  3754. </ul>
  3755. </li>
  3756. <li class="blockList">
  3757. <h2 title="Package">Package&nbsp;org.deidentifier.arx.risk</h2>
  3758. <ul class="blockList">
  3759. <li class="blockList"><a name="org.deidentifier.arx.risk.RiskModelCostBenefit">
  3760. <!-- -->
  3761. </a>
  3762. <h3>Class <a href="org/deidentifier/arx/risk/RiskModelCostBenefit.html" title="class in org.deidentifier.arx.risk">org.deidentifier.arx.risk.RiskModelCostBenefit</a> extends java.lang.Object implements Serializable</h3>
  3763. <dl class="nameValue">
  3764. <dt>serialVersionUID:</dt>
  3765. <dd>-6124431335607475931L</dd>
  3766. </dl>
  3767. <ul class="blockList">
  3768. <li class="blockList"><a name="serializedForm">
  3769. <!-- -->
  3770. </a>
  3771. <h3>Serialized Fields</h3>
  3772. <ul class="blockList">
  3773. <li class="blockListLast">
  3774. <h4>config</h4>
  3775. <pre><a href="org/deidentifier/arx/ARXCostBenefitConfiguration.html" title="class in org.deidentifier.arx">ARXCostBenefitConfiguration</a> config</pre>
  3776. <div class="block">The underlying configuration</div>
  3777. </li>
  3778. </ul>
  3779. </li>
  3780. </ul>
  3781. </li>
  3782. </ul>
  3783. </li>
  3784. </ul>
  3785. </div>
  3786. <!-- ======= START OF BOTTOM NAVBAR ====== -->
  3787. <div class="bottomNav"><a name="navbar_bottom">
  3788. <!-- -->
  3789. </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
  3790. <!-- -->
  3791. </a>
  3792. <ul class="navList" title="Navigation">
  3793. <li><a href="overview-summary.html">Overview</a></li>
  3794. <li>Package</li>
  3795. <li>Class</li>
  3796. <li>Use</li>
  3797. <li><a href="overview-tree.html">Tree</a></li>
  3798. <li><a href="deprecated-list.html">Deprecated</a></li>
  3799. <li><a href="index-files/index-1.html">Index</a></li>
  3800. <li><a href="help-doc.html">Help</a></li>
  3801. </ul>
  3802. </div>
  3803. <div class="subNav">
  3804. <ul class="navList">
  3805. <li>Prev</li>
  3806. <li>Next</li>
  3807. </ul>
  3808. <ul class="navList">
  3809. <li><a href="index.html?serialized-form.html" target="_top">Frames</a></li>
  3810. <li><a href="serialized-form.html" target="_top">No Frames</a></li>
  3811. </ul>
  3812. <ul class="navList" id="allclasses_navbar_bottom">
  3813. <li><a href="allclasses-noframe.html">All Classes</a></li>
  3814. </ul>
  3815. <div>
  3816. <script type="text/javascript"><!--
  3817. allClassesLink = document.getElementById("allclasses_navbar_bottom");
  3818. if(window==top) {
  3819. allClassesLink.style.display = "block";
  3820. }
  3821. else {
  3822. allClassesLink.style.display = "none";
  3823. }
  3824. //-->
  3825. </script>
  3826. </div>
  3827. <a name="skip-navbar_bottom">
  3828. <!-- -->
  3829. </a></div>
  3830. <!-- ======== END OF BOTTOM NAVBAR ======= -->
  3831. </body>
  3832. </html>