From c73a793013d7739fff8d9830b1a225686fd21764 Mon Sep 17 00:00:00 2001 From: Jason Wells Date: Mon, 29 Jan 2024 11:17:20 -0800 Subject: [PATCH 1/4] converted to Gradle project in IntelliJ IDEA --- .gitignore | 3 + Java/.gitignore | 1 - Java/SuperUtilities/.gitignore | 42 +++ Java/SuperUtilities/.idea/.gitignore | 8 + Java/SuperUtilities/.idea/encodings.xml | 6 + Java/SuperUtilities/.idea/gradle.xml | 16 + Java/SuperUtilities/.idea/misc.xml | 10 + Java/SuperUtilities/.idea/vcs.xml | 6 + Java/SuperUtilities/build.gradle.kts | 277 ++++++++++++++++++ Java/SuperUtilities/gradle.properties | 2 + .../gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 60756 bytes .../gradle/wrapper/gradle-wrapper.properties | 6 + Java/SuperUtilities/gradlew | 234 +++++++++++++++ Java/SuperUtilities/gradlew.bat | 89 ++++++ Java/SuperUtilities/settings.gradle.kts | 2 + .../nuix/superutilities/SuperUtilities.java | 0 .../annotations/AnnotationEvent.java | 0 .../AnnotationHistoryRepository.java | 2 +- .../AnnotationHistoryRepositorySummary.java | 0 .../annotations/AnnotationMatchingMethod.java | 0 .../annotations/AnnotationRepository.java | 0 .../annotations/AnnotationSyncSettings.java | 0 .../annotations/BulkRedactor.java | 0 .../annotations/BulkRedactorProgressInfo.java | 0 .../annotations/BulkRedactorSettings.java | 0 .../annotations/CustodianEvent.java | 0 .../annotations/CustomMetadataEvent.java | 0 .../annotations/ExclusionEvent.java | 0 .../annotations/ItemSetEvent.java | 0 .../NuixImageAnnotationRegion.java | 0 .../annotations/ProductionSetEvent.java | 0 .../superutilities/annotations/TagEvent.java | 0 .../cases/BulkCaseProcessor.java | 0 .../superutilities/cases/CaseConsumer.java | 0 .../cases/CaseHistoryHelper.java | 0 .../nuix/superutilities/cases/CaseInfo.java | 0 .../cases/CaseIssueReaction.java | 0 .../superutilities/cases/CaseLockInfo.java | 0 .../cases/CaseLockedEventInfo.java | 0 .../cases/CaseOpenErrorEvent.java | 0 .../superutilities/cases/CaseUtility.java | 0 .../cases/WorkFunctionErrorEvent.java | 0 .../export/ChunkedDATExporter.java | 0 .../superutilities/export/CustomExporter.java | 0 .../superutilities/export/JsonExporter.java | 0 .../superutilities/export/PdfWorkCache.java | 0 .../export/TemplateExporter.java | 0 .../items/SuperItemUtility.java | 0 .../superutilities/loadfiles/DatLoadFile.java | 0 .../loadfiles/DatLoadFileReader.java | 0 .../loadfiles/DatLoadFileWriter.java | 0 .../superutilities/loadfiles/OptLoadFile.java | 0 .../superutilities/loadfiles/OptRecord.java | 0 .../loadfiles/SimpleTextFileReader.java | 0 .../loadfiles/SimpleTextFileWriter.java | 0 .../nuix/superutilities/misc/DigestList.java | 0 .../superutilities/misc/DriveSpaceInfo.java | 0 .../superutilities/misc/ExpandedTermInfo.java | 6 +- .../superutilities/misc/FormatUtility.java | 2 +- .../superutilities/misc/FreeSpaceMonitor.java | 0 .../misc/FreeSpaceMonitorEventCallback.java | 0 .../superutilities/misc/FuzzyTermInfo.java | 22 +- .../misc/LevenshteinDistance.java | 0 .../superutilities/misc/NamedStringList.java | 0 .../nuix/superutilities/misc/NuixVersion.java | 0 .../nuix/superutilities/misc/PdfUtility.java | 0 .../misc/PlaceholderResolver.java | 0 .../superutilities/misc/ProfileDigester.java | 0 .../superutilities/misc/SQLiteBacked.java | 0 .../misc/SimilarityCalculation.java | 0 .../superutilities/misc/TermExpander.java | 12 +- .../nuix/superutilities/misc/ZipHelper.java | 10 +- .../NamedEntityRedactionProgressCallback.java | 0 .../NamedEntityRedactionResults.java | 0 .../NamedEntityRedactionSettings.java | 0 .../namedentities/NamedEntityUtility.java | 0 .../superutilities/query/QueryHelper.java | 0 .../regex/ItemRegexMatchCollection.java | 0 .../superutilities/regex/PatternInfo.java | 0 .../nuix/superutilities/regex/RegexMatch.java | 0 .../superutilities/regex/RegexScanError.java | 0 .../superutilities/regex/RegexScanner.java | 0 .../reporting/AsposeCellsColorHelper.java | 0 .../reporting/AsposeCellsStyleHelper.java | 0 .../superutilities/reporting/ColorRing.java | 0 .../reporting/ColumnValueGenerator.java | 0 .../reporting/IntersectionReport.java | 0 .../IntersectionReportProgressCallback.java | 0 .../IntersectionReportSheetConfiguration.java | 0 .../superutilities/reporting/NamedQuery.java | 0 .../ScriptedColumnValueGenerator.java | 0 .../reporting/SimpleWorksheet.java | 0 .../superutilities/reporting/SimpleXlsx.java | 0 .../src/test/java/RegexScannerTests.java | 77 +++++ .../src/test/java/TestFoundation.java | 102 +++++++ Java/pom.xml | 8 - 96 files changed, 902 insertions(+), 41 deletions(-) delete mode 100644 Java/.gitignore create mode 100644 Java/SuperUtilities/.gitignore create mode 100644 Java/SuperUtilities/.idea/.gitignore create mode 100644 Java/SuperUtilities/.idea/encodings.xml create mode 100644 Java/SuperUtilities/.idea/gradle.xml create mode 100644 Java/SuperUtilities/.idea/misc.xml create mode 100644 Java/SuperUtilities/.idea/vcs.xml create mode 100644 Java/SuperUtilities/build.gradle.kts create mode 100644 Java/SuperUtilities/gradle.properties create mode 100644 Java/SuperUtilities/gradle/wrapper/gradle-wrapper.jar create mode 100644 Java/SuperUtilities/gradle/wrapper/gradle-wrapper.properties create mode 100644 Java/SuperUtilities/gradlew create mode 100644 Java/SuperUtilities/gradlew.bat create mode 100644 Java/SuperUtilities/settings.gradle.kts rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/SuperUtilities.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/annotations/AnnotationEvent.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/annotations/AnnotationHistoryRepository.java (99%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/annotations/AnnotationHistoryRepositorySummary.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/annotations/AnnotationMatchingMethod.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/annotations/AnnotationRepository.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/annotations/AnnotationSyncSettings.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/annotations/BulkRedactor.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/annotations/BulkRedactorProgressInfo.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/annotations/BulkRedactorSettings.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/annotations/CustodianEvent.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/annotations/CustomMetadataEvent.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/annotations/ExclusionEvent.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/annotations/ItemSetEvent.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/annotations/NuixImageAnnotationRegion.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/annotations/ProductionSetEvent.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/annotations/TagEvent.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/cases/BulkCaseProcessor.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/cases/CaseConsumer.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/cases/CaseHistoryHelper.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/cases/CaseInfo.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/cases/CaseIssueReaction.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/cases/CaseLockInfo.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/cases/CaseLockedEventInfo.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/cases/CaseOpenErrorEvent.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/cases/CaseUtility.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/cases/WorkFunctionErrorEvent.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/export/ChunkedDATExporter.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/export/CustomExporter.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/export/JsonExporter.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/export/PdfWorkCache.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/export/TemplateExporter.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/items/SuperItemUtility.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/loadfiles/DatLoadFile.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/loadfiles/DatLoadFileReader.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/loadfiles/DatLoadFileWriter.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/loadfiles/OptLoadFile.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/loadfiles/OptRecord.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/loadfiles/SimpleTextFileReader.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/loadfiles/SimpleTextFileWriter.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/misc/DigestList.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/misc/DriveSpaceInfo.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/misc/ExpandedTermInfo.java (89%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/misc/FormatUtility.java (99%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/misc/FreeSpaceMonitor.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/misc/FreeSpaceMonitorEventCallback.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/misc/FuzzyTermInfo.java (72%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/misc/LevenshteinDistance.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/misc/NamedStringList.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/misc/NuixVersion.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/misc/PdfUtility.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/misc/PlaceholderResolver.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/misc/ProfileDigester.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/misc/SQLiteBacked.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/misc/SimilarityCalculation.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/misc/TermExpander.java (97%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/misc/ZipHelper.java (95%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/namedentities/NamedEntityRedactionProgressCallback.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/namedentities/NamedEntityRedactionResults.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/namedentities/NamedEntityRedactionSettings.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/namedentities/NamedEntityUtility.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/query/QueryHelper.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/regex/ItemRegexMatchCollection.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/regex/PatternInfo.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/regex/RegexMatch.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/regex/RegexScanError.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/regex/RegexScanner.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/reporting/AsposeCellsColorHelper.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/reporting/AsposeCellsStyleHelper.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/reporting/ColorRing.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/reporting/ColumnValueGenerator.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/reporting/IntersectionReport.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/reporting/IntersectionReportProgressCallback.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/reporting/IntersectionReportSheetConfiguration.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/reporting/NamedQuery.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/reporting/ScriptedColumnValueGenerator.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/reporting/SimpleWorksheet.java (100%) rename Java/{ => SuperUtilities}/src/main/java/com/nuix/superutilities/reporting/SimpleXlsx.java (100%) create mode 100644 Java/SuperUtilities/src/test/java/RegexScannerTests.java create mode 100644 Java/SuperUtilities/src/test/java/TestFoundation.java delete mode 100644 Java/pom.xml diff --git a/.gitignore b/.gitignore index 5177869..46488d6 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,9 @@ Ignored .classpath .project +TestData +TestOutput + # ============= # Maven entries # ============= diff --git a/Java/.gitignore b/Java/.gitignore deleted file mode 100644 index b83d222..0000000 --- a/Java/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/target/ diff --git a/Java/SuperUtilities/.gitignore b/Java/SuperUtilities/.gitignore new file mode 100644 index 0000000..b63da45 --- /dev/null +++ b/Java/SuperUtilities/.gitignore @@ -0,0 +1,42 @@ +.gradle +build/ +!gradle/wrapper/gradle-wrapper.jar +!**/src/main/**/build/ +!**/src/test/**/build/ + +### IntelliJ IDEA ### +.idea/modules.xml +.idea/jarRepositories.xml +.idea/compiler.xml +.idea/libraries/ +*.iws +*.iml +*.ipr +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache +bin/ +!**/src/main/**/bin/ +!**/src/test/**/bin/ + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store \ No newline at end of file diff --git a/Java/SuperUtilities/.idea/.gitignore b/Java/SuperUtilities/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/Java/SuperUtilities/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/Java/SuperUtilities/.idea/encodings.xml b/Java/SuperUtilities/.idea/encodings.xml new file mode 100644 index 0000000..2241378 --- /dev/null +++ b/Java/SuperUtilities/.idea/encodings.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Java/SuperUtilities/.idea/gradle.xml b/Java/SuperUtilities/.idea/gradle.xml new file mode 100644 index 0000000..14746e7 --- /dev/null +++ b/Java/SuperUtilities/.idea/gradle.xml @@ -0,0 +1,16 @@ + + + + + + \ No newline at end of file diff --git a/Java/SuperUtilities/.idea/misc.xml b/Java/SuperUtilities/.idea/misc.xml new file mode 100644 index 0000000..5d98256 --- /dev/null +++ b/Java/SuperUtilities/.idea/misc.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/Java/SuperUtilities/.idea/vcs.xml b/Java/SuperUtilities/.idea/vcs.xml new file mode 100644 index 0000000..b2bdec2 --- /dev/null +++ b/Java/SuperUtilities/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Java/SuperUtilities/build.gradle.kts b/Java/SuperUtilities/build.gradle.kts new file mode 100644 index 0000000..9c6a17d --- /dev/null +++ b/Java/SuperUtilities/build.gradle.kts @@ -0,0 +1,277 @@ +import java.nio.file.Paths +import kotlin.io.path.pathString + +/* +External Configuration Properties +================================= +Below values can be overridden when invoking gradle build using property arguments, for example: + +./gradlew build -Pversion=2.0 + + group => The group ID + version => The version + nuixEngineDir => Overrides value to engine release otherwise pulled from ENV var NUIX_ENGINE_DIR + tempDir => Used to override temp directory for testing which would otherwise default to dir in localappdata + testDataDir => Directory tests can load test data they depend on from + testOutputDirectory => Root directory where tests may write data while running. Each test run will create a timestamp subdirectory + nuixUsername => Username used to authenticate with CLS (Cloud License Server). + Otherwise, would be pulled from ENV var NUIX_USERNAME + nuixPassword => Password used to authenticate with CLS (Cloud License Server). + Otherwise, would be pulled from ENV var NUIX_PASSWORD + gpr.user => GitHub username for retrieving engine wrapper package used in tests. + Otherwise, would be pulled from ENV var GITHUB_USERNAME + gpr.key => GitHub classic token for retrieving engine wrapper package used in tests, needs at least "read:packages" permission. + Otherwise, would be pulled from ENV var GITHUB_TOKEN +*/ + +plugins { + id("java") +} + +// So we don't get "unmappable character for encoding windows-1252" errors on a Windows machine +tasks.compileJava.get().options.encoding = "UTF-8" +tasks.compileTestJava.get().options.encoding = "UTF-8" + +group = findProperty("group") ?: "com.nuix.innovation" +version = findProperty("version") ?: "1.23.0" + +project.extra["nuixEngineDirectory"] = findProperty("nuixEngineDirectory") ?: System.getenv("NUIX_ENGINE_DIR") +if (project.extra["nuixEngineDirectory"].toString().isBlank()) { + throw InvalidUserDataException("Please populate the environment variable 'NUIX_ENGINE_DIR' with directory containing a Nuix Engine release") +} +System.out.println("Resolved 'nuixEngineDirectory': " + project.extra["nuixEngineDirectory"].toString()) + +// Determines where Nuix dependencies can be found and where JARs will be copied to for tasks: +// - copyDependencyJarsToEngine +// - copyJarToEngine +// - copyJarsToEngine (test execution invokes this) +project.extra["engineLibDir"] = Paths.get(project.extra["nuixEngineDirectory"].toString(), "lib").pathString + +// Necessary to be on PATH when test is ran which makes use of Nuix engine +project.extra["engineBinDir"] = Paths.get(project.extra["nuixEngineDirectory"].toString(), "bin").pathString +project.extra["engineBinX86Dir"] = Paths.get(project.extra["nuixEngineDirectory"].toString(), "bin", "x86").pathString + +// Determines destination for tasks: +// - copyDependencyJarsToApp +// - copyJarToApp +// - copyJarsToApp +project.extra["nuixAppLibDir"] = findProperty("nuixAppLibDir") + +// Configures temp directory used in several places during test execution: +// - System property 'java.io.tmpdir' +// - ENV variable 'TEMP' +// - ENV variable 'TMP' +project.extra["nuixTempDirectory"] = findProperty("tempDir") + ?: Paths.get(System.getenv("LOCALAPPDATA"), "Temp", "Nuix").pathString + +// Directory used to store data a test may rely on (like sample data) +project.extra["testDataDirectory"] = findProperty("testDataDirectory") + ?: Paths.get("${projectDir}", "..", "..", "TestData").pathString + +// Directory that tests may write data to, unique to each test invocation +project.extra["testOutputDirectory"] = findProperty("testOutputDirectory") + ?: Paths.get("${projectDir}", "..", "..", "TestOutput", "${System.currentTimeMillis()}") + +repositories { + mavenCentral() + + val github_username = project.findProperty("gpr.user") as String? ?: System.getenv("GITHUB_USERNAME") + val github_token = project.findProperty("gpr.key") as String? ?: System.getenv("GITHUB_TOKEN") + + maven { + url = uri("https://maven.pkg.github.com/nuix/nuix-java-engine-baseline") + credentials { + username = github_username + password = github_token + } + } +} + +// Dependencies referenced using this configuration will be copied as part these tasks: +// - CopyDependencyJarsToApp +// - CopyDependencyJarsToEngine +// - copyJarsToApp +// - copyJarsToEngine (Note this is used to get JARs in place before test run) +val deployedDependency: Configuration by configurations.creating { + isTransitive = true +} + +dependencies { + implementation("org.jetbrains.kotlin:kotlin-stdlib:+") + implementation("org.jetbrains:annotations:24.0.1") + compileOnly("org.projectlombok:lombok:1.18.26") + annotationProcessor("org.projectlombok:lombok:1.18.26") + testCompileOnly("org.projectlombok:lombok:1.18.26") + testAnnotationProcessor("org.projectlombok:lombok:1.18.26") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.2") + testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.2") + + // Wrapper class for running tests in engine, pulled from public facing GitHub repository + testImplementation("com.nuix.innovation:enginewrapper:Nuix9.10-v1.1.4") + + // Used to extract test data + testImplementation("net.lingala.zip4j:zip4j:2.11.5") + + // Dependencies from engine lib referenced during compile time + + val compileDependencies = arrayOf( + "*joda*.jar", + "nuix-api*.jar", + "nuix-util-*.jar", + "nuix-data-*.jar", + "nuix-scripting-*.jar", + "aspose-cells-*.jar", + "aspose-pdf-*.jar", + "*slf4j*.jar", + "*log4j*.jar", + "*commons-io*.jar", + "*commons-csv*.jar", + "*commons-math*.jar", + "*commons-lang*.jar", + "*commons-text*.jar", + "*commons-compress*.jar", + "RoaringBitmap-*.jar", + "sqlite*.jar", + "guava*.jar", + "gson*.jar", + "jruby*.jar", + "flying-saucer*.jar", + "jaxb*.jar", + "lucene*.jar", + "jsoup*.jar", + "itext*.jar", + "sevenzip*.jar" + ) + val lib = project.extra["engineLibDir"].toString() + compileOnly(fileTree(baseDir = lib) { include(*compileDependencies) }) + testCompileOnly(fileTree(baseDir = lib) { include(*compileDependencies) }) + + // When tests run which make use of NuixEngine wrapper class, it will need to have the + // Nuix Engine dependencies in the lib folder present on the class path + testRuntimeOnly(fileTree(baseDir = project.extra["engineLibDir"].toString()) { + include("*.jar") + }) +} + +java { + toolchain { + languageVersion.set(JavaLanguageVersion.of(11)) + } +} + +fun configureTestEnvironment(test: Test) { + // Args passed to JVM running tests + test.jvmArgs( + "--add-exports=java.base/jdk.internal.loader=ALL-UNNAMED", // Engine 9.6(?) and later require this + "-Xmx4G", + "-Djava.io.tmpdir=\"${project.extra["nuixTempDirectory"]}\"", + // "-verbose:class" // Can help troubleshoot weird dependency issues + ) + + // Configure ENV vars for JVM tests run in + test.setEnvironment( + // Add our engine release's bin and bin/x86 to PATH env var of test JVM process + Pair("PATH", "${System.getenv("PATH")};${project.extra["engineBinDir"]};${project.extra["engineBinX86Dir"]}"), + + // Define where tests can place re-usable test data + Pair("TEST_DATA_DIRECTORY", project.extra["testDataDirectory"]), + + // Define where tests can write output produce for later review + Pair("TEST_OUTPUT_DIRECTORY", project.extra["testOutputDirectory"]), + + // Forward ENV username and password + Pair("NUIX_USERNAME", System.getenv("NUIX_USERNAME")), + Pair("NUIX_PASSWORD", System.getenv("NUIX_PASSWORD")), + + // Forward LOCALAPPDATA and APPDATA + Pair("LOCALAPPDATA", System.getenv("LOCALAPPDATA")), + Pair("APPDATA", System.getenv("APPDATA")), + Pair("PROGRAMDATA", System.getenv("PROGRAMDATA")), + + // Important to have in some instances, otherwise some code may resolve a local + // path in project tree rather than actual system drive + Pair("SYSTEMDRIVE", System.getenv("SYSTEMDRIVE")), + + // We need to make sure we set these so workers will properly resolve temp dir + // (when using a worker based operation via EngineWrapper). + Pair("TEMP", project.extra["nuixTempDirectory"]), + Pair("TMP", project.extra["nuixTempDirectory"]), + + Pair("NUIX_ENGINE_DIR", project.extra["nuixEngineDirectory"]) + ) +} + +// Copies compiled JAR to engine lib directory +tasks.register("copyJarToEngine") { + dependsOn(tasks.jar) + // You will receive implicit dependency errors without this + mustRunAfter(tasks.compileJava, tasks.compileTestJava) + val jarName = "${rootProject.name}.jar" + duplicatesStrategy = DuplicatesStrategy.INCLUDE + from(tasks.jar) + into(Paths.get(project.extra["engineLibDir"].toString()).toFile()) + rename(".*\\.jar", jarName) +} + +// Copies 'deployedDependency' JARs and their transitive JARs to engine lib directory +tasks.register("copyDependencyJarsToEngine") { + // You will receive implicit dependency errors without this + mustRunAfter(tasks.compileJava, tasks.compileTestJava) + duplicatesStrategy = DuplicatesStrategy.INCLUDE + from(configurations.findByName("deployedDependency")) + into(Paths.get(project.extra["engineLibDir"].toString()).toFile()) + rename("(.*)\\.jar", "${rootProject.name}-Dependency-$1.jar") +} + +// Copies JAR and 'deployedDependency' JARs to engine lib directory +// Invoked before tests are ran +tasks.register("copyJarsToEngine") { + println("Copying files to engine lib dir...") + dependsOn("copyJarToEngine") + dependsOn("copyDependencyJarsToEngine") +} + +// Copies compiled JAR to Nuix Workstation lib directory +// as defined by project.extra["nuixAppLibDir"] +tasks.register("copyJarToApp") { + dependsOn(tasks.jar) + val jarName = "${rootProject.name}.jar" + duplicatesStrategy = DuplicatesStrategy.INCLUDE + from(tasks.jar) + into(Paths.get(project.extra["nuixAppLibDir"].toString()).toFile()) + rename(".*\\.jar", jarName) +} + +// Copies 'deployedDependency' JARs and their transitive JARs to Nuix Workstation lib directory +// as defined by project.extra["nuixAppLibDir"] +tasks.register("copyDependencyJarsToApp") { + duplicatesStrategy = DuplicatesStrategy.INCLUDE + from(configurations.findByName("deployedDependency")) + into(Paths.get(project.extra["nuixAppLibDir"].toString()).toFile()) + rename("(.*)\\.jar", "${rootProject.name}-Dependency-$1.jar") +} + +// Copies JAR and 'deployedDependency' JARs to Nuix Workstation lib directory +// as defined by project.extra["nuixAppLibDir"] +tasks.register("copyJarsToApp") { + println("Copying files to app lib dir...") + dependsOn("copyinJarToApp") + dependsOn("copyDependencyJarsToApp") +} + +// Before tests are ran we need to make sure a few things are done: +// - JAR and 'deployedDependency' JARs have been copied to engine lib dir +// - IDE executes our test using JUnit +// - Environment configuration is performed which sets up ENV vars, properties, etc +tasks.test { + dependsOn(tasks.findByName("copyJarsToEngine")) + mustRunAfter("copyDependencyJarsToEngine", "copyJarToEngine") + useJUnitPlatform() + configureTestEnvironment(this) +} + +// Customize where Javadoc output is written to +tasks.getByName("javadoc") { + options.encoding = "UTF-8" + setDestinationDir(Paths.get("$projectDir", "..", "..", "docs").toFile()) +} \ No newline at end of file diff --git a/Java/SuperUtilities/gradle.properties b/Java/SuperUtilities/gradle.properties new file mode 100644 index 0000000..abc009a --- /dev/null +++ b/Java/SuperUtilities/gradle.properties @@ -0,0 +1,2 @@ +nuixEngineDirectory=C:\\EngineRelease\\100.6 +nuixAppLibDir=C:\\Program Files\\Nuix\\Nuix 100.6\\lib \ No newline at end of file diff --git a/Java/SuperUtilities/gradle/wrapper/gradle-wrapper.jar b/Java/SuperUtilities/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000000000000000000000000000000000000..249e5832f090a2944b7473328c07c9755baa3196 GIT binary patch literal 60756 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 '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit + +APP_NAME="Gradle" +APP_BASE_NAME=${0##*/} + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + +# Collect all arguments for the java command; +# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of +# shell script including quotes and variable substitutions, so put them in +# double quotes to make sure that they get re-expanded; and +# * put everything else in single quotes, so that it's not re-expanded. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/Java/SuperUtilities/gradlew.bat b/Java/SuperUtilities/gradlew.bat new file mode 100644 index 0000000..107acd3 --- /dev/null +++ b/Java/SuperUtilities/gradlew.bat @@ -0,0 +1,89 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto execute + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/Java/SuperUtilities/settings.gradle.kts b/Java/SuperUtilities/settings.gradle.kts new file mode 100644 index 0000000..b3e46c2 --- /dev/null +++ b/Java/SuperUtilities/settings.gradle.kts @@ -0,0 +1,2 @@ +rootProject.name = "SuperUtilities" + diff --git a/Java/src/main/java/com/nuix/superutilities/SuperUtilities.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/SuperUtilities.java similarity index 100% rename from Java/src/main/java/com/nuix/superutilities/SuperUtilities.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/SuperUtilities.java diff --git a/Java/src/main/java/com/nuix/superutilities/annotations/AnnotationEvent.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/annotations/AnnotationEvent.java similarity index 100% rename from Java/src/main/java/com/nuix/superutilities/annotations/AnnotationEvent.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/annotations/AnnotationEvent.java diff --git a/Java/src/main/java/com/nuix/superutilities/annotations/AnnotationHistoryRepository.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/annotations/AnnotationHistoryRepository.java similarity index 99% rename from Java/src/main/java/com/nuix/superutilities/annotations/AnnotationHistoryRepository.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/annotations/AnnotationHistoryRepository.java index 621535c..da35517 100644 --- a/Java/src/main/java/com/nuix/superutilities/annotations/AnnotationHistoryRepository.java +++ b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/annotations/AnnotationHistoryRepository.java @@ -855,7 +855,7 @@ private void recordProductionSetEvent(Case nuixCase, HistoryEvent event, Map([a-z0-9]+))~(?([0-1]\\.?[0-9]*)?)",Pattern.CASE_INSENSITIVE); - private static LuceneLevenshteinDistance luceneLevDist = new LuceneLevenshteinDistance(); +// private static LuceneLevenshteinDistance luceneLevDist = new LuceneLevenshteinDistance(); private static JaroWinklerDistance jaroDist = new JaroWinklerDistance(); - private static NGramDistance ngramDist = new NGramDistance(); +// private static NGramDistance ngramDist = new NGramDistance(); public static boolean isFuzzyTerm(String term) { return fuzzyPattern.matcher(term.trim()).find(); @@ -44,16 +42,8 @@ public static FuzzyTermInfo parseFuzzyTerm(String term) { return f; } - public float calculateLuceneLevenshteinSimilarityTo(String otherTerm) { - return luceneLevDist.getDistance(this.term, otherTerm); - } - - public float calculateJaroWinklerSimilarityTo(String otherTerm) { - return jaroDist.getDistance(this.term, otherTerm); - } - - public float calculateNGramSimilarityTo(String otherTerm) { - return ngramDist.getDistance(this.term, otherTerm); + public Double calculateJaroWinklerSimilarityTo(String otherTerm) { + return jaroDist.apply(this.term, otherTerm); } private String term = ""; diff --git a/Java/src/main/java/com/nuix/superutilities/misc/LevenshteinDistance.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/misc/LevenshteinDistance.java similarity index 100% rename from Java/src/main/java/com/nuix/superutilities/misc/LevenshteinDistance.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/misc/LevenshteinDistance.java diff --git a/Java/src/main/java/com/nuix/superutilities/misc/NamedStringList.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/misc/NamedStringList.java similarity index 100% rename from Java/src/main/java/com/nuix/superutilities/misc/NamedStringList.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/misc/NamedStringList.java diff --git a/Java/src/main/java/com/nuix/superutilities/misc/NuixVersion.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/misc/NuixVersion.java similarity index 100% rename from Java/src/main/java/com/nuix/superutilities/misc/NuixVersion.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/misc/NuixVersion.java diff --git a/Java/src/main/java/com/nuix/superutilities/misc/PdfUtility.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/misc/PdfUtility.java similarity index 100% rename from Java/src/main/java/com/nuix/superutilities/misc/PdfUtility.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/misc/PdfUtility.java diff --git a/Java/src/main/java/com/nuix/superutilities/misc/PlaceholderResolver.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/misc/PlaceholderResolver.java similarity index 100% rename from Java/src/main/java/com/nuix/superutilities/misc/PlaceholderResolver.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/misc/PlaceholderResolver.java diff --git a/Java/src/main/java/com/nuix/superutilities/misc/ProfileDigester.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/misc/ProfileDigester.java similarity index 100% rename from Java/src/main/java/com/nuix/superutilities/misc/ProfileDigester.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/misc/ProfileDigester.java diff --git a/Java/src/main/java/com/nuix/superutilities/misc/SQLiteBacked.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/misc/SQLiteBacked.java similarity index 100% rename from Java/src/main/java/com/nuix/superutilities/misc/SQLiteBacked.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/misc/SQLiteBacked.java diff --git a/Java/src/main/java/com/nuix/superutilities/misc/SimilarityCalculation.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/misc/SimilarityCalculation.java similarity index 100% rename from Java/src/main/java/com/nuix/superutilities/misc/SimilarityCalculation.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/misc/SimilarityCalculation.java diff --git a/Java/src/main/java/com/nuix/superutilities/misc/TermExpander.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/misc/TermExpander.java similarity index 97% rename from Java/src/main/java/com/nuix/superutilities/misc/TermExpander.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/misc/TermExpander.java index 8158652..f2c3ce0 100644 --- a/Java/src/main/java/com/nuix/superutilities/misc/TermExpander.java +++ b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/misc/TermExpander.java @@ -137,7 +137,7 @@ public List expandTerm(Case nuixCase, boolean content, boolean eti.setOriginalTerm(term); eti.setMatchedTerm(termStat.getKey()); eti.setOcurrences(termStat.getValue()); - eti.setSimilarity(0.0f); + eti.setSimilarity(0.0d); result.add(eti); } } else if(FuzzyTermInfo.isFuzzyTerm(term)) { @@ -171,7 +171,7 @@ private void expandWildcardsWithRegex(String term, List result eti.setOriginalTerm(term); eti.setMatchedTerm(termStat.getKey()); eti.setOcurrences(termStat.getValue()); - eti.setSimilarity(0.0f); + eti.setSimilarity(0.0d); result.add(eti); } } @@ -191,13 +191,9 @@ private void expandFuzzyWithSimilarityFiltering(String term, List termStat : allTermStats.entrySet()) { current++; fireProgressUpdated(current, allTermStats.size()); - float similarity = 0.0f; + Double similarity = 0.0d; if(fuzzyResolutionAlgorithm == SimilarityCalculation.JaroWinkler) { similarity = f.calculateJaroWinklerSimilarityTo(termStat.getKey()); - } else if(fuzzyResolutionAlgorithm == SimilarityCalculation.LuceneLevenshstein) { - similarity = f.calculateLuceneLevenshteinSimilarityTo(termStat.getKey()); - } else if(fuzzyResolutionAlgorithm == SimilarityCalculation.NGram) { - similarity = f.calculateNGramSimilarityTo(termStat.getKey()); } if(similarity >= f.getTargetSimilarity()) { @@ -261,7 +257,7 @@ private void expandFuzzyWithNuix(Case nuixCase, boolean content, boolean propert eti.setOriginalTerm(term); eti.setMatchedTerm(distinctTerm); eti.setOcurrences(allTermStats.get(distinctTerm)); - eti.setSimilarity(f.calculateLuceneLevenshteinSimilarityTo(distinctTerm)); + eti.setSimilarity(f.calculateJaroWinklerSimilarityTo(distinctTerm)); result.add(eti); } } diff --git a/Java/src/main/java/com/nuix/superutilities/misc/ZipHelper.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/misc/ZipHelper.java similarity index 95% rename from Java/src/main/java/com/nuix/superutilities/misc/ZipHelper.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/misc/ZipHelper.java index abf89c6..3c02a00 100644 --- a/Java/src/main/java/com/nuix/superutilities/misc/ZipHelper.java +++ b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/misc/ZipHelper.java @@ -14,7 +14,6 @@ import org.apache.commons.compress.archivers.sevenz.SevenZMethod; import org.apache.commons.compress.archivers.sevenz.SevenZOutputFile; import org.apache.commons.io.IOUtils; -import org.apache.jena.ext.com.google.common.primitives.Ints; public class ZipHelper { @@ -66,12 +65,17 @@ public static void compressDirectoryToZipFile(String directory, String zipFile, fileOutStream = new FileOutputStream(zipFile); bufferedOutStream = new BufferedOutputStream(fileOutStream); zipStream = new ZipOutputStream(bufferedOutStream); - zipStream.setLevel(Ints.constrainToRange(compressionLevel, 0, 9)); - compressDirectoryToZipfile(directory,directory,zipStream); + zipStream.setLevel(clamp(compressionLevel, 0, 9)); + + compressDirectoryToZipfile(directory,directory,zipStream); } finally { IOUtils.closeQuietly(zipStream); } } + + private static int clamp(int value, int min, int max){ + return Math.max(min, Math.min(max, value)); + } /*** * Recursively adds contents of a directory to a zip file. Based on: diff --git a/Java/src/main/java/com/nuix/superutilities/namedentities/NamedEntityRedactionProgressCallback.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/namedentities/NamedEntityRedactionProgressCallback.java similarity index 100% rename from Java/src/main/java/com/nuix/superutilities/namedentities/NamedEntityRedactionProgressCallback.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/namedentities/NamedEntityRedactionProgressCallback.java diff --git a/Java/src/main/java/com/nuix/superutilities/namedentities/NamedEntityRedactionResults.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/namedentities/NamedEntityRedactionResults.java similarity index 100% rename from Java/src/main/java/com/nuix/superutilities/namedentities/NamedEntityRedactionResults.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/namedentities/NamedEntityRedactionResults.java diff --git a/Java/src/main/java/com/nuix/superutilities/namedentities/NamedEntityRedactionSettings.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/namedentities/NamedEntityRedactionSettings.java similarity index 100% rename from Java/src/main/java/com/nuix/superutilities/namedentities/NamedEntityRedactionSettings.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/namedentities/NamedEntityRedactionSettings.java diff --git a/Java/src/main/java/com/nuix/superutilities/namedentities/NamedEntityUtility.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/namedentities/NamedEntityUtility.java similarity index 100% rename from Java/src/main/java/com/nuix/superutilities/namedentities/NamedEntityUtility.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/namedentities/NamedEntityUtility.java diff --git a/Java/src/main/java/com/nuix/superutilities/query/QueryHelper.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/query/QueryHelper.java similarity index 100% rename from Java/src/main/java/com/nuix/superutilities/query/QueryHelper.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/query/QueryHelper.java diff --git a/Java/src/main/java/com/nuix/superutilities/regex/ItemRegexMatchCollection.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/regex/ItemRegexMatchCollection.java similarity index 100% rename from Java/src/main/java/com/nuix/superutilities/regex/ItemRegexMatchCollection.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/regex/ItemRegexMatchCollection.java diff --git a/Java/src/main/java/com/nuix/superutilities/regex/PatternInfo.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/regex/PatternInfo.java similarity index 100% rename from Java/src/main/java/com/nuix/superutilities/regex/PatternInfo.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/regex/PatternInfo.java diff --git a/Java/src/main/java/com/nuix/superutilities/regex/RegexMatch.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/regex/RegexMatch.java similarity index 100% rename from Java/src/main/java/com/nuix/superutilities/regex/RegexMatch.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/regex/RegexMatch.java diff --git a/Java/src/main/java/com/nuix/superutilities/regex/RegexScanError.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/regex/RegexScanError.java similarity index 100% rename from Java/src/main/java/com/nuix/superutilities/regex/RegexScanError.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/regex/RegexScanError.java diff --git a/Java/src/main/java/com/nuix/superutilities/regex/RegexScanner.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/regex/RegexScanner.java similarity index 100% rename from Java/src/main/java/com/nuix/superutilities/regex/RegexScanner.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/regex/RegexScanner.java diff --git a/Java/src/main/java/com/nuix/superutilities/reporting/AsposeCellsColorHelper.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/reporting/AsposeCellsColorHelper.java similarity index 100% rename from Java/src/main/java/com/nuix/superutilities/reporting/AsposeCellsColorHelper.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/reporting/AsposeCellsColorHelper.java diff --git a/Java/src/main/java/com/nuix/superutilities/reporting/AsposeCellsStyleHelper.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/reporting/AsposeCellsStyleHelper.java similarity index 100% rename from Java/src/main/java/com/nuix/superutilities/reporting/AsposeCellsStyleHelper.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/reporting/AsposeCellsStyleHelper.java diff --git a/Java/src/main/java/com/nuix/superutilities/reporting/ColorRing.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/reporting/ColorRing.java similarity index 100% rename from Java/src/main/java/com/nuix/superutilities/reporting/ColorRing.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/reporting/ColorRing.java diff --git a/Java/src/main/java/com/nuix/superutilities/reporting/ColumnValueGenerator.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/reporting/ColumnValueGenerator.java similarity index 100% rename from Java/src/main/java/com/nuix/superutilities/reporting/ColumnValueGenerator.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/reporting/ColumnValueGenerator.java diff --git a/Java/src/main/java/com/nuix/superutilities/reporting/IntersectionReport.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/reporting/IntersectionReport.java similarity index 100% rename from Java/src/main/java/com/nuix/superutilities/reporting/IntersectionReport.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/reporting/IntersectionReport.java diff --git a/Java/src/main/java/com/nuix/superutilities/reporting/IntersectionReportProgressCallback.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/reporting/IntersectionReportProgressCallback.java similarity index 100% rename from Java/src/main/java/com/nuix/superutilities/reporting/IntersectionReportProgressCallback.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/reporting/IntersectionReportProgressCallback.java diff --git a/Java/src/main/java/com/nuix/superutilities/reporting/IntersectionReportSheetConfiguration.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/reporting/IntersectionReportSheetConfiguration.java similarity index 100% rename from Java/src/main/java/com/nuix/superutilities/reporting/IntersectionReportSheetConfiguration.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/reporting/IntersectionReportSheetConfiguration.java diff --git a/Java/src/main/java/com/nuix/superutilities/reporting/NamedQuery.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/reporting/NamedQuery.java similarity index 100% rename from Java/src/main/java/com/nuix/superutilities/reporting/NamedQuery.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/reporting/NamedQuery.java diff --git a/Java/src/main/java/com/nuix/superutilities/reporting/ScriptedColumnValueGenerator.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/reporting/ScriptedColumnValueGenerator.java similarity index 100% rename from Java/src/main/java/com/nuix/superutilities/reporting/ScriptedColumnValueGenerator.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/reporting/ScriptedColumnValueGenerator.java diff --git a/Java/src/main/java/com/nuix/superutilities/reporting/SimpleWorksheet.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/reporting/SimpleWorksheet.java similarity index 100% rename from Java/src/main/java/com/nuix/superutilities/reporting/SimpleWorksheet.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/reporting/SimpleWorksheet.java diff --git a/Java/src/main/java/com/nuix/superutilities/reporting/SimpleXlsx.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/reporting/SimpleXlsx.java similarity index 100% rename from Java/src/main/java/com/nuix/superutilities/reporting/SimpleXlsx.java rename to Java/SuperUtilities/src/main/java/com/nuix/superutilities/reporting/SimpleXlsx.java diff --git a/Java/SuperUtilities/src/test/java/RegexScannerTests.java b/Java/SuperUtilities/src/test/java/RegexScannerTests.java new file mode 100644 index 0000000..69a3b92 --- /dev/null +++ b/Java/SuperUtilities/src/test/java/RegexScannerTests.java @@ -0,0 +1,77 @@ +import com.nuix.innovation.enginewrapper.NuixEngine; +import com.nuix.superutilities.regex.RegexMatch; +import com.nuix.superutilities.regex.RegexScanner; +import nuix.Case; +import nuix.Item; +import nuix.Utilities; +import org.apache.commons.csv.CSVFormat; +import org.apache.commons.csv.CSVPrinter; +import org.junit.jupiter.api.Test; + +import java.io.File; +import java.io.FileWriter; +import java.io.IOException; +import java.nio.charset.StandardCharsets; +import java.util.List; +import java.util.Map; + +public class RegexScannerTests extends TestFoundation { + @Test + public void test() throws Exception { + extractTestDataZip("TestCase.zip"); + File testCaseDir = new File(testOutputDirectory, "TestCase"); + File outputCsv = new File(testOutputDirectory, "RegexScannerTest.csv"); + CSVFormat csvFormat = CSVFormat.EXCEL; + + try (NuixEngine nuixEngine = constructNuixEngine()) { + Utilities utilities = nuixEngine.getUtilities(); + try (Case nuixCase = utilities.getCaseFactory().open(testCaseDir, Map.of("migrate", true))) { + List items = nuixCase.search(""); + + RegexScanner scanner = new RegexScanner(); + scanner.setScanProperties(true); + scanner.setScanContent(true); + scanner.setCaseSensitive(false); + scanner.setCaptureContextualText(true); + scanner.setContextSize(30); + + scanner.addPattern("Computer","computer[s]?"); + + try ( + FileWriter fileWriter = new FileWriter(outputCsv, StandardCharsets.UTF_8); + CSVPrinter csvPrinter = new CSVPrinter(fileWriter, csvFormat) + ) { + csvPrinter.printRecord( + "GUID", + "Item Name", + "ItemKind", + "Expression", + "Location", + "Value", + "ValueContext", + "Match Start", + "Match End"); + + scanner.scanItemsParallel(items, itemRegexMatchCollection -> { + Item item = itemRegexMatchCollection.getItem(nuixCase); + for(RegexMatch match : itemRegexMatchCollection.getMatches()) { + try { + csvPrinter.printRecord(item.getGuid(), + item.getLocalisedName(), + item.getType().getKind().getName(), + match.getExpression(), + match.getLocation(), + match.getValue(), + match.getValueContext(), + match.getMatchStart(), + match.getMatchEnd()); + } catch (IOException e) { + throw new RuntimeException(e); + } + } + }); + } + } + } + } +} diff --git a/Java/SuperUtilities/src/test/java/TestFoundation.java b/Java/SuperUtilities/src/test/java/TestFoundation.java new file mode 100644 index 0000000..33b37c6 --- /dev/null +++ b/Java/SuperUtilities/src/test/java/TestFoundation.java @@ -0,0 +1,102 @@ +import com.nuix.innovation.enginewrapper.NuixEngine; +import com.nuix.innovation.enginewrapper.NuixLicenseResolver; +import net.lingala.zip4j.ZipFile; +import nuix.Case; +import nuix.Item; +import nuix.itemtype.ItemTypeBuilder; +import org.apache.logging.log4j.Level; +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.core.LoggerContext; +import org.apache.logging.log4j.core.config.Configuration; +import org.apache.logging.log4j.core.config.LoggerConfig; +import org.junit.jupiter.api.AfterAll; +import org.junit.jupiter.api.BeforeAll; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import java.io.File; +import java.io.IOException; +import java.lang.management.ManagementFactory; +import java.lang.management.RuntimeMXBean; +import java.util.List; +import java.util.Map; + + +public class TestFoundation { + protected static Logger log; + protected static File testOutputDirectory; + protected static File testDataDirectory; + + public boolean isDebuggerAttached() { + boolean debuggerAttached = ManagementFactory.getRuntimeMXBean().getInputArguments().stream() + .anyMatch(arg -> arg.contains("jdwp=") && arg.contains("suspend=y")); + System.out.println("Debugger Attached: " + debuggerAttached); + return debuggerAttached; + } + + public void extractTestDataZip(String fileName) throws Exception { + File testDataZip = new File(testDataDirectory, fileName); + if (!testDataZip.exists()) { + throw new IOException(String.format("Missing '%s', please download from %s and place in the directory %s", + testDataZip.getName(), "TODO", testDataDirectory)); + } + + System.out.println(String.format("Extracting %s to %s", testDataZip, testOutputDirectory)); + new ZipFile(testDataZip).extractAll(testOutputDirectory.getAbsolutePath()); + System.out.println("Extraction completed"); + } + + @BeforeAll + public static void setup() throws Exception { + // Set default level to INFO + LoggerContext ctx = (LoggerContext) LogManager.getContext(false); + Configuration config = ctx.getConfiguration(); + LoggerConfig loggerConfig = config.getLoggerConfig(LogManager.ROOT_LOGGER_NAME); + loggerConfig.setLevel(Level.INFO); + ctx.updateLoggers(); + + log = LoggerFactory.getLogger("Connector Tests"); + + System.out.println("JVM Arguments:"); + RuntimeMXBean bean = ManagementFactory.getRuntimeMXBean(); + List jvmArgs = bean.getInputArguments(); + for (String arg : jvmArgs) { + System.out.println(arg); + } + + System.out.println("Environment Variables:"); + for (Map.Entry entry : System.getenv().entrySet()) { + String varName = entry.getKey(); + String varNameLower = varName.toLowerCase(); + String varValue = entry.getValue(); + if(varNameLower.contains("password") || varNameLower.contains("secret") || varNameLower.contains("token")) { + varValue = varValue.replaceAll(".","*"); + } + System.out.println(String.format("%s => %s", varName, varValue)); + } + + testOutputDirectory = new File(System.getenv("TEST_OUTPUT_DIRECTORY")); + testDataDirectory = new File(System.getenv("TEST_DATA_DIRECTORY")); + } + + @AfterAll + public static void breakdown() { + NuixEngine.closeGlobalContainer(); + } + + public NuixEngine constructNuixEngine(String... additionalRequiredFeatures) { + List features = List.of("CASE_CREATION"); + if (additionalRequiredFeatures != null && additionalRequiredFeatures.length > 0) { + features.addAll(List.of(additionalRequiredFeatures)); + } + + NuixLicenseResolver caseCreationCloud = NuixLicenseResolver.fromCloud() + .withLicenseCredentialsResolvedFromEnvVars() + .withMinWorkerCount(4) + .withRequiredFeatures(features); + + return NuixEngine.usingFirstAvailableLicense(caseCreationCloud) + .setEngineDistributionDirectoryFromEnvVar() + .setLogDirectory(new File(testOutputDirectory, "Logs_" + System.currentTimeMillis())); + } +} diff --git a/Java/pom.xml b/Java/pom.xml deleted file mode 100644 index 88dac8d..0000000 --- a/Java/pom.xml +++ /dev/null @@ -1,8 +0,0 @@ - - 4.0.0 - com.nuix.superutilities - SuperUtilities - 1.0.0 - SuperUtilities - A library of helper methods built on top of the Nuix API - \ No newline at end of file From befb054184078bd7fe2ab81faac0c53903ad9d90 Mon Sep 17 00:00:00 2001 From: Jason Wells Date: Mon, 29 Jan 2024 11:19:46 -0800 Subject: [PATCH 2/4] Update NuixVersion.java --- .../main/java/com/nuix/superutilities/misc/NuixVersion.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Java/SuperUtilities/src/main/java/com/nuix/superutilities/misc/NuixVersion.java b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/misc/NuixVersion.java index 8a5c905..db41423 100644 --- a/Java/SuperUtilities/src/main/java/com/nuix/superutilities/misc/NuixVersion.java +++ b/Java/SuperUtilities/src/main/java/com/nuix/superutilities/misc/NuixVersion.java @@ -78,7 +78,7 @@ public NuixVersion(int majorVersion, int minorVersion, int bugfixVersion, int bu * When providing a version string such as "6.2.1-preview6", "-preview6" will be trimmed off before parsing. * @param versionString The version string to parse. * @return A NuixVersion instance representing the supplied version string, if there is an error parsing the provided value will return - * an instance representing 100.0.0 + * an instance representing 900.0.0.0 */ public static NuixVersion parse(String versionString){ try { @@ -101,8 +101,8 @@ public static NuixVersion parse(String versionString){ } }catch(Exception exc){ System.out.println("Error while parsing version: "+versionString); - System.out.println("Pretending version is 100.0.0.0"); - return new NuixVersion(100,0,0,0); + System.out.println("Pretending version is 900.0.0.0"); + return new NuixVersion(900,0,0,0); } } From 3f7dc323fa474db93710c4190cd2e2e47c8dca7b Mon Sep 17 00:00:00 2001 From: Jason Wells Date: Mon, 29 Jan 2024 11:25:20 -0800 Subject: [PATCH 3/4] Update README.MD --- README.MD | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.MD b/README.MD index bf27a0a..f6627c8 100644 --- a/README.MD +++ b/README.MD @@ -13,7 +13,7 @@ View the GitHub project [here](https://github.com/Nuix/SuperUtilities) or downlo View the Java docs [here](https://nuix.github.io/SuperUtilities/). -This is a small library of functionality which is a companion to the functionality already present in the Nuix API. Over the years as I have workendon Nuix scripts, there were certain pieces of functionality I had noticed I was re-writing over and over. With this project my aim was to codify some of that functionality in such a manner that it was reusable and hopefully generic enough that it would be applicable to other scripts down the line. I've also since added some functionality that was needed just in a specific instance but I envisioned it may have usefulness later on as well. Examples of the functionality include: +This is a small library of functionality which is a companion to the functionality already present in the Nuix API. Over the years as I have worked on Nuix scripts, there were certain pieces of functionality I had noticed I was re-writing over and over. With this project my aim was to codify some of that functionality in such a manner that it was reusable and hopefully generic enough that it would be applicable to other scripts down the line. I've also since added some functionality that was needed just in a specific instance but I envisioned it may have usefulness later on as well. Examples of the functionality include: - [NuixVersion](https://nuix.github.io/SuperUtilities/com/nuix/superutilities/misc/NuixVersion.html): Provides a way to test the version of Nuix being ran, allowing you to have code which reacts differently depending on the version of Nuix in use. - [CaseUtility](https://nuix.github.io/SuperUtilities/com/nuix/superutilities/cases/CaseUtility.html): Provides methods for finding case directories and parsing case FBI2 files. @@ -88,12 +88,12 @@ $current_case.close # Building From Source -Load up the code in your favorite IDE and make sure you reference the `\lib\*.jar` from your Nuix install in the build path. +Open the directory `/Java/SuperUtilities` in [IntelliJ IDEA](https://www.jetbrains.com/idea/download). Tests in this project rely on [Nuix Java Engine Baseline](https://github.com/Nuix/Nuix-Java-Engine-Baseline) on GitHub. For details on setting things up, see its [README.MD](https://github.com/Nuix/Nuix-Java-Engine-Baseline?tab=readme-ov-file#nuix-java-engine-baseline). # License ``` -Copyright 2021 Nuix +Copyright 2024 Nuix Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. From e3f6b0628d8787779fe57bb6785ff0f9d7d66314 Mon Sep 17 00:00:00 2001 From: Jason Wells Date: Mon, 29 Jan 2024 11:34:13 -0800 Subject: [PATCH 4/4] javadoc refresh --- README.MD | 2 +- docs/allclasses-frame.html | 95 - docs/allclasses-index.html | 272 +- ...llclasses-noframe.html => allclasses.html} | 16 +- docs/allpackages-index.html | 110 +- .../nuix/superutilities/SuperUtilities.html | 541 +- .../annotations/AnnotationEvent.html | 287 +- .../AnnotationHistoryRepository.html | 948 +- .../AnnotationHistoryRepositorySummary.html | 233 +- .../annotations/AnnotationMatchingMethod.html | 292 +- .../annotations/AnnotationRepository.html | 523 +- .../annotations/AnnotationSyncSettings.html | 387 +- .../annotations/BulkRedactor.html | 292 +- .../annotations/BulkRedactorProgressInfo.html | 296 +- .../annotations/BulkRedactorSettings.html | 508 +- .../annotations/CustodianEvent.html | 287 +- .../annotations/CustomMetadataEvent.html | 391 +- .../annotations/ExclusionEvent.html | 287 +- .../annotations/ItemSetEvent.html | 339 +- .../NuixImageAnnotationRegion.html | 469 +- .../annotations/ProductionSetEvent.html | 261 +- .../superutilities/annotations/TagEvent.html | 287 +- .../class-use/AnnotationEvent.html | 171 - .../AnnotationHistoryRepository.html | 146 - .../AnnotationHistoryRepositorySummary.html | 146 - .../class-use/AnnotationMatchingMethod.html | 187 - .../class-use/AnnotationRepository.html | 98 - .../class-use/AnnotationSyncSettings.html | 149 - .../annotations/class-use/BulkRedactor.html | 98 - .../class-use/BulkRedactorProgressInfo.html | 148 - .../class-use/BulkRedactorSettings.html | 151 - .../annotations/class-use/CustodianEvent.html | 153 - .../class-use/CustomMetadataEvent.html | 153 - .../annotations/class-use/ExclusionEvent.html | 153 - .../annotations/class-use/ItemSetEvent.html | 153 - .../class-use/NuixImageAnnotationRegion.html | 159 - .../class-use/ProductionSetEvent.html | 153 - .../annotations/class-use/TagEvent.html | 153 - .../annotations/package-frame.html | 37 - .../annotations/package-summary.html | 114 +- .../annotations/package-tree.html | 106 +- .../annotations/package-use.html | 199 - .../cases/BulkCaseProcessor.html | 369 +- .../superutilities/cases/CaseConsumer.html | 189 +- .../cases/CaseHistoryHelper.html | 300 +- .../nuix/superutilities/cases/CaseInfo.html | 635 +- .../cases/CaseIssueReaction.html | 307 +- .../superutilities/cases/CaseLockInfo.html | 339 +- .../cases/CaseLockedEventInfo.html | 300 +- .../cases/CaseOpenErrorEvent.html | 317 +- .../superutilities/cases/CaseUtility.html | 424 +- .../cases/WorkFunctionErrorEvent.html | 304 +- .../cases/class-use/BulkCaseProcessor.html | 148 - .../cases/class-use/CaseConsumer.html | 166 - .../cases/class-use/CaseHistoryHelper.html | 151 - .../cases/class-use/CaseInfo.html | 299 - .../cases/class-use/CaseIssueReaction.html | 214 - .../cases/class-use/CaseLockInfo.html | 148 - .../cases/class-use/CaseLockedEventInfo.html | 148 - .../cases/class-use/CaseOpenErrorEvent.html | 148 - .../cases/class-use/CaseUtility.html | 178 - .../class-use/WorkFunctionErrorEvent.html | 149 - .../superutilities/cases/package-frame.html | 34 - .../superutilities/cases/package-summary.html | 120 +- .../superutilities/cases/package-tree.html | 108 +- .../superutilities/cases/package-use.html | 234 - .../class-use/SuperUtilities.html | 156 - .../export/ChunkedDATExporter.ChunkInfo.html | 246 +- .../export/ChunkedDATExporter.html | 460 +- .../superutilities/export/CustomExporter.html | 552 +- .../superutilities/export/JsonExporter.html | 845 +- .../superutilities/export/PdfWorkCache.html | 291 +- .../export/TemplateExporter.html | 357 +- .../ChunkedDATExporter.ChunkInfo.html | 98 - .../export/class-use/ChunkedDATExporter.html | 98 - .../export/class-use/CustomExporter.html | 98 - .../export/class-use/JsonExporter.html | 179 - .../export/class-use/PdfWorkCache.html | 98 - .../export/class-use/TemplateExporter.html | 155 - .../superutilities/export/package-frame.html | 23 - .../export/package-summary.html | 108 +- .../superutilities/export/package-tree.html | 102 +- .../superutilities/export/package-use.html | 177 - .../items/SuperItemUtility.html | 446 +- .../items/class-use/SuperItemUtility.html | 178 - .../superutilities/items/package-frame.html | 19 - .../superutilities/items/package-summary.html | 108 +- .../superutilities/items/package-tree.html | 102 +- .../superutilities/items/package-use.html | 176 - .../superutilities/loadfiles/DatLoadFile.html | 336 +- .../loadfiles/DatLoadFileReader.html | 239 +- .../loadfiles/DatLoadFileWriter.html | 308 +- .../superutilities/loadfiles/OptLoadFile.html | 351 +- .../superutilities/loadfiles/OptRecord.html | 426 +- .../loadfiles/SimpleTextFileReader.html | 239 +- .../loadfiles/SimpleTextFileWriter.html | 337 +- .../loadfiles/class-use/DatLoadFile.html | 98 - .../class-use/DatLoadFileReader.html | 98 - .../class-use/DatLoadFileWriter.html | 98 - .../loadfiles/class-use/OptLoadFile.html | 151 - .../loadfiles/class-use/OptRecord.html | 215 - .../class-use/SimpleTextFileReader.html | 98 - .../class-use/SimpleTextFileWriter.html | 146 - .../loadfiles/package-frame.html | 25 - .../loadfiles/package-summary.html | 108 +- .../loadfiles/package-tree.html | 102 +- .../superutilities/loadfiles/package-use.html | 151 - .../nuix/superutilities/misc/DigestList.html | 644 +- .../superutilities/misc/DriveSpaceInfo.html | 352 +- .../superutilities/misc/ExpandedTermInfo.html | 343 +- .../superutilities/misc/FormatUtility.html | 605 +- .../superutilities/misc/FreeSpaceMonitor.html | 304 +- .../misc/FreeSpaceMonitorEventCallback.html | 181 +- .../superutilities/misc/FuzzyTermInfo.html | 335 +- .../misc/LevenshteinDistance.html | 237 +- .../superutilities/misc/NamedStringList.html | 680 +- .../nuix/superutilities/misc/NuixVersion.html | 550 +- .../nuix/superutilities/misc/PdfUtility.html | 424 +- .../misc/PlaceholderResolver.html | 381 +- .../superutilities/misc/ProfileDigester.html | 455 +- .../superutilities/misc/SQLiteBacked.html | 476 +- .../misc/SimilarityCalculation.html | 318 +- .../superutilities/misc/TermExpander.html | 334 +- .../nuix/superutilities/misc/ZipHelper.html | 262 +- .../misc/class-use/DigestList.html | 98 - .../misc/class-use/DriveSpaceInfo.html | 147 - .../misc/class-use/ExpandedTermInfo.html | 170 - .../misc/class-use/FormatUtility.html | 178 - .../misc/class-use/FreeSpaceMonitor.html | 179 - .../FreeSpaceMonitorEventCallback.html | 164 - .../misc/class-use/FuzzyTermInfo.html | 148 - .../misc/class-use/LevenshteinDistance.html | 98 - .../misc/class-use/NamedStringList.html | 157 - .../misc/class-use/NuixVersion.html | 236 - .../misc/class-use/PdfUtility.html | 98 - .../misc/class-use/PlaceholderResolver.html | 98 - .../misc/class-use/ProfileDigester.html | 98 - .../misc/class-use/SQLiteBacked.html | 148 - .../misc/class-use/SimilarityCalculation.html | 184 - .../misc/class-use/TermExpander.html | 98 - .../misc/class-use/ZipHelper.html | 98 - .../superutilities/misc/package-frame.html | 41 - .../superutilities/misc/package-summary.html | 120 +- .../superutilities/misc/package-tree.html | 108 +- .../nuix/superutilities/misc/package-use.html | 265 - .../NamedEntityRedactionProgressCallback.html | 185 +- .../NamedEntityRedactionResults.html | 335 +- .../NamedEntityRedactionSettings.html | 482 +- .../namedentities/NamedEntityUtility.html | 372 +- .../NamedEntityRedactionProgressCallback.html | 148 - .../NamedEntityRedactionResults.html | 226 - .../NamedEntityRedactionSettings.html | 198 - .../class-use/NamedEntityUtility.html | 98 - .../namedentities/package-frame.html | 25 - .../namedentities/package-summary.html | 114 +- .../namedentities/package-tree.html | 104 +- .../namedentities/package-use.html | 158 - .../nuix/superutilities/package-frame.html | 19 - .../nuix/superutilities/package-summary.html | 108 +- .../com/nuix/superutilities/package-tree.html | 102 +- docs/com/nuix/superutilities/package-use.html | 145 - .../superutilities/query/QueryHelper.html | 391 +- .../query/class-use/QueryHelper.html | 98 - .../superutilities/query/package-frame.html | 19 - .../superutilities/query/package-summary.html | 108 +- .../superutilities/query/package-tree.html | 102 +- .../superutilities/query/package-use.html | 98 - .../regex/ItemRegexMatchCollection.html | 324 +- .../superutilities/regex/PatternInfo.html | 286 +- .../nuix/superutilities/regex/RegexMatch.html | 350 +- .../superutilities/regex/RegexScanError.html | 299 +- .../superutilities/regex/RegexScanner.html | 823 +- .../class-use/ItemRegexMatchCollection.html | 187 - .../regex/class-use/PatternInfo.html | 254 - .../regex/class-use/RegexMatch.html | 162 - .../regex/class-use/RegexScanError.html | 148 - .../regex/class-use/RegexScanner.html | 148 - .../superutilities/regex/package-frame.html | 23 - .../superutilities/regex/package-summary.html | 108 +- .../superutilities/regex/package-tree.html | 102 +- .../superutilities/regex/package-use.html | 192 - .../reporting/AsposeCellsColorHelper.html | 281 +- .../reporting/AsposeCellsStyleHelper.html | 237 +- .../superutilities/reporting/ColorRing.html | 320 +- .../reporting/ColumnValueGenerator.html | 351 +- .../reporting/IntersectionReport.html | 320 +- .../IntersectionReportProgressCallback.html | 177 +- .../IntersectionReportSheetConfiguration.html | 555 +- .../superutilities/reporting/NamedQuery.html | 287 +- .../ScriptedColumnValueGenerator.html | 298 +- .../reporting/SimpleWorksheet.html | 425 +- .../superutilities/reporting/SimpleXlsx.html | 330 +- .../class-use/AsposeCellsColorHelper.html | 98 - .../class-use/AsposeCellsStyleHelper.html | 98 - .../reporting/class-use/ColorRing.html | 165 - .../class-use/ColumnValueGenerator.html | 190 - .../class-use/IntersectionReport.html | 98 - .../IntersectionReportProgressCallback.html | 146 - .../IntersectionReportSheetConfiguration.html | 150 - .../reporting/class-use/NamedQuery.html | 211 - .../ScriptedColumnValueGenerator.html | 98 - .../reporting/class-use/SimpleWorksheet.html | 146 - .../reporting/class-use/SimpleXlsx.html | 98 - .../reporting/package-frame.html | 32 - .../reporting/package-summary.html | 114 +- .../reporting/package-tree.html | 104 +- .../superutilities/reporting/package-use.html | 172 - docs/constant-values.html | 102 +- docs/deprecated-list.html | 100 +- docs/help-doc.html | 156 +- docs/index-all.html | 3428 +++++ docs/index-files/index-1.html | 313 - docs/index-files/index-10.html | 118 - docs/index-files/index-11.html | 116 - docs/index-files/index-12.html | 164 - docs/index-files/index-13.html | 187 - docs/index-files/index-14.html | 129 - docs/index-files/index-15.html | 171 - docs/index-files/index-16.html | 108 - docs/index-files/index-17.html | 250 - docs/index-files/index-18.html | 690 - docs/index-files/index-19.html | 197 - docs/index-files/index-2.html | 167 - docs/index-files/index-20.html | 108 - docs/index-files/index-21.html | 131 - docs/index-files/index-22.html | 228 - docs/index-files/index-23.html | 112 - docs/index-files/index-24.html | 108 - docs/index-files/index-3.html | 363 - docs/index-files/index-4.html | 146 - docs/index-files/index-5.html | 289 - docs/index-files/index-6.html | 230 - docs/index-files/index-7.html | 899 -- docs/index-files/index-8.html | 128 - docs/index-files/index-9.html | 221 - docs/index.html | 109 +- docs/jquery-ui.overrides.css | 35 + .../external/jquery/jquery.js | 1240 +- docs/jquery/jquery-3.6.1.min.js | 2 + docs/jquery/jquery-ui.min.css | 6 + docs/jquery/jquery-ui.min.js | 6 + .../jszip-utils/dist/jszip-utils-ie.js | 0 .../jszip-utils/dist/jszip-utils-ie.min.js | 0 .../jszip-utils/dist/jszip-utils.js | 0 .../jszip-utils/dist/jszip-utils.min.js | 0 .../jszip/dist/jszip.js | 533 +- docs/jquery/jszip/dist/jszip.min.js | 13 + docs/legal/ADDITIONAL_LICENSE_INFO | 1 + docs/legal/ASSEMBLY_EXCEPTION | 1 + docs/legal/LICENSE | 1 + docs/legal/jquery.md | 72 + docs/legal/jqueryUI.md | 49 + docs/legal/jszip.md | 653 + docs/legal/pako.md | 45 + docs/member-search-index.js | 2 +- docs/member-search-index.zip | Bin 11578 -> 11837 bytes docs/overview-frame.html | 30 - docs/overview-summary.html | 12 +- docs/overview-tree.html | 108 +- docs/package-list | 11 - docs/package-search-index.zip | Bin 304 -> 304 bytes .../images/ui-bg_glass_55_fbf9ee_1x400.png | Bin 335 -> 0 bytes .../images/ui-bg_glass_65_dadada_1x400.png | Bin 262 -> 0 bytes .../images/ui-bg_glass_75_dadada_1x400.png | Bin 262 -> 0 bytes .../images/ui-bg_glass_75_e6e6e6_1x400.png | Bin 262 -> 0 bytes .../images/ui-bg_glass_95_fef1ec_1x400.png | Bin 332 -> 0 bytes .../ui-bg_highlight-soft_75_cccccc_1x100.png | Bin 280 -> 0 bytes .../images/ui-icons_222222_256x240.png | Bin 6922 -> 0 bytes .../images/ui-icons_2e83ff_256x240.png | Bin 4549 -> 0 bytes .../images/ui-icons_454545_256x240.png | Bin 6992 -> 0 bytes .../images/ui-icons_888888_256x240.png | Bin 6999 -> 0 bytes .../images/ui-icons_cd0a0a_256x240.png | Bin 4549 -> 0 bytes docs/script-dir/jquery-3.4.1.js | 10598 ---------------- docs/script-dir/jquery-ui.css | 582 - docs/script-dir/jquery-ui.js | 2659 ---- docs/script-dir/jquery-ui.min.css | 7 - docs/script-dir/jquery-ui.min.js | 6 - docs/script-dir/jquery-ui.structure.css | 156 - docs/script-dir/jquery-ui.structure.min.css | 5 - docs/script-dir/jszip/dist/jszip.min.js | 15 - docs/script.js | 40 +- docs/search.js | 270 +- docs/stylesheet.css | 420 +- docs/system-properties.html | 106 - docs/type-search-index.zip | Bin 1016 -> 1016 bytes 285 files changed, 26459 insertions(+), 47324 deletions(-) delete mode 100644 docs/allclasses-frame.html rename docs/{allclasses-noframe.html => allclasses.html} (93%) delete mode 100644 docs/com/nuix/superutilities/annotations/class-use/AnnotationEvent.html delete mode 100644 docs/com/nuix/superutilities/annotations/class-use/AnnotationHistoryRepository.html delete mode 100644 docs/com/nuix/superutilities/annotations/class-use/AnnotationHistoryRepositorySummary.html delete mode 100644 docs/com/nuix/superutilities/annotations/class-use/AnnotationMatchingMethod.html delete mode 100644 docs/com/nuix/superutilities/annotations/class-use/AnnotationRepository.html delete mode 100644 docs/com/nuix/superutilities/annotations/class-use/AnnotationSyncSettings.html delete mode 100644 docs/com/nuix/superutilities/annotations/class-use/BulkRedactor.html delete mode 100644 docs/com/nuix/superutilities/annotations/class-use/BulkRedactorProgressInfo.html delete mode 100644 docs/com/nuix/superutilities/annotations/class-use/BulkRedactorSettings.html delete mode 100644 docs/com/nuix/superutilities/annotations/class-use/CustodianEvent.html delete mode 100644 docs/com/nuix/superutilities/annotations/class-use/CustomMetadataEvent.html delete mode 100644 docs/com/nuix/superutilities/annotations/class-use/ExclusionEvent.html delete mode 100644 docs/com/nuix/superutilities/annotations/class-use/ItemSetEvent.html delete mode 100644 docs/com/nuix/superutilities/annotations/class-use/NuixImageAnnotationRegion.html delete mode 100644 docs/com/nuix/superutilities/annotations/class-use/ProductionSetEvent.html delete mode 100644 docs/com/nuix/superutilities/annotations/class-use/TagEvent.html delete mode 100644 docs/com/nuix/superutilities/annotations/package-frame.html delete mode 100644 docs/com/nuix/superutilities/annotations/package-use.html delete mode 100644 docs/com/nuix/superutilities/cases/class-use/BulkCaseProcessor.html delete mode 100644 docs/com/nuix/superutilities/cases/class-use/CaseConsumer.html delete mode 100644 docs/com/nuix/superutilities/cases/class-use/CaseHistoryHelper.html delete mode 100644 docs/com/nuix/superutilities/cases/class-use/CaseInfo.html delete mode 100644 docs/com/nuix/superutilities/cases/class-use/CaseIssueReaction.html delete mode 100644 docs/com/nuix/superutilities/cases/class-use/CaseLockInfo.html delete mode 100644 docs/com/nuix/superutilities/cases/class-use/CaseLockedEventInfo.html delete mode 100644 docs/com/nuix/superutilities/cases/class-use/CaseOpenErrorEvent.html delete mode 100644 docs/com/nuix/superutilities/cases/class-use/CaseUtility.html delete mode 100644 docs/com/nuix/superutilities/cases/class-use/WorkFunctionErrorEvent.html delete mode 100644 docs/com/nuix/superutilities/cases/package-frame.html delete mode 100644 docs/com/nuix/superutilities/cases/package-use.html delete mode 100644 docs/com/nuix/superutilities/class-use/SuperUtilities.html delete mode 100644 docs/com/nuix/superutilities/export/class-use/ChunkedDATExporter.ChunkInfo.html delete mode 100644 docs/com/nuix/superutilities/export/class-use/ChunkedDATExporter.html delete mode 100644 docs/com/nuix/superutilities/export/class-use/CustomExporter.html delete mode 100644 docs/com/nuix/superutilities/export/class-use/JsonExporter.html delete mode 100644 docs/com/nuix/superutilities/export/class-use/PdfWorkCache.html delete mode 100644 docs/com/nuix/superutilities/export/class-use/TemplateExporter.html delete mode 100644 docs/com/nuix/superutilities/export/package-frame.html delete mode 100644 docs/com/nuix/superutilities/export/package-use.html delete mode 100644 docs/com/nuix/superutilities/items/class-use/SuperItemUtility.html delete mode 100644 docs/com/nuix/superutilities/items/package-frame.html delete mode 100644 docs/com/nuix/superutilities/items/package-use.html delete mode 100644 docs/com/nuix/superutilities/loadfiles/class-use/DatLoadFile.html delete mode 100644 docs/com/nuix/superutilities/loadfiles/class-use/DatLoadFileReader.html delete mode 100644 docs/com/nuix/superutilities/loadfiles/class-use/DatLoadFileWriter.html delete mode 100644 docs/com/nuix/superutilities/loadfiles/class-use/OptLoadFile.html delete mode 100644 docs/com/nuix/superutilities/loadfiles/class-use/OptRecord.html delete mode 100644 docs/com/nuix/superutilities/loadfiles/class-use/SimpleTextFileReader.html delete mode 100644 docs/com/nuix/superutilities/loadfiles/class-use/SimpleTextFileWriter.html delete mode 100644 docs/com/nuix/superutilities/loadfiles/package-frame.html delete mode 100644 docs/com/nuix/superutilities/loadfiles/package-use.html delete mode 100644 docs/com/nuix/superutilities/misc/class-use/DigestList.html delete mode 100644 docs/com/nuix/superutilities/misc/class-use/DriveSpaceInfo.html delete mode 100644 docs/com/nuix/superutilities/misc/class-use/ExpandedTermInfo.html delete mode 100644 docs/com/nuix/superutilities/misc/class-use/FormatUtility.html delete mode 100644 docs/com/nuix/superutilities/misc/class-use/FreeSpaceMonitor.html delete mode 100644 docs/com/nuix/superutilities/misc/class-use/FreeSpaceMonitorEventCallback.html delete mode 100644 docs/com/nuix/superutilities/misc/class-use/FuzzyTermInfo.html delete mode 100644 docs/com/nuix/superutilities/misc/class-use/LevenshteinDistance.html delete mode 100644 docs/com/nuix/superutilities/misc/class-use/NamedStringList.html delete mode 100644 docs/com/nuix/superutilities/misc/class-use/NuixVersion.html delete mode 100644 docs/com/nuix/superutilities/misc/class-use/PdfUtility.html delete mode 100644 docs/com/nuix/superutilities/misc/class-use/PlaceholderResolver.html delete mode 100644 docs/com/nuix/superutilities/misc/class-use/ProfileDigester.html delete mode 100644 docs/com/nuix/superutilities/misc/class-use/SQLiteBacked.html delete mode 100644 docs/com/nuix/superutilities/misc/class-use/SimilarityCalculation.html delete mode 100644 docs/com/nuix/superutilities/misc/class-use/TermExpander.html delete mode 100644 docs/com/nuix/superutilities/misc/class-use/ZipHelper.html delete mode 100644 docs/com/nuix/superutilities/misc/package-frame.html delete mode 100644 docs/com/nuix/superutilities/misc/package-use.html delete mode 100644 docs/com/nuix/superutilities/namedentities/class-use/NamedEntityRedactionProgressCallback.html delete mode 100644 docs/com/nuix/superutilities/namedentities/class-use/NamedEntityRedactionResults.html delete mode 100644 docs/com/nuix/superutilities/namedentities/class-use/NamedEntityRedactionSettings.html delete mode 100644 docs/com/nuix/superutilities/namedentities/class-use/NamedEntityUtility.html delete mode 100644 docs/com/nuix/superutilities/namedentities/package-frame.html delete mode 100644 docs/com/nuix/superutilities/namedentities/package-use.html delete mode 100644 docs/com/nuix/superutilities/package-frame.html delete mode 100644 docs/com/nuix/superutilities/package-use.html delete mode 100644 docs/com/nuix/superutilities/query/class-use/QueryHelper.html delete mode 100644 docs/com/nuix/superutilities/query/package-frame.html delete mode 100644 docs/com/nuix/superutilities/query/package-use.html delete mode 100644 docs/com/nuix/superutilities/regex/class-use/ItemRegexMatchCollection.html delete mode 100644 docs/com/nuix/superutilities/regex/class-use/PatternInfo.html delete mode 100644 docs/com/nuix/superutilities/regex/class-use/RegexMatch.html delete mode 100644 docs/com/nuix/superutilities/regex/class-use/RegexScanError.html delete mode 100644 docs/com/nuix/superutilities/regex/class-use/RegexScanner.html delete mode 100644 docs/com/nuix/superutilities/regex/package-frame.html delete mode 100644 docs/com/nuix/superutilities/regex/package-use.html delete mode 100644 docs/com/nuix/superutilities/reporting/class-use/AsposeCellsColorHelper.html delete mode 100644 docs/com/nuix/superutilities/reporting/class-use/AsposeCellsStyleHelper.html delete mode 100644 docs/com/nuix/superutilities/reporting/class-use/ColorRing.html delete mode 100644 docs/com/nuix/superutilities/reporting/class-use/ColumnValueGenerator.html delete mode 100644 docs/com/nuix/superutilities/reporting/class-use/IntersectionReport.html delete mode 100644 docs/com/nuix/superutilities/reporting/class-use/IntersectionReportProgressCallback.html delete mode 100644 docs/com/nuix/superutilities/reporting/class-use/IntersectionReportSheetConfiguration.html delete mode 100644 docs/com/nuix/superutilities/reporting/class-use/NamedQuery.html delete mode 100644 docs/com/nuix/superutilities/reporting/class-use/ScriptedColumnValueGenerator.html delete mode 100644 docs/com/nuix/superutilities/reporting/class-use/SimpleWorksheet.html delete mode 100644 docs/com/nuix/superutilities/reporting/class-use/SimpleXlsx.html delete mode 100644 docs/com/nuix/superutilities/reporting/package-frame.html delete mode 100644 docs/com/nuix/superutilities/reporting/package-use.html create mode 100644 docs/index-all.html delete mode 100644 docs/index-files/index-1.html delete mode 100644 docs/index-files/index-10.html delete mode 100644 docs/index-files/index-11.html delete mode 100644 docs/index-files/index-12.html delete mode 100644 docs/index-files/index-13.html delete mode 100644 docs/index-files/index-14.html delete mode 100644 docs/index-files/index-15.html delete mode 100644 docs/index-files/index-16.html delete mode 100644 docs/index-files/index-17.html delete mode 100644 docs/index-files/index-18.html delete mode 100644 docs/index-files/index-19.html delete mode 100644 docs/index-files/index-2.html delete mode 100644 docs/index-files/index-20.html delete mode 100644 docs/index-files/index-21.html delete mode 100644 docs/index-files/index-22.html delete mode 100644 docs/index-files/index-23.html delete mode 100644 docs/index-files/index-24.html delete mode 100644 docs/index-files/index-3.html delete mode 100644 docs/index-files/index-4.html delete mode 100644 docs/index-files/index-5.html delete mode 100644 docs/index-files/index-6.html delete mode 100644 docs/index-files/index-7.html delete mode 100644 docs/index-files/index-8.html delete mode 100644 docs/index-files/index-9.html create mode 100644 docs/jquery-ui.overrides.css rename docs/{script-dir => jquery}/external/jquery/jquery.js (91%) create mode 100644 docs/jquery/jquery-3.6.1.min.js create mode 100644 docs/jquery/jquery-ui.min.css create mode 100644 docs/jquery/jquery-ui.min.js rename docs/{script-dir => jquery}/jszip-utils/dist/jszip-utils-ie.js (100%) rename docs/{script-dir => jquery}/jszip-utils/dist/jszip-utils-ie.min.js (100%) rename docs/{script-dir => jquery}/jszip-utils/dist/jszip-utils.js (100%) rename docs/{script-dir => jquery}/jszip-utils/dist/jszip-utils.min.js (100%) rename docs/{script-dir => jquery}/jszip/dist/jszip.js (95%) create mode 100644 docs/jquery/jszip/dist/jszip.min.js create mode 100644 docs/legal/ADDITIONAL_LICENSE_INFO create mode 100644 docs/legal/ASSEMBLY_EXCEPTION create mode 100644 docs/legal/LICENSE create mode 100644 docs/legal/jquery.md create mode 100644 docs/legal/jqueryUI.md create mode 100644 docs/legal/jszip.md create mode 100644 docs/legal/pako.md delete mode 100644 docs/overview-frame.html delete mode 100644 docs/package-list delete mode 100644 docs/script-dir/images/ui-bg_glass_55_fbf9ee_1x400.png delete mode 100644 docs/script-dir/images/ui-bg_glass_65_dadada_1x400.png delete mode 100644 docs/script-dir/images/ui-bg_glass_75_dadada_1x400.png delete mode 100644 docs/script-dir/images/ui-bg_glass_75_e6e6e6_1x400.png delete mode 100644 docs/script-dir/images/ui-bg_glass_95_fef1ec_1x400.png delete mode 100644 docs/script-dir/images/ui-bg_highlight-soft_75_cccccc_1x100.png delete mode 100644 docs/script-dir/images/ui-icons_222222_256x240.png delete mode 100644 docs/script-dir/images/ui-icons_2e83ff_256x240.png delete mode 100644 docs/script-dir/images/ui-icons_454545_256x240.png delete mode 100644 docs/script-dir/images/ui-icons_888888_256x240.png delete mode 100644 docs/script-dir/images/ui-icons_cd0a0a_256x240.png delete mode 100644 docs/script-dir/jquery-3.4.1.js delete mode 100644 docs/script-dir/jquery-ui.css delete mode 100644 docs/script-dir/jquery-ui.js delete mode 100644 docs/script-dir/jquery-ui.min.css delete mode 100644 docs/script-dir/jquery-ui.min.js delete mode 100644 docs/script-dir/jquery-ui.structure.css delete mode 100644 docs/script-dir/jquery-ui.structure.min.css delete mode 100644 docs/script-dir/jszip/dist/jszip.min.js delete mode 100644 docs/system-properties.html diff --git a/README.MD b/README.MD index f6627c8..d5086fd 100644 --- a/README.MD +++ b/README.MD @@ -1,7 +1,7 @@ SuperUtilities ============== -![This code was last tested in Nuix 9.0](https://img.shields.io/badge/Tested%20in%20Nuix-9.0-green.svg) + # Overview diff --git a/docs/allclasses-frame.html b/docs/allclasses-frame.html deleted file mode 100644 index 63952f8..0000000 --- a/docs/allclasses-frame.html +++ /dev/null @@ -1,95 +0,0 @@ - - - - - -All Classes - - - - -

All Classes

- - - diff --git a/docs/allclasses-index.html b/docs/allclasses-index.html index 73ff2d8..5283966 100644 --- a/docs/allclasses-index.html +++ b/docs/allclasses-index.html @@ -3,36 +3,45 @@ -All Classes - - - +All Classes (SuperUtilities API) + - + + - - + + - - + + - - -
-
- diff --git a/docs/allclasses-noframe.html b/docs/allclasses.html similarity index 93% rename from docs/allclasses-noframe.html rename to docs/allclasses.html index 391b177..15b36ea 100644 --- a/docs/allclasses-noframe.html +++ b/docs/allclasses.html @@ -1,13 +1,24 @@ - + -All Classes +All Classes (SuperUtilities API) + + + + + + + + +

All Classes

+
diff --git a/docs/allpackages-index.html b/docs/allpackages-index.html index 42ef7c1..a6c3f14 100644 --- a/docs/allpackages-index.html +++ b/docs/allpackages-index.html @@ -3,30 +3,39 @@ -All Packages - - - +All Packages (SuperUtilities API) + - + + - - + + - - + + - - -
-
- diff --git a/docs/com/nuix/superutilities/SuperUtilities.html b/docs/com/nuix/superutilities/SuperUtilities.html index daa98ad..5d390e5 100644 --- a/docs/com/nuix/superutilities/SuperUtilities.html +++ b/docs/com/nuix/superutilities/SuperUtilities.html @@ -3,36 +3,45 @@ -SuperUtilities - - - +SuperUtilities (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/annotations/AnnotationEvent.html b/docs/com/nuix/superutilities/annotations/AnnotationEvent.html index 3cb18e3..93d5d8d 100644 --- a/docs/com/nuix/superutilities/annotations/AnnotationEvent.html +++ b/docs/com/nuix/superutilities/annotations/AnnotationEvent.html @@ -3,36 +3,45 @@ -AnnotationEvent - - - +AnnotationEvent (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/annotations/AnnotationHistoryRepository.html b/docs/com/nuix/superutilities/annotations/AnnotationHistoryRepository.html index 77725d7..cb9f4f1 100644 --- a/docs/com/nuix/superutilities/annotations/AnnotationHistoryRepository.html +++ b/docs/com/nuix/superutilities/annotations/AnnotationHistoryRepository.html @@ -3,36 +3,45 @@ -AnnotationHistoryRepository - - - +AnnotationHistoryRepository (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/annotations/AnnotationHistoryRepositorySummary.html b/docs/com/nuix/superutilities/annotations/AnnotationHistoryRepositorySummary.html index ddbb8e9..762f348 100644 --- a/docs/com/nuix/superutilities/annotations/AnnotationHistoryRepositorySummary.html +++ b/docs/com/nuix/superutilities/annotations/AnnotationHistoryRepositorySummary.html @@ -3,36 +3,45 @@ -AnnotationHistoryRepositorySummary - - - +AnnotationHistoryRepositorySummary (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/annotations/AnnotationMatchingMethod.html b/docs/com/nuix/superutilities/annotations/AnnotationMatchingMethod.html index 7c661a8..2776bde 100644 --- a/docs/com/nuix/superutilities/annotations/AnnotationMatchingMethod.html +++ b/docs/com/nuix/superutilities/annotations/AnnotationMatchingMethod.html @@ -3,36 +3,45 @@ -AnnotationMatchingMethod - - - +AnnotationMatchingMethod (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/annotations/AnnotationRepository.html b/docs/com/nuix/superutilities/annotations/AnnotationRepository.html index ee2917b..2da0f53 100644 --- a/docs/com/nuix/superutilities/annotations/AnnotationRepository.html +++ b/docs/com/nuix/superutilities/annotations/AnnotationRepository.html @@ -3,36 +3,45 @@ -AnnotationRepository - - - +AnnotationRepository (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/annotations/AnnotationSyncSettings.html b/docs/com/nuix/superutilities/annotations/AnnotationSyncSettings.html index 3f03e25..9807789 100644 --- a/docs/com/nuix/superutilities/annotations/AnnotationSyncSettings.html +++ b/docs/com/nuix/superutilities/annotations/AnnotationSyncSettings.html @@ -3,36 +3,45 @@ -AnnotationSyncSettings - - - +AnnotationSyncSettings (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/annotations/BulkRedactor.html b/docs/com/nuix/superutilities/annotations/BulkRedactor.html index 4bd378c..fbc0e3f 100644 --- a/docs/com/nuix/superutilities/annotations/BulkRedactor.html +++ b/docs/com/nuix/superutilities/annotations/BulkRedactor.html @@ -3,36 +3,45 @@ -BulkRedactor - - - +BulkRedactor (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/annotations/BulkRedactorProgressInfo.html b/docs/com/nuix/superutilities/annotations/BulkRedactorProgressInfo.html index 2393c8e..3b20144 100644 --- a/docs/com/nuix/superutilities/annotations/BulkRedactorProgressInfo.html +++ b/docs/com/nuix/superutilities/annotations/BulkRedactorProgressInfo.html @@ -3,36 +3,45 @@ -BulkRedactorProgressInfo - - - +BulkRedactorProgressInfo (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/annotations/BulkRedactorSettings.html b/docs/com/nuix/superutilities/annotations/BulkRedactorSettings.html index 0da0c38..425797c 100644 --- a/docs/com/nuix/superutilities/annotations/BulkRedactorSettings.html +++ b/docs/com/nuix/superutilities/annotations/BulkRedactorSettings.html @@ -3,36 +3,45 @@ -BulkRedactorSettings - - - +BulkRedactorSettings (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/annotations/CustodianEvent.html b/docs/com/nuix/superutilities/annotations/CustodianEvent.html index 4b32bd5..bd2d193 100644 --- a/docs/com/nuix/superutilities/annotations/CustodianEvent.html +++ b/docs/com/nuix/superutilities/annotations/CustodianEvent.html @@ -3,36 +3,45 @@ -CustodianEvent - - - +CustodianEvent (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/annotations/CustomMetadataEvent.html b/docs/com/nuix/superutilities/annotations/CustomMetadataEvent.html index 20b3053..816467b 100644 --- a/docs/com/nuix/superutilities/annotations/CustomMetadataEvent.html +++ b/docs/com/nuix/superutilities/annotations/CustomMetadataEvent.html @@ -3,36 +3,45 @@ -CustomMetadataEvent - - - +CustomMetadataEvent (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/annotations/ExclusionEvent.html b/docs/com/nuix/superutilities/annotations/ExclusionEvent.html index 3188ea5..498c689 100644 --- a/docs/com/nuix/superutilities/annotations/ExclusionEvent.html +++ b/docs/com/nuix/superutilities/annotations/ExclusionEvent.html @@ -3,36 +3,45 @@ -ExclusionEvent - - - +ExclusionEvent (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/annotations/ItemSetEvent.html b/docs/com/nuix/superutilities/annotations/ItemSetEvent.html index af264da..1f3bedc 100644 --- a/docs/com/nuix/superutilities/annotations/ItemSetEvent.html +++ b/docs/com/nuix/superutilities/annotations/ItemSetEvent.html @@ -3,36 +3,45 @@ -ItemSetEvent - - - +ItemSetEvent (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/annotations/NuixImageAnnotationRegion.html b/docs/com/nuix/superutilities/annotations/NuixImageAnnotationRegion.html index 058a858..a32e6f3 100644 --- a/docs/com/nuix/superutilities/annotations/NuixImageAnnotationRegion.html +++ b/docs/com/nuix/superutilities/annotations/NuixImageAnnotationRegion.html @@ -3,36 +3,45 @@ -NuixImageAnnotationRegion - - - +NuixImageAnnotationRegion (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/annotations/ProductionSetEvent.html b/docs/com/nuix/superutilities/annotations/ProductionSetEvent.html index 02494f9..c1400dd 100644 --- a/docs/com/nuix/superutilities/annotations/ProductionSetEvent.html +++ b/docs/com/nuix/superutilities/annotations/ProductionSetEvent.html @@ -3,36 +3,45 @@ -ProductionSetEvent - - - +ProductionSetEvent (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/annotations/TagEvent.html b/docs/com/nuix/superutilities/annotations/TagEvent.html index b15b9b8..e65b606 100644 --- a/docs/com/nuix/superutilities/annotations/TagEvent.html +++ b/docs/com/nuix/superutilities/annotations/TagEvent.html @@ -3,36 +3,45 @@ -TagEvent - - - +TagEvent (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/annotations/class-use/AnnotationEvent.html b/docs/com/nuix/superutilities/annotations/class-use/AnnotationEvent.html deleted file mode 100644 index 115984e..0000000 --- a/docs/com/nuix/superutilities/annotations/class-use/AnnotationEvent.html +++ /dev/null @@ -1,171 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.annotations.AnnotationEvent - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.annotations.AnnotationEvent

-
-
-
- - - - - - - - - - - - - - -
Packages that use AnnotationEvent 
PackageDescription
com.nuix.superutilities.annotations 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/annotations/class-use/AnnotationHistoryRepository.html b/docs/com/nuix/superutilities/annotations/class-use/AnnotationHistoryRepository.html deleted file mode 100644 index 700286f..0000000 --- a/docs/com/nuix/superutilities/annotations/class-use/AnnotationHistoryRepository.html +++ /dev/null @@ -1,146 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.annotations.AnnotationHistoryRepository - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.annotations.AnnotationHistoryRepository

-
-
-
- - - - - - - - - - - - - - -
Packages that use AnnotationHistoryRepository 
PackageDescription
com.nuix.superutilities.annotations 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/annotations/class-use/AnnotationHistoryRepositorySummary.html b/docs/com/nuix/superutilities/annotations/class-use/AnnotationHistoryRepositorySummary.html deleted file mode 100644 index 8caa703..0000000 --- a/docs/com/nuix/superutilities/annotations/class-use/AnnotationHistoryRepositorySummary.html +++ /dev/null @@ -1,146 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.annotations.AnnotationHistoryRepositorySummary - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.annotations.AnnotationHistoryRepositorySummary

-
-
-
- - - - - - - - - - - - - - -
Packages that use AnnotationHistoryRepositorySummary 
PackageDescription
com.nuix.superutilities.annotations 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/annotations/class-use/AnnotationMatchingMethod.html b/docs/com/nuix/superutilities/annotations/class-use/AnnotationMatchingMethod.html deleted file mode 100644 index e09c739..0000000 --- a/docs/com/nuix/superutilities/annotations/class-use/AnnotationMatchingMethod.html +++ /dev/null @@ -1,187 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.annotations.AnnotationMatchingMethod - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.annotations.AnnotationMatchingMethod

-
-
-
- - - - - - - - - - - - - - -
Packages that use AnnotationMatchingMethod 
PackageDescription
com.nuix.superutilities.annotations 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/annotations/class-use/AnnotationRepository.html b/docs/com/nuix/superutilities/annotations/class-use/AnnotationRepository.html deleted file mode 100644 index 1ff8d02..0000000 --- a/docs/com/nuix/superutilities/annotations/class-use/AnnotationRepository.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.annotations.AnnotationRepository - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.annotations.AnnotationRepository

-
-
No usage of com.nuix.superutilities.annotations.AnnotationRepository
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/annotations/class-use/AnnotationSyncSettings.html b/docs/com/nuix/superutilities/annotations/class-use/AnnotationSyncSettings.html deleted file mode 100644 index b689c86..0000000 --- a/docs/com/nuix/superutilities/annotations/class-use/AnnotationSyncSettings.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.annotations.AnnotationSyncSettings - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.annotations.AnnotationSyncSettings

-
-
-
- - - - - - - - - - - - - - -
Packages that use AnnotationSyncSettings 
PackageDescription
com.nuix.superutilities.annotations 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/annotations/class-use/BulkRedactor.html b/docs/com/nuix/superutilities/annotations/class-use/BulkRedactor.html deleted file mode 100644 index 68f0820..0000000 --- a/docs/com/nuix/superutilities/annotations/class-use/BulkRedactor.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.annotations.BulkRedactor - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.annotations.BulkRedactor

-
-
No usage of com.nuix.superutilities.annotations.BulkRedactor
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/annotations/class-use/BulkRedactorProgressInfo.html b/docs/com/nuix/superutilities/annotations/class-use/BulkRedactorProgressInfo.html deleted file mode 100644 index 3b9e118..0000000 --- a/docs/com/nuix/superutilities/annotations/class-use/BulkRedactorProgressInfo.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.annotations.BulkRedactorProgressInfo - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.annotations.BulkRedactorProgressInfo

-
-
-
- - - - - - - - - - - - - - -
Packages that use BulkRedactorProgressInfo 
PackageDescription
com.nuix.superutilities.annotations 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/annotations/class-use/BulkRedactorSettings.html b/docs/com/nuix/superutilities/annotations/class-use/BulkRedactorSettings.html deleted file mode 100644 index dd386a0..0000000 --- a/docs/com/nuix/superutilities/annotations/class-use/BulkRedactorSettings.html +++ /dev/null @@ -1,151 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.annotations.BulkRedactorSettings - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.annotations.BulkRedactorSettings

-
-
-
- - - - - - - - - - - - - - -
Packages that use BulkRedactorSettings 
PackageDescription
com.nuix.superutilities.annotations 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/annotations/class-use/CustodianEvent.html b/docs/com/nuix/superutilities/annotations/class-use/CustodianEvent.html deleted file mode 100644 index ac86da6..0000000 --- a/docs/com/nuix/superutilities/annotations/class-use/CustodianEvent.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.annotations.CustodianEvent - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.annotations.CustodianEvent

-
-
-
- - - - - - - - - - - - - - -
Packages that use CustodianEvent 
PackageDescription
com.nuix.superutilities.annotations 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/annotations/class-use/CustomMetadataEvent.html b/docs/com/nuix/superutilities/annotations/class-use/CustomMetadataEvent.html deleted file mode 100644 index 794bc5e..0000000 --- a/docs/com/nuix/superutilities/annotations/class-use/CustomMetadataEvent.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.annotations.CustomMetadataEvent - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.annotations.CustomMetadataEvent

-
-
-
- - - - - - - - - - - - - - -
Packages that use CustomMetadataEvent 
PackageDescription
com.nuix.superutilities.annotations 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/annotations/class-use/ExclusionEvent.html b/docs/com/nuix/superutilities/annotations/class-use/ExclusionEvent.html deleted file mode 100644 index 2244ad2..0000000 --- a/docs/com/nuix/superutilities/annotations/class-use/ExclusionEvent.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.annotations.ExclusionEvent - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.annotations.ExclusionEvent

-
-
-
- - - - - - - - - - - - - - -
Packages that use ExclusionEvent 
PackageDescription
com.nuix.superutilities.annotations 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/annotations/class-use/ItemSetEvent.html b/docs/com/nuix/superutilities/annotations/class-use/ItemSetEvent.html deleted file mode 100644 index 914f191..0000000 --- a/docs/com/nuix/superutilities/annotations/class-use/ItemSetEvent.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.annotations.ItemSetEvent - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.annotations.ItemSetEvent

-
-
-
- - - - - - - - - - - - - - -
Packages that use ItemSetEvent 
PackageDescription
com.nuix.superutilities.annotations 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/annotations/class-use/NuixImageAnnotationRegion.html b/docs/com/nuix/superutilities/annotations/class-use/NuixImageAnnotationRegion.html deleted file mode 100644 index ef8c375..0000000 --- a/docs/com/nuix/superutilities/annotations/class-use/NuixImageAnnotationRegion.html +++ /dev/null @@ -1,159 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.annotations.NuixImageAnnotationRegion - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.annotations.NuixImageAnnotationRegion

-
-
-
- - - - - - - - - - - - - - -
Packages that use NuixImageAnnotationRegion 
PackageDescription
com.nuix.superutilities.annotations 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/annotations/class-use/ProductionSetEvent.html b/docs/com/nuix/superutilities/annotations/class-use/ProductionSetEvent.html deleted file mode 100644 index 7797080..0000000 --- a/docs/com/nuix/superutilities/annotations/class-use/ProductionSetEvent.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.annotations.ProductionSetEvent - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.annotations.ProductionSetEvent

-
-
-
- - - - - - - - - - - - - - -
Packages that use ProductionSetEvent 
PackageDescription
com.nuix.superutilities.annotations 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/annotations/class-use/TagEvent.html b/docs/com/nuix/superutilities/annotations/class-use/TagEvent.html deleted file mode 100644 index 514caaa..0000000 --- a/docs/com/nuix/superutilities/annotations/class-use/TagEvent.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.annotations.TagEvent - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.annotations.TagEvent

-
-
-
- - - - - - - - - - - - - - -
Packages that use TagEvent 
PackageDescription
com.nuix.superutilities.annotations 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/annotations/package-frame.html b/docs/com/nuix/superutilities/annotations/package-frame.html deleted file mode 100644 index 409232d..0000000 --- a/docs/com/nuix/superutilities/annotations/package-frame.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - -com.nuix.superutilities.annotations - - - - -

com.nuix.superutilities.annotations

- - - diff --git a/docs/com/nuix/superutilities/annotations/package-summary.html b/docs/com/nuix/superutilities/annotations/package-summary.html index 30895fd..2cc338d 100644 --- a/docs/com/nuix/superutilities/annotations/package-summary.html +++ b/docs/com/nuix/superutilities/annotations/package-summary.html @@ -3,30 +3,39 @@ -com.nuix.superutilities.annotations - - - +com.nuix.superutilities.annotations (SuperUtilities API) + - + + - - + + - - + + - - -
-
- diff --git a/docs/com/nuix/superutilities/annotations/package-tree.html b/docs/com/nuix/superutilities/annotations/package-tree.html index 0880aef..0a8d927 100644 --- a/docs/com/nuix/superutilities/annotations/package-tree.html +++ b/docs/com/nuix/superutilities/annotations/package-tree.html @@ -3,30 +3,39 @@ -com.nuix.superutilities.annotations Class Hierarchy - - - +com.nuix.superutilities.annotations Class Hierarchy (SuperUtilities API) + - + + - - + + - - + + - - -
-
diff --git a/docs/com/nuix/superutilities/annotations/package-use.html b/docs/com/nuix/superutilities/annotations/package-use.html deleted file mode 100644 index fd9fd7a..0000000 --- a/docs/com/nuix/superutilities/annotations/package-use.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - -Uses of Package com.nuix.superutilities.annotations - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Package
com.nuix.superutilities.annotations

-
-
-
- - - - - - - - - - - - - - -
Packages that use com.nuix.superutilities.annotations 
PackageDescription
com.nuix.superutilities.annotations 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/cases/BulkCaseProcessor.html b/docs/com/nuix/superutilities/cases/BulkCaseProcessor.html index 8230bdd..d9f858b 100644 --- a/docs/com/nuix/superutilities/cases/BulkCaseProcessor.html +++ b/docs/com/nuix/superutilities/cases/BulkCaseProcessor.html @@ -3,36 +3,45 @@ -BulkCaseProcessor - - - +BulkCaseProcessor (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/cases/CaseConsumer.html b/docs/com/nuix/superutilities/cases/CaseConsumer.html index d8f0824..e35b715 100644 --- a/docs/com/nuix/superutilities/cases/CaseConsumer.html +++ b/docs/com/nuix/superutilities/cases/CaseConsumer.html @@ -3,36 +3,45 @@ -CaseConsumer - - - +CaseConsumer (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/cases/CaseHistoryHelper.html b/docs/com/nuix/superutilities/cases/CaseHistoryHelper.html index a17416c..82c8687 100644 --- a/docs/com/nuix/superutilities/cases/CaseHistoryHelper.html +++ b/docs/com/nuix/superutilities/cases/CaseHistoryHelper.html @@ -3,36 +3,45 @@ -CaseHistoryHelper - - - +CaseHistoryHelper (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/cases/CaseInfo.html b/docs/com/nuix/superutilities/cases/CaseInfo.html index ede8807..a429077 100644 --- a/docs/com/nuix/superutilities/cases/CaseInfo.html +++ b/docs/com/nuix/superutilities/cases/CaseInfo.html @@ -3,36 +3,45 @@ -CaseInfo - - - +CaseInfo (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/cases/CaseIssueReaction.html b/docs/com/nuix/superutilities/cases/CaseIssueReaction.html index 4af4053..711644c 100644 --- a/docs/com/nuix/superutilities/cases/CaseIssueReaction.html +++ b/docs/com/nuix/superutilities/cases/CaseIssueReaction.html @@ -3,36 +3,45 @@ -CaseIssueReaction - - - +CaseIssueReaction (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/cases/CaseLockInfo.html b/docs/com/nuix/superutilities/cases/CaseLockInfo.html index 4d50970..0b586fe 100644 --- a/docs/com/nuix/superutilities/cases/CaseLockInfo.html +++ b/docs/com/nuix/superutilities/cases/CaseLockInfo.html @@ -3,36 +3,45 @@ -CaseLockInfo - - - +CaseLockInfo (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/cases/CaseLockedEventInfo.html b/docs/com/nuix/superutilities/cases/CaseLockedEventInfo.html index 21b7d36..0dc0871 100644 --- a/docs/com/nuix/superutilities/cases/CaseLockedEventInfo.html +++ b/docs/com/nuix/superutilities/cases/CaseLockedEventInfo.html @@ -3,36 +3,45 @@ -CaseLockedEventInfo - - - +CaseLockedEventInfo (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/cases/CaseOpenErrorEvent.html b/docs/com/nuix/superutilities/cases/CaseOpenErrorEvent.html index 6584b08..f30a7ec 100644 --- a/docs/com/nuix/superutilities/cases/CaseOpenErrorEvent.html +++ b/docs/com/nuix/superutilities/cases/CaseOpenErrorEvent.html @@ -3,36 +3,45 @@ -CaseOpenErrorEvent - - - +CaseOpenErrorEvent (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/cases/CaseUtility.html b/docs/com/nuix/superutilities/cases/CaseUtility.html index c16e1e8..8cc8d5c 100644 --- a/docs/com/nuix/superutilities/cases/CaseUtility.html +++ b/docs/com/nuix/superutilities/cases/CaseUtility.html @@ -3,36 +3,45 @@ -CaseUtility - - - +CaseUtility (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/cases/WorkFunctionErrorEvent.html b/docs/com/nuix/superutilities/cases/WorkFunctionErrorEvent.html index 527fd29..bb8e4ea 100644 --- a/docs/com/nuix/superutilities/cases/WorkFunctionErrorEvent.html +++ b/docs/com/nuix/superutilities/cases/WorkFunctionErrorEvent.html @@ -3,36 +3,45 @@ -WorkFunctionErrorEvent - - - +WorkFunctionErrorEvent (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/cases/class-use/BulkCaseProcessor.html b/docs/com/nuix/superutilities/cases/class-use/BulkCaseProcessor.html deleted file mode 100644 index c40a7e9..0000000 --- a/docs/com/nuix/superutilities/cases/class-use/BulkCaseProcessor.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.cases.BulkCaseProcessor - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.cases.BulkCaseProcessor

-
-
-
- - - - - - - - - - - - - - -
Packages that use BulkCaseProcessor 
PackageDescription
com.nuix.superutilities 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/cases/class-use/CaseConsumer.html b/docs/com/nuix/superutilities/cases/class-use/CaseConsumer.html deleted file mode 100644 index f44226f..0000000 --- a/docs/com/nuix/superutilities/cases/class-use/CaseConsumer.html +++ /dev/null @@ -1,166 +0,0 @@ - - - - - -Uses of Interface com.nuix.superutilities.cases.CaseConsumer - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Interface
com.nuix.superutilities.cases.CaseConsumer

-
-
-
- - - - - - - - - - - - - - -
Packages that use CaseConsumer 
PackageDescription
com.nuix.superutilities.cases 
-
-
-
    -
  • -
    - - -

    Uses of CaseConsumer in com.nuix.superutilities.cases

    -
    - - - - - - - - - - - - - - - - - - - - - -
    Methods in com.nuix.superutilities.cases with parameters of type CaseConsumer 
    Modifier and TypeMethodDescription
    voidBulkCaseProcessor.withEachCase​(CaseConsumer caseWorkFunction) -
    Begins iterating provided list of cases, passing the following information for each case to the provided callback:
    - - The case object
    - - Information about the case
    - - Current index of the case provided
    - - Total number of cases to be iterated
    -
    voidBulkCaseProcessor.withEachCase​(nuix.Case currentCaseFromGui, -CaseConsumer caseWorkFunction) -
    Begins iterating provided list of cases, passing the following information for each case to the provided callback:
    - - The case object
    - - Information about the case
    - - Current index of the case provided
    - - Total number of cases to be iterated
    - This method differs from BulkCaseProcessor.withEachCase(CaseConsumer) in that you provide the currently open case in the GUI - (in Ruby this would usually be $current_case).
    -
    -
    -
    -
  • -
-
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/cases/class-use/CaseHistoryHelper.html b/docs/com/nuix/superutilities/cases/class-use/CaseHistoryHelper.html deleted file mode 100644 index 64f336b..0000000 --- a/docs/com/nuix/superutilities/cases/class-use/CaseHistoryHelper.html +++ /dev/null @@ -1,151 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.cases.CaseHistoryHelper - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.cases.CaseHistoryHelper

-
-
-
- - - - - - - - - - - - - - -
Packages that use CaseHistoryHelper 
PackageDescription
com.nuix.superutilities 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/cases/class-use/CaseInfo.html b/docs/com/nuix/superutilities/cases/class-use/CaseInfo.html deleted file mode 100644 index 12961d1..0000000 --- a/docs/com/nuix/superutilities/cases/class-use/CaseInfo.html +++ /dev/null @@ -1,299 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.cases.CaseInfo - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.cases.CaseInfo

-
-
-
- - - - - - - - - - - - - - -
Packages that use CaseInfo 
PackageDescription
com.nuix.superutilities.cases 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/cases/class-use/CaseIssueReaction.html b/docs/com/nuix/superutilities/cases/class-use/CaseIssueReaction.html deleted file mode 100644 index c3061fb..0000000 --- a/docs/com/nuix/superutilities/cases/class-use/CaseIssueReaction.html +++ /dev/null @@ -1,214 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.cases.CaseIssueReaction - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.cases.CaseIssueReaction

-
-
-
- - - - - - - - - - - - - - -
Packages that use CaseIssueReaction 
PackageDescription
com.nuix.superutilities.cases 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/cases/class-use/CaseLockInfo.html b/docs/com/nuix/superutilities/cases/class-use/CaseLockInfo.html deleted file mode 100644 index ae42176..0000000 --- a/docs/com/nuix/superutilities/cases/class-use/CaseLockInfo.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.cases.CaseLockInfo - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.cases.CaseLockInfo

-
-
-
- - - - - - - - - - - - - - -
Packages that use CaseLockInfo 
PackageDescription
com.nuix.superutilities.cases 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/cases/class-use/CaseLockedEventInfo.html b/docs/com/nuix/superutilities/cases/class-use/CaseLockedEventInfo.html deleted file mode 100644 index 60f44f1..0000000 --- a/docs/com/nuix/superutilities/cases/class-use/CaseLockedEventInfo.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.cases.CaseLockedEventInfo - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.cases.CaseLockedEventInfo

-
-
-
- - - - - - - - - - - - - - -
Packages that use CaseLockedEventInfo 
PackageDescription
com.nuix.superutilities.cases 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/cases/class-use/CaseOpenErrorEvent.html b/docs/com/nuix/superutilities/cases/class-use/CaseOpenErrorEvent.html deleted file mode 100644 index 2f8f498..0000000 --- a/docs/com/nuix/superutilities/cases/class-use/CaseOpenErrorEvent.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.cases.CaseOpenErrorEvent - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.cases.CaseOpenErrorEvent

-
-
-
- - - - - - - - - - - - - - -
Packages that use CaseOpenErrorEvent 
PackageDescription
com.nuix.superutilities.cases 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/cases/class-use/CaseUtility.html b/docs/com/nuix/superutilities/cases/class-use/CaseUtility.html deleted file mode 100644 index ee6825d..0000000 --- a/docs/com/nuix/superutilities/cases/class-use/CaseUtility.html +++ /dev/null @@ -1,178 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.cases.CaseUtility - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.cases.CaseUtility

-
-
-
- - - - - - - - - - - - - - - - - - -
Packages that use CaseUtility 
PackageDescription
com.nuix.superutilities 
com.nuix.superutilities.cases 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/cases/class-use/WorkFunctionErrorEvent.html b/docs/com/nuix/superutilities/cases/class-use/WorkFunctionErrorEvent.html deleted file mode 100644 index 221c98e..0000000 --- a/docs/com/nuix/superutilities/cases/class-use/WorkFunctionErrorEvent.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.cases.WorkFunctionErrorEvent - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.cases.WorkFunctionErrorEvent

-
-
-
- - - - - - - - - - - - - - -
Packages that use WorkFunctionErrorEvent 
PackageDescription
com.nuix.superutilities.cases 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/cases/package-frame.html b/docs/com/nuix/superutilities/cases/package-frame.html deleted file mode 100644 index e85230a..0000000 --- a/docs/com/nuix/superutilities/cases/package-frame.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - -com.nuix.superutilities.cases - - - - -

com.nuix.superutilities.cases

- - - diff --git a/docs/com/nuix/superutilities/cases/package-summary.html b/docs/com/nuix/superutilities/cases/package-summary.html index 86c13c9..f48614c 100644 --- a/docs/com/nuix/superutilities/cases/package-summary.html +++ b/docs/com/nuix/superutilities/cases/package-summary.html @@ -3,30 +3,39 @@ -com.nuix.superutilities.cases - - - +com.nuix.superutilities.cases (SuperUtilities API) + - + + - - + + - - + + - - -
-
- diff --git a/docs/com/nuix/superutilities/cases/package-tree.html b/docs/com/nuix/superutilities/cases/package-tree.html index 5045f49..fba3703 100644 --- a/docs/com/nuix/superutilities/cases/package-tree.html +++ b/docs/com/nuix/superutilities/cases/package-tree.html @@ -3,30 +3,39 @@ -com.nuix.superutilities.cases Class Hierarchy - - - +com.nuix.superutilities.cases Class Hierarchy (SuperUtilities API) + - + + - - + + - - + + - - -
-
diff --git a/docs/com/nuix/superutilities/cases/package-use.html b/docs/com/nuix/superutilities/cases/package-use.html deleted file mode 100644 index c0635e3..0000000 --- a/docs/com/nuix/superutilities/cases/package-use.html +++ /dev/null @@ -1,234 +0,0 @@ - - - - - -Uses of Package com.nuix.superutilities.cases - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Package
com.nuix.superutilities.cases

-
-
-
- - - - - - - - - - - - - - - - - - -
Packages that use com.nuix.superutilities.cases 
PackageDescription
com.nuix.superutilities 
com.nuix.superutilities.cases 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/class-use/SuperUtilities.html b/docs/com/nuix/superutilities/class-use/SuperUtilities.html deleted file mode 100644 index e7d0ddf..0000000 --- a/docs/com/nuix/superutilities/class-use/SuperUtilities.html +++ /dev/null @@ -1,156 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.SuperUtilities - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.SuperUtilities

-
-
-
- - - - - - - - - - - - - - -
Packages that use SuperUtilities 
PackageDescription
com.nuix.superutilities 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/export/ChunkedDATExporter.ChunkInfo.html b/docs/com/nuix/superutilities/export/ChunkedDATExporter.ChunkInfo.html index cd5c359..cde3f36 100644 --- a/docs/com/nuix/superutilities/export/ChunkedDATExporter.ChunkInfo.html +++ b/docs/com/nuix/superutilities/export/ChunkedDATExporter.ChunkInfo.html @@ -3,30 +3,39 @@ -ChunkedDATExporter.ChunkInfo - - - +ChunkedDATExporter.ChunkInfo (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/export/ChunkedDATExporter.html b/docs/com/nuix/superutilities/export/ChunkedDATExporter.html index 5e272b4..2300be8 100644 --- a/docs/com/nuix/superutilities/export/ChunkedDATExporter.html +++ b/docs/com/nuix/superutilities/export/ChunkedDATExporter.html @@ -3,36 +3,45 @@ -ChunkedDATExporter - - - +ChunkedDATExporter (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/export/CustomExporter.html b/docs/com/nuix/superutilities/export/CustomExporter.html index 10910f6..9ca85e5 100644 --- a/docs/com/nuix/superutilities/export/CustomExporter.html +++ b/docs/com/nuix/superutilities/export/CustomExporter.html @@ -3,36 +3,45 @@ -CustomExporter - - - +CustomExporter (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/export/JsonExporter.html b/docs/com/nuix/superutilities/export/JsonExporter.html index e9cc971..40328ad 100644 --- a/docs/com/nuix/superutilities/export/JsonExporter.html +++ b/docs/com/nuix/superutilities/export/JsonExporter.html @@ -3,36 +3,45 @@ -JsonExporter - - - +JsonExporter (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/export/PdfWorkCache.html b/docs/com/nuix/superutilities/export/PdfWorkCache.html index 4429d3d..88a600d 100644 --- a/docs/com/nuix/superutilities/export/PdfWorkCache.html +++ b/docs/com/nuix/superutilities/export/PdfWorkCache.html @@ -3,36 +3,45 @@ -PdfWorkCache - - - +PdfWorkCache (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/export/TemplateExporter.html b/docs/com/nuix/superutilities/export/TemplateExporter.html index a7e39cd..1acb36a 100644 --- a/docs/com/nuix/superutilities/export/TemplateExporter.html +++ b/docs/com/nuix/superutilities/export/TemplateExporter.html @@ -3,36 +3,45 @@ -TemplateExporter - - - +TemplateExporter (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/export/class-use/ChunkedDATExporter.ChunkInfo.html b/docs/com/nuix/superutilities/export/class-use/ChunkedDATExporter.ChunkInfo.html deleted file mode 100644 index b5aee68..0000000 --- a/docs/com/nuix/superutilities/export/class-use/ChunkedDATExporter.ChunkInfo.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.export.ChunkedDATExporter.ChunkInfo - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.export.ChunkedDATExporter.ChunkInfo

-
-
No usage of com.nuix.superutilities.export.ChunkedDATExporter.ChunkInfo
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/export/class-use/ChunkedDATExporter.html b/docs/com/nuix/superutilities/export/class-use/ChunkedDATExporter.html deleted file mode 100644 index 815e39d..0000000 --- a/docs/com/nuix/superutilities/export/class-use/ChunkedDATExporter.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.export.ChunkedDATExporter - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.export.ChunkedDATExporter

-
-
No usage of com.nuix.superutilities.export.ChunkedDATExporter
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/export/class-use/CustomExporter.html b/docs/com/nuix/superutilities/export/class-use/CustomExporter.html deleted file mode 100644 index a40d67c..0000000 --- a/docs/com/nuix/superutilities/export/class-use/CustomExporter.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.export.CustomExporter - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.export.CustomExporter

-
-
No usage of com.nuix.superutilities.export.CustomExporter
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/export/class-use/JsonExporter.html b/docs/com/nuix/superutilities/export/class-use/JsonExporter.html deleted file mode 100644 index bd95666..0000000 --- a/docs/com/nuix/superutilities/export/class-use/JsonExporter.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.export.JsonExporter - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.export.JsonExporter

-
-
-
- - - - - - - - - - - - - - - - - - -
Packages that use JsonExporter 
PackageDescription
com.nuix.superutilities 
com.nuix.superutilities.export 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/export/class-use/PdfWorkCache.html b/docs/com/nuix/superutilities/export/class-use/PdfWorkCache.html deleted file mode 100644 index 24e569a..0000000 --- a/docs/com/nuix/superutilities/export/class-use/PdfWorkCache.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.export.PdfWorkCache - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.export.PdfWorkCache

-
-
No usage of com.nuix.superutilities.export.PdfWorkCache
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/export/class-use/TemplateExporter.html b/docs/com/nuix/superutilities/export/class-use/TemplateExporter.html deleted file mode 100644 index 7aa74f2..0000000 --- a/docs/com/nuix/superutilities/export/class-use/TemplateExporter.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.export.TemplateExporter - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.export.TemplateExporter

-
-
-
- - - - - - - - - - - - - - -
Packages that use TemplateExporter 
PackageDescription
com.nuix.superutilities 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/export/package-frame.html b/docs/com/nuix/superutilities/export/package-frame.html deleted file mode 100644 index c745e24..0000000 --- a/docs/com/nuix/superutilities/export/package-frame.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - -com.nuix.superutilities.export - - - - -

com.nuix.superutilities.export

- - - diff --git a/docs/com/nuix/superutilities/export/package-summary.html b/docs/com/nuix/superutilities/export/package-summary.html index 81e3940..24967b2 100644 --- a/docs/com/nuix/superutilities/export/package-summary.html +++ b/docs/com/nuix/superutilities/export/package-summary.html @@ -3,30 +3,39 @@ -com.nuix.superutilities.export - - - +com.nuix.superutilities.export (SuperUtilities API) + - + + - - + + - - + + - - -
-
- diff --git a/docs/com/nuix/superutilities/export/package-tree.html b/docs/com/nuix/superutilities/export/package-tree.html index 18955d4..8507545 100644 --- a/docs/com/nuix/superutilities/export/package-tree.html +++ b/docs/com/nuix/superutilities/export/package-tree.html @@ -3,30 +3,39 @@ -com.nuix.superutilities.export Class Hierarchy - - - +com.nuix.superutilities.export Class Hierarchy (SuperUtilities API) + - + + - - + + - - + + - - -
-
diff --git a/docs/com/nuix/superutilities/export/package-use.html b/docs/com/nuix/superutilities/export/package-use.html deleted file mode 100644 index 85765cd..0000000 --- a/docs/com/nuix/superutilities/export/package-use.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - -Uses of Package com.nuix.superutilities.export - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Package
com.nuix.superutilities.export

-
-
-
- - - - - - - - - - - - - - - - - - -
Packages that use com.nuix.superutilities.export 
PackageDescription
com.nuix.superutilities 
com.nuix.superutilities.export 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/items/SuperItemUtility.html b/docs/com/nuix/superutilities/items/SuperItemUtility.html index c813d7c..f101ce0 100644 --- a/docs/com/nuix/superutilities/items/SuperItemUtility.html +++ b/docs/com/nuix/superutilities/items/SuperItemUtility.html @@ -3,36 +3,45 @@ -SuperItemUtility - - - +SuperItemUtility (SuperUtilities API) + - + + - - + + - - + + - - -
-
+
    -
  • -
    + +
    +
    + +
    +
      +
    • + + +

      Method Detail

      + + + + + + + +
      • -
        -

        unionMany

        -
        public java.util.Set<nuix.Item> unionMany​(java.util.List<java.util.Collection<nuix.Item>> itemCollections)
        +

        unionMany

        +
        public java.util.Set<nuix.Item> unionMany​(java.util.List<java.util.Collection<nuix.Item>> itemCollections)
        Unions multiple collections of items into a single Set of items.
        Parameters:
        @@ -261,12 +345,15 @@

        unionMany

        Returns:
        A set at most 1 of each item in the provided input item collections
        -
      • +
      + + + +
      • -
        -

        findPhysicalFileAncestor

        -
        public nuix.Item findPhysicalFileAncestor​(nuix.Item item)
        +

        findPhysicalFileAncestor

        +
        public nuix.Item findPhysicalFileAncestor​(nuix.Item item)
        Traverses up an item's path to locate the ancestor physical file item (flag:physical_file) or null if there is no physical file ancestor item.
        @@ -275,12 +362,15 @@

        findPhysicalFileAncestor

        Returns:
        The physical file ancestor item (if there is on) otherwise null
        -
      • +
      + + + + + + + +
      • -
        -

        findContainerAncestor

        -
        public nuix.Item findContainerAncestor​(nuix.Item item)
        +

        findContainerAncestor

        +
        public nuix.Item findContainerAncestor​(nuix.Item item)
        Traverses up an item's path to locate the nearest ancestor container item (kind:container) or null if there is no container ancestor item.
        @@ -303,12 +396,15 @@

        findContainerAncestor

        Returns:
        The nearest container ancestor of the input item or null if no container ancestor could be found
        -
      • +
      + + + + + + + +
      • -
        -

        splitAndMaintainFamilies

        -
        public void splitAndMaintainFamilies​(java.util.Collection<nuix.Item> items, -int targetChunkSize, -java.util.function.Consumer<java.util.Collection<nuix.Item>> chunkConsumer)
        +

        splitAndMaintainFamilies

        +
        public void splitAndMaintainFamilies​(java.util.Collection<nuix.Item> items,
        +                                     int targetChunkSize,
        +                                     java.util.function.Consumer<java.util.Collection<nuix.Item>> chunkConsumer)
        Splits a collection of items into a target chunk size, while maintaining families. Each chunk is passed as an argument to the provided chunkConsumer.
        @@ -334,15 +433,18 @@

        + + +
        • -
          -

          removeItemsResponsiveToQuery

          -
          public java.util.Set<nuix.Item> removeItemsResponsiveToQuery​(nuix.Case nuixCase, -java.util.Collection<nuix.Item> inputItems, -java.lang.String itemsToRemoveQuery) - throws java.io.IOException
          +

          removeItemsResponsiveToQuery

          +
          public java.util.Set<nuix.Item> removeItemsResponsiveToQuery​(nuix.Case nuixCase,
          +                                                             java.util.Collection<nuix.Item> inputItems,
          +                                                             java.lang.String itemsToRemoveQuery)
          +                                                      throws java.io.IOException
          Convenience method for removing items responsive to a query from another collection of items. Internally this method runs a search for the given query and then uses ItemUtility.difference to remove them from the provided input items, returning the differenced result.
          @@ -356,25 +458,31 @@

          Throws:
          java.io.IOException - Likely thrown if there is an issue with the provided query

        -
      • +
      + + + +
      • -
        -

        findFamiliesWithoutItemsResponsiveToQuery

        -
        public java.util.Set<nuix.Item> findFamiliesWithoutItemsResponsiveToQuery​(nuix.Case nuixCase, -java.util.Collection<nuix.Item> inputItems, -java.lang.String itemsToRemoveQuery) - throws java.io.IOException
        +

        findFamiliesWithoutItemsResponsiveToQuery

        +
        public java.util.Set<nuix.Item> findFamiliesWithoutItemsResponsiveToQuery​(nuix.Case nuixCase,
        +                                                                          java.util.Collection<nuix.Item> inputItems,
        +                                                                          java.lang.String itemsToRemoveQuery)
        +                                                                   throws java.io.IOException
        Throws:
        java.io.IOException
        -
      • +
      + + + +
      • -
        -

        getPhysicalAncestorPath

        -
        public java.lang.String getPhysicalAncestorPath​(nuix.Item item)
        +

        getPhysicalAncestorPath

        +
        public java.lang.String getPhysicalAncestorPath​(nuix.Item item)
        Returns the file system path of an item's physical file ancestor. Begins by calling findPhysicalFileAncestor(Item). If an physical file ancestor is located, then gets its URI and attempts to convert that to an actual file system path.
        @@ -383,13 +491,16 @@

        getPhysicalAncestorPath

        Returns:
        The physical file ancestor file system path (if possible), otherwise null
        -
      • +
      + + + +
      • -
        -

        deduplicateCustomTieBreaker

        -
        public java.util.Set<nuix.Item> deduplicateCustomTieBreaker​(java.util.Collection<nuix.Item> items, -java.util.function.BiFunction<nuix.Item,​nuix.Item,​nuix.Item> tieBreaker)
        +

        deduplicateCustomTieBreaker

        +
        public java.util.Set<nuix.Item> deduplicateCustomTieBreaker​(java.util.Collection<nuix.Item> items,
        +                                                            java.util.function.BiFunction<nuix.Item,​nuix.Item,​nuix.Item> tieBreaker)
        Custom deduplication implementation allowing code to specify which original is kept. The normal behavior of ItemUtility.deduplicate is that the original with the earliest position value, amongst the items with the same MD5, is considered the original. This implementation allows code to provide a 2 argument function which will @@ -407,13 +518,16 @@

        Returns:
        A custom deduplicated set of items
        -

      • +
      + + + +
      • -
        -

        itemsAreSiblings

        -
        public boolean itemsAreSiblings​(nuix.Item a, -nuix.Item b)
        +

        itemsAreSiblings

        +
        public boolean itemsAreSiblings​(nuix.Item a,
        +                                nuix.Item b)
        Tests whether 2 items have the same parent by comparing their tree position values
        Parameters:
        @@ -422,14 +536,17 @@

        itemsAreSiblings

        Returns:
        True if items appear to have the same parent item based on their tree position values
        -
      • +
      + + + + -
+ + +
- + - - diff --git a/docs/com/nuix/superutilities/items/class-use/SuperItemUtility.html b/docs/com/nuix/superutilities/items/class-use/SuperItemUtility.html deleted file mode 100644 index 2bfb2f2..0000000 --- a/docs/com/nuix/superutilities/items/class-use/SuperItemUtility.html +++ /dev/null @@ -1,178 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.items.SuperItemUtility - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.items.SuperItemUtility

-
-
-
- - - - - - - - - - - - - - - - - - -
Packages that use SuperItemUtility 
PackageDescription
com.nuix.superutilities 
com.nuix.superutilities.items 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/items/package-frame.html b/docs/com/nuix/superutilities/items/package-frame.html deleted file mode 100644 index 3fe6a4a..0000000 --- a/docs/com/nuix/superutilities/items/package-frame.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - -com.nuix.superutilities.items - - - - -

com.nuix.superutilities.items

-
-

Classes

- -
- - diff --git a/docs/com/nuix/superutilities/items/package-summary.html b/docs/com/nuix/superutilities/items/package-summary.html index c8eda30..690f4b9 100644 --- a/docs/com/nuix/superutilities/items/package-summary.html +++ b/docs/com/nuix/superutilities/items/package-summary.html @@ -3,30 +3,39 @@ -com.nuix.superutilities.items - - - +com.nuix.superutilities.items (SuperUtilities API) + - + + - - + + - - + + - - -
-
- diff --git a/docs/com/nuix/superutilities/items/package-tree.html b/docs/com/nuix/superutilities/items/package-tree.html index 8ce9724..36cb1b0 100644 --- a/docs/com/nuix/superutilities/items/package-tree.html +++ b/docs/com/nuix/superutilities/items/package-tree.html @@ -3,30 +3,39 @@ -com.nuix.superutilities.items Class Hierarchy - - - +com.nuix.superutilities.items Class Hierarchy (SuperUtilities API) + - + + - - + + - - + + - - -
-
diff --git a/docs/com/nuix/superutilities/items/package-use.html b/docs/com/nuix/superutilities/items/package-use.html deleted file mode 100644 index 4c227b2..0000000 --- a/docs/com/nuix/superutilities/items/package-use.html +++ /dev/null @@ -1,176 +0,0 @@ - - - - - -Uses of Package com.nuix.superutilities.items - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Package
com.nuix.superutilities.items

-
-
-
- - - - - - - - - - - - - - - - - - -
Packages that use com.nuix.superutilities.items 
PackageDescription
com.nuix.superutilities 
com.nuix.superutilities.items 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/loadfiles/DatLoadFile.html b/docs/com/nuix/superutilities/loadfiles/DatLoadFile.html index d804923..5d3af44 100644 --- a/docs/com/nuix/superutilities/loadfiles/DatLoadFile.html +++ b/docs/com/nuix/superutilities/loadfiles/DatLoadFile.html @@ -3,36 +3,45 @@ -DatLoadFile - - - +DatLoadFile (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/loadfiles/DatLoadFileReader.html b/docs/com/nuix/superutilities/loadfiles/DatLoadFileReader.html index 8951c36..d7bc772 100644 --- a/docs/com/nuix/superutilities/loadfiles/DatLoadFileReader.html +++ b/docs/com/nuix/superutilities/loadfiles/DatLoadFileReader.html @@ -3,36 +3,45 @@ -DatLoadFileReader - - - +DatLoadFileReader (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/loadfiles/DatLoadFileWriter.html b/docs/com/nuix/superutilities/loadfiles/DatLoadFileWriter.html index 57bb55a..eda8be1 100644 --- a/docs/com/nuix/superutilities/loadfiles/DatLoadFileWriter.html +++ b/docs/com/nuix/superutilities/loadfiles/DatLoadFileWriter.html @@ -3,36 +3,45 @@ -DatLoadFileWriter - - - +DatLoadFileWriter (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/loadfiles/OptLoadFile.html b/docs/com/nuix/superutilities/loadfiles/OptLoadFile.html index 8bda2e8..55f1f0e 100644 --- a/docs/com/nuix/superutilities/loadfiles/OptLoadFile.html +++ b/docs/com/nuix/superutilities/loadfiles/OptLoadFile.html @@ -3,36 +3,45 @@ -OptLoadFile - - - +OptLoadFile (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/loadfiles/OptRecord.html b/docs/com/nuix/superutilities/loadfiles/OptRecord.html index 011a085..90f0b50 100644 --- a/docs/com/nuix/superutilities/loadfiles/OptRecord.html +++ b/docs/com/nuix/superutilities/loadfiles/OptRecord.html @@ -3,36 +3,45 @@ -OptRecord - - - +OptRecord (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/loadfiles/SimpleTextFileReader.html b/docs/com/nuix/superutilities/loadfiles/SimpleTextFileReader.html index 8ebb1b8..2dd0540 100644 --- a/docs/com/nuix/superutilities/loadfiles/SimpleTextFileReader.html +++ b/docs/com/nuix/superutilities/loadfiles/SimpleTextFileReader.html @@ -3,36 +3,45 @@ -SimpleTextFileReader - - - +SimpleTextFileReader (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/loadfiles/SimpleTextFileWriter.html b/docs/com/nuix/superutilities/loadfiles/SimpleTextFileWriter.html index f044585..4b5a969 100644 --- a/docs/com/nuix/superutilities/loadfiles/SimpleTextFileWriter.html +++ b/docs/com/nuix/superutilities/loadfiles/SimpleTextFileWriter.html @@ -3,36 +3,45 @@ -SimpleTextFileWriter - - - +SimpleTextFileWriter (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/loadfiles/class-use/DatLoadFile.html b/docs/com/nuix/superutilities/loadfiles/class-use/DatLoadFile.html deleted file mode 100644 index b5498f8..0000000 --- a/docs/com/nuix/superutilities/loadfiles/class-use/DatLoadFile.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.loadfiles.DatLoadFile - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.loadfiles.DatLoadFile

-
-
No usage of com.nuix.superutilities.loadfiles.DatLoadFile
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/loadfiles/class-use/DatLoadFileReader.html b/docs/com/nuix/superutilities/loadfiles/class-use/DatLoadFileReader.html deleted file mode 100644 index 2f94818..0000000 --- a/docs/com/nuix/superutilities/loadfiles/class-use/DatLoadFileReader.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.loadfiles.DatLoadFileReader - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.loadfiles.DatLoadFileReader

-
-
No usage of com.nuix.superutilities.loadfiles.DatLoadFileReader
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/loadfiles/class-use/DatLoadFileWriter.html b/docs/com/nuix/superutilities/loadfiles/class-use/DatLoadFileWriter.html deleted file mode 100644 index e4affa2..0000000 --- a/docs/com/nuix/superutilities/loadfiles/class-use/DatLoadFileWriter.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.loadfiles.DatLoadFileWriter - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.loadfiles.DatLoadFileWriter

-
-
No usage of com.nuix.superutilities.loadfiles.DatLoadFileWriter
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/loadfiles/class-use/OptLoadFile.html b/docs/com/nuix/superutilities/loadfiles/class-use/OptLoadFile.html deleted file mode 100644 index c416f74..0000000 --- a/docs/com/nuix/superutilities/loadfiles/class-use/OptLoadFile.html +++ /dev/null @@ -1,151 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.loadfiles.OptLoadFile - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.loadfiles.OptLoadFile

-
-
-
- - - - - - - - - - - - - - -
Packages that use OptLoadFile 
PackageDescription
com.nuix.superutilities.loadfiles 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/loadfiles/class-use/OptRecord.html b/docs/com/nuix/superutilities/loadfiles/class-use/OptRecord.html deleted file mode 100644 index fc9df16..0000000 --- a/docs/com/nuix/superutilities/loadfiles/class-use/OptRecord.html +++ /dev/null @@ -1,215 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.loadfiles.OptRecord - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.loadfiles.OptRecord

-
-
-
- - - - - - - - - - - - - - -
Packages that use OptRecord 
PackageDescription
com.nuix.superutilities.loadfiles 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/loadfiles/class-use/SimpleTextFileReader.html b/docs/com/nuix/superutilities/loadfiles/class-use/SimpleTextFileReader.html deleted file mode 100644 index 4e350fe..0000000 --- a/docs/com/nuix/superutilities/loadfiles/class-use/SimpleTextFileReader.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.loadfiles.SimpleTextFileReader - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.loadfiles.SimpleTextFileReader

-
-
No usage of com.nuix.superutilities.loadfiles.SimpleTextFileReader
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/loadfiles/class-use/SimpleTextFileWriter.html b/docs/com/nuix/superutilities/loadfiles/class-use/SimpleTextFileWriter.html deleted file mode 100644 index 7c320ce..0000000 --- a/docs/com/nuix/superutilities/loadfiles/class-use/SimpleTextFileWriter.html +++ /dev/null @@ -1,146 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.loadfiles.SimpleTextFileWriter - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.loadfiles.SimpleTextFileWriter

-
-
-
- - - - - - - - - - - - - - -
Packages that use SimpleTextFileWriter 
PackageDescription
com.nuix.superutilities.loadfiles 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/loadfiles/package-frame.html b/docs/com/nuix/superutilities/loadfiles/package-frame.html deleted file mode 100644 index ed9644b..0000000 --- a/docs/com/nuix/superutilities/loadfiles/package-frame.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - -com.nuix.superutilities.loadfiles - - - - -

com.nuix.superutilities.loadfiles

- - - diff --git a/docs/com/nuix/superutilities/loadfiles/package-summary.html b/docs/com/nuix/superutilities/loadfiles/package-summary.html index 96d206a..2a663ac 100644 --- a/docs/com/nuix/superutilities/loadfiles/package-summary.html +++ b/docs/com/nuix/superutilities/loadfiles/package-summary.html @@ -3,30 +3,39 @@ -com.nuix.superutilities.loadfiles - - - +com.nuix.superutilities.loadfiles (SuperUtilities API) + - + + - - + + - - + + - - -
-
- diff --git a/docs/com/nuix/superutilities/loadfiles/package-tree.html b/docs/com/nuix/superutilities/loadfiles/package-tree.html index 3c6212c..cb1643a 100644 --- a/docs/com/nuix/superutilities/loadfiles/package-tree.html +++ b/docs/com/nuix/superutilities/loadfiles/package-tree.html @@ -3,30 +3,39 @@ -com.nuix.superutilities.loadfiles Class Hierarchy - - - +com.nuix.superutilities.loadfiles Class Hierarchy (SuperUtilities API) + - + + - - + + - - + + - - -
-
diff --git a/docs/com/nuix/superutilities/loadfiles/package-use.html b/docs/com/nuix/superutilities/loadfiles/package-use.html deleted file mode 100644 index e50bce0..0000000 --- a/docs/com/nuix/superutilities/loadfiles/package-use.html +++ /dev/null @@ -1,151 +0,0 @@ - - - - - -Uses of Package com.nuix.superutilities.loadfiles - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Package
com.nuix.superutilities.loadfiles

-
-
-
- - - - - - - - - - - - - - -
Packages that use com.nuix.superutilities.loadfiles 
PackageDescription
com.nuix.superutilities.loadfiles 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/misc/DigestList.html b/docs/com/nuix/superutilities/misc/DigestList.html index 11a8054..b0397d0 100644 --- a/docs/com/nuix/superutilities/misc/DigestList.html +++ b/docs/com/nuix/superutilities/misc/DigestList.html @@ -3,36 +3,45 @@ -DigestList - - - +DigestList (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/misc/DriveSpaceInfo.html b/docs/com/nuix/superutilities/misc/DriveSpaceInfo.html index 4ccf233..d57c58b 100644 --- a/docs/com/nuix/superutilities/misc/DriveSpaceInfo.html +++ b/docs/com/nuix/superutilities/misc/DriveSpaceInfo.html @@ -3,36 +3,45 @@ -DriveSpaceInfo - - - +DriveSpaceInfo (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/misc/ExpandedTermInfo.html b/docs/com/nuix/superutilities/misc/ExpandedTermInfo.html index c206d5c..f8db511 100644 --- a/docs/com/nuix/superutilities/misc/ExpandedTermInfo.html +++ b/docs/com/nuix/superutilities/misc/ExpandedTermInfo.html @@ -3,36 +3,45 @@ -ExpandedTermInfo - - - +ExpandedTermInfo (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/misc/FormatUtility.html b/docs/com/nuix/superutilities/misc/FormatUtility.html index abfbfda..22e0f32 100644 --- a/docs/com/nuix/superutilities/misc/FormatUtility.html +++ b/docs/com/nuix/superutilities/misc/FormatUtility.html @@ -3,36 +3,45 @@ -FormatUtility - - - +FormatUtility (SuperUtilities API) + - + + - - + + - - + + - - -
-
+
    -
  • -
    + +
    +
      +
    • -

      Method Details

      -
    + +
    +
      +
    • + + +

      Method Detail

      + + + + + + + +
      • -
        -

        hexToBytes

        -
        public static byte[] hexToBytes​(java.lang.String hex)
        +

        hexToBytes

        +
        public static byte[] hexToBytes​(java.lang.String hex)
        Convenience method for converting hex string to byte array.
        Parameters:
        @@ -342,12 +426,15 @@

        hexToBytes

        Returns:
        Byte array equivalent.
        -
      • +
      + + + +
      • -
        -

        bytesToHex

        -
        public static java.lang.String bytesToHex​(byte[] bytes)
        +

        bytesToHex

        +
        public static java.lang.String bytesToHex​(byte[] bytes)
        Convenience method for converting a byte array to a hex string.
        Parameters:
        @@ -355,12 +442,15 @@

        bytesToHex

        Returns:
        A string representation of the byte array as hexadecimal.
        -
      • +
      + + + +
      • -
        -

        convertToString

        -
        public java.lang.String convertToString​(java.lang.Object value)
        +

        convertToString

        +
        public java.lang.String convertToString​(java.lang.Object value)
        Attempts to convert data types, which may be values of metadata properties or custom metadata, to a String. Data types supported: - String @@ -377,12 +467,15 @@

        convertToString

        Returns:
        A String value of the provided data.
        -
      • +
      + + + +
      • -
        -

        secondsToElapsedString

        -
        public java.lang.String secondsToElapsedString​(java.lang.Double offsetSeconds)
        +

        secondsToElapsedString

        +
        public java.lang.String secondsToElapsedString​(java.lang.Double offsetSeconds)
        Converts a value representing some number of seconds to an "elapsed" string. For example a value of 75 seconds would be converted to the string "00:01:15". If the time span represents more than 24 hours you may get a value such as @@ -393,12 +486,15 @@

        secondsToElapsedString<
        Returns:
        A String representing the elapsed time.
        -

      • +
      + + + +
      • -
        -

        secondsToElapsedString

        -
        public java.lang.String secondsToElapsedString​(long offsetSeconds)
        +

        secondsToElapsedString

        +
        public java.lang.String secondsToElapsedString​(long offsetSeconds)
        Converts a value representing some number of seconds to an "elapsed" string. For example a value of 75 seconds would be converted to the string "00:01:15". If the time span represents more than 24 hours you may get a value such as @@ -409,12 +505,15 @@

        secondsToElapsedString

        Returns:
        A String representing the elapsed time.
        -
      • +
      + + + +
      • -
        -

        formatNumber

        -
        public java.lang.String formatNumber​(int number)
        +

        formatNumber

        +
        public java.lang.String formatNumber​(int number)
        Convenience method for formatting numeric value using US locale.
        Parameters:
        @@ -422,12 +521,15 @@

        formatNumber

        Returns:
        Formatting String version of the number
        -
      • +
      + + + +
      • -
        -

        formatNumber

        -
        public java.lang.String formatNumber​(long number)
        +

        formatNumber

        +
        public java.lang.String formatNumber​(long number)
        Convenience method for formatting numeric value using US locale.
        Parameters:
        @@ -435,12 +537,15 @@

        formatNumber

        Returns:
        Formatting String version of the number
        -
      • +
      + + + +
      • -
        -

        formatNumber

        -
        public java.lang.String formatNumber​(double number)
        +

        formatNumber

        +
        public java.lang.String formatNumber​(double number)
        Convenience method for formatting numeric value using US locale.
        Parameters:
        @@ -448,13 +553,16 @@

        formatNumber

        Returns:
        Formatting String version of the number
        -
      • +
      + + + +
      • -
        -

        resolvePlaceholders

        -
        public java.lang.String resolvePlaceholders​(java.lang.String template, -java.util.Map<java.lang.String,​java.lang.Object> placeholderValues)
        +

        resolvePlaceholders

        +
        public java.lang.String resolvePlaceholders​(java.lang.String template,
        +                                            java.util.Map<java.lang.String,​java.lang.Object> placeholderValues)
        Simple method to replace place holders with values in a template string. Placeholders are values starting with a '{', followed by a name, followed by '}'. For example "{name}".
        @@ -464,45 +572,57 @@

        resolvePlacehold
        Returns:
        Template string with place holders replaced

        -
      • +
      + + + +
      • -
        -

        getFilenameTimestamp

        -
        public java.lang.String getFilenameTimestamp()
        +

        getFilenameTimestamp

        +
        public java.lang.String getFilenameTimestamp()
        Generates a time stamp string which is safe to use in a file or directory name.
        Returns:
        File/directory name safe time stamp string.
        -
      • +
      + + + +
      • -
        -

        getUseSIUnits

        -
        public static boolean getUseSIUnits()
        +

        getUseSIUnits

        +
        public static boolean getUseSIUnits()
        Gets value indicating whether SI Unit (1000 Bytes = 1 Kilo Byte) will be used.
        Returns:
        True if size methods use 1000 bytes, false if they will use 1024 bytes
        -
      • +
      + + + +
      • -
        -

        setUseSIUnits

        -
        public static void setUseSIUnits​(boolean useSIUnits)
        +

        setUseSIUnits

        +
        public static void setUseSIUnits​(boolean useSIUnits)
        Gets value indicating whether SI Unit (1000 Bytes = 1 Kilo Byte) will be used.
        Parameters:
        useSIUnits - True if size methods use 1000 bytes, false if they will use 1024 bytes
        -
      • +
      + + + +
      • -
        -

        getUnitBase

        -
        public static double getUnitBase()
        +

        getUnitBase

        +
        public static double getUnitBase()
        Gets the unit base which will be used in size calculations. Will return 1000 if getUseSIUnits() returns true and 1024 if getUseSIUnits() returns false.
        @@ -510,13 +630,16 @@

        getUnitBase

        Returns:
        Size base unit used in size calculations.
        -
      • +
      + + + +
      • -
        -

        bytesToKiloBytes

        -
        public static double bytesToKiloBytes​(long bytes, -int decimalPlaces)
        +

        bytesToKiloBytes

        +
        public static double bytesToKiloBytes​(long bytes,
        +                                      int decimalPlaces)
        Converts size specified in bytes to size specified in kilo bytes, rounding to specified number of decimal places.
        @@ -526,13 +649,16 @@

        bytesToKiloBytes

        Returns:
        Size in bytes converted to size in kilo bytes
        -
      • +
      + + + +
      • -
        -

        bytesToMegaBytes

        -
        public static double bytesToMegaBytes​(long bytes, -int decimalPlaces)
        +

        bytesToMegaBytes

        +
        public static double bytesToMegaBytes​(long bytes,
        +                                      int decimalPlaces)
        Converts size specified in bytes to size specified in mega bytes, rounding to specified number of decimal places.
        @@ -542,13 +668,16 @@

        bytesToMegaBytes

        Returns:
        Size in bytes converted to size in mega bytes
        -
      • +
      + + + +
      • -
        -

        bytesToGigaBytes

        -
        public static double bytesToGigaBytes​(long bytes, -int decimalPlaces)
        +

        bytesToGigaBytes

        +
        public static double bytesToGigaBytes​(long bytes,
        +                                      int decimalPlaces)
        Converts size specified in bytes to size specified in giga bytes, rounding to specified number of decimal places.
        @@ -558,13 +687,16 @@

        bytesToGigaBytes

        Returns:
        Size in bytes converted to size in giga bytes
        -
      • +
      + + + +
      • -
        -

        bytesToDynamicSize

        -
        public static java.lang.String bytesToDynamicSize​(long bytes, -int decimalPlaces)
        +

        bytesToDynamicSize

        +
        public static java.lang.String bytesToDynamicSize​(long bytes,
        +                                                  int decimalPlaces)
        Converts size in bytes to a String representing the file size, as you might see it represented by the OS, such as "1.24 KB" or "3.42 GB"
        @@ -574,13 +706,16 @@

        bytesToDynamicSize

        Returns:
        A String representing the size in appropriate format
        -
      • +
      + + + +
      • -
        -

        round

        -
        public static double round​(double value, -int numberOfDigitsAfterDecimalPoint)
        +

        round

        +
        public static double round​(double value,
        +                           int numberOfDigitsAfterDecimalPoint)
        Helper method for rounding a decimal value to a particular number of decimal places.
        Parameters:
        @@ -589,13 +724,16 @@

        round

        Returns:
        The given value rounded off to specified decimal places
        -
      • +
      + + + +
      • -
        -

        tokenizeText

        -
        public static java.util.List<java.lang.String> tokenizeText​(java.lang.String inputText) - throws java.lang.Exception
        +

        tokenizeText

        +
        public static java.util.List<java.lang.String> tokenizeText​(java.lang.String inputText)
        +                                                     throws java.lang.Exception
        Convenience method for using Lucene's StandardTokenizer to tokenize arbitrary text.
        Parameters:
        @@ -605,12 +743,15 @@

        tokenizeText

        Throws:
        java.lang.Exception - Most likely thrown if Lucene tokenizer encounters a problem.
        -
      • +
      + + + +
      • -
        -

        getHtmlText

        -
        public static java.lang.String getHtmlText​(java.lang.String htmlSource)
        +

        getHtmlText

        +
        public static java.lang.String getHtmlText​(java.lang.String htmlSource)
        Convenience method for getting the "rendered text" (text as seen in browser) of HTML source code using Jsoup.
        Parameters:
        @@ -618,48 +759,64 @@

        getHtmlText

        Returns:
        The "rendered text" of the provided HTML source code.
        -
      • +
      + + + +
      • -
        -

        formatAsTextualTable

        -
        public static java.lang.String formatAsTextualTable​(java.util.List<java.util.List<java.lang.String>> rows)
        -
        +

        formatAsTextualTable

        +
        public static java.lang.String formatAsTextualTable​(java.util.List<java.util.List<java.lang.String>> rows)
      • +
      + + + +
      • -
        -

        debugString

        -
        public static java.lang.String debugString​(java.util.Map<java.lang.String,​?> map)
        -
        +

        debugString

        +
        public static java.lang.String debugString​(java.util.Map<java.lang.String,​?> map)
      • +
      + + + +
      • -
        -

        debugString

        -
        public static java.lang.String debugString​(java.lang.Exception exc)
        -
        +

        debugString

        +
        public static java.lang.String debugString​(java.lang.Exception exc)
      • +
      + + + +
      • -
        -

        makeGuidPath

        -
        public static java.io.File makeGuidPath​(nuix.Item item, -java.io.File rootDirectory, -java.lang.String extension)
        -
        +

        makeGuidPath

        +
        public static java.io.File makeGuidPath​(nuix.Item item,
        +                                        java.io.File rootDirectory,
        +                                        java.lang.String extension)
      • +
      + + + +
      • -
        -

        escapeTagForSearch

        -
        public static java.lang.String escapeTagForSearch​(java.lang.String tagName)
        -
        +

        escapeTagForSearch

        +
        public static java.lang.String escapeTagForSearch​(java.lang.String tagName)
      -
+ + +
- + - - diff --git a/docs/com/nuix/superutilities/misc/FreeSpaceMonitor.html b/docs/com/nuix/superutilities/misc/FreeSpaceMonitor.html index d0aaf96..6937b37 100644 --- a/docs/com/nuix/superutilities/misc/FreeSpaceMonitor.html +++ b/docs/com/nuix/superutilities/misc/FreeSpaceMonitor.html @@ -3,36 +3,45 @@ -FreeSpaceMonitor - - - +FreeSpaceMonitor (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/misc/FreeSpaceMonitorEventCallback.html b/docs/com/nuix/superutilities/misc/FreeSpaceMonitorEventCallback.html index c70498f..21fddbe 100644 --- a/docs/com/nuix/superutilities/misc/FreeSpaceMonitorEventCallback.html +++ b/docs/com/nuix/superutilities/misc/FreeSpaceMonitorEventCallback.html @@ -3,36 +3,45 @@ -FreeSpaceMonitorEventCallback - - - +FreeSpaceMonitorEventCallback (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/misc/FuzzyTermInfo.html b/docs/com/nuix/superutilities/misc/FuzzyTermInfo.html index b3e35da..4070ae9 100644 --- a/docs/com/nuix/superutilities/misc/FuzzyTermInfo.html +++ b/docs/com/nuix/superutilities/misc/FuzzyTermInfo.html @@ -3,36 +3,45 @@ -FuzzyTermInfo - - - +FuzzyTermInfo (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/misc/LevenshteinDistance.html b/docs/com/nuix/superutilities/misc/LevenshteinDistance.html index 6f397a8..c0dbe24 100644 --- a/docs/com/nuix/superutilities/misc/LevenshteinDistance.html +++ b/docs/com/nuix/superutilities/misc/LevenshteinDistance.html @@ -3,36 +3,45 @@ -LevenshteinDistance - - - +LevenshteinDistance (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/misc/NamedStringList.html b/docs/com/nuix/superutilities/misc/NamedStringList.html index 336ec25..4bdd24b 100644 --- a/docs/com/nuix/superutilities/misc/NamedStringList.html +++ b/docs/com/nuix/superutilities/misc/NamedStringList.html @@ -3,36 +3,45 @@ -NamedStringList - - - +NamedStringList (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/misc/NuixVersion.html b/docs/com/nuix/superutilities/misc/NuixVersion.html index 35e3755..3c79742 100644 --- a/docs/com/nuix/superutilities/misc/NuixVersion.html +++ b/docs/com/nuix/superutilities/misc/NuixVersion.html @@ -3,36 +3,45 @@ -NuixVersion - - - +NuixVersion (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/misc/PdfUtility.html b/docs/com/nuix/superutilities/misc/PdfUtility.html index c68ff71..40d754b 100644 --- a/docs/com/nuix/superutilities/misc/PdfUtility.html +++ b/docs/com/nuix/superutilities/misc/PdfUtility.html @@ -3,36 +3,45 @@ -PdfUtility - - - +PdfUtility (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/misc/PlaceholderResolver.html b/docs/com/nuix/superutilities/misc/PlaceholderResolver.html index acc1600..b1e3061 100644 --- a/docs/com/nuix/superutilities/misc/PlaceholderResolver.html +++ b/docs/com/nuix/superutilities/misc/PlaceholderResolver.html @@ -3,36 +3,45 @@ -PlaceholderResolver - - - +PlaceholderResolver (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/misc/ProfileDigester.html b/docs/com/nuix/superutilities/misc/ProfileDigester.html index 0393f18..2506c51 100644 --- a/docs/com/nuix/superutilities/misc/ProfileDigester.html +++ b/docs/com/nuix/superutilities/misc/ProfileDigester.html @@ -3,36 +3,45 @@ -ProfileDigester - - - +ProfileDigester (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/misc/SQLiteBacked.html b/docs/com/nuix/superutilities/misc/SQLiteBacked.html index 41c9110..2742199 100644 --- a/docs/com/nuix/superutilities/misc/SQLiteBacked.html +++ b/docs/com/nuix/superutilities/misc/SQLiteBacked.html @@ -3,36 +3,45 @@ -SQLiteBacked - - - +SQLiteBacked (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/misc/SimilarityCalculation.html b/docs/com/nuix/superutilities/misc/SimilarityCalculation.html index 0ed9bd5..5f7d3d4 100644 --- a/docs/com/nuix/superutilities/misc/SimilarityCalculation.html +++ b/docs/com/nuix/superutilities/misc/SimilarityCalculation.html @@ -3,36 +3,45 @@ -SimilarityCalculation - - - +SimilarityCalculation (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/misc/TermExpander.html b/docs/com/nuix/superutilities/misc/TermExpander.html index bf9e013..260f999 100644 --- a/docs/com/nuix/superutilities/misc/TermExpander.html +++ b/docs/com/nuix/superutilities/misc/TermExpander.html @@ -3,36 +3,45 @@ -TermExpander - - - +TermExpander (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/misc/ZipHelper.html b/docs/com/nuix/superutilities/misc/ZipHelper.html index a5467ca..e89b895 100644 --- a/docs/com/nuix/superutilities/misc/ZipHelper.html +++ b/docs/com/nuix/superutilities/misc/ZipHelper.html @@ -3,36 +3,45 @@ -ZipHelper - - - +ZipHelper (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/misc/class-use/DigestList.html b/docs/com/nuix/superutilities/misc/class-use/DigestList.html deleted file mode 100644 index ff7c443..0000000 --- a/docs/com/nuix/superutilities/misc/class-use/DigestList.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.misc.DigestList - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.misc.DigestList

-
-
No usage of com.nuix.superutilities.misc.DigestList
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/misc/class-use/DriveSpaceInfo.html b/docs/com/nuix/superutilities/misc/class-use/DriveSpaceInfo.html deleted file mode 100644 index 6e23fd7..0000000 --- a/docs/com/nuix/superutilities/misc/class-use/DriveSpaceInfo.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.misc.DriveSpaceInfo - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.misc.DriveSpaceInfo

-
-
-
- - - - - - - - - - - - - - -
Packages that use DriveSpaceInfo 
PackageDescription
com.nuix.superutilities.misc 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/misc/class-use/ExpandedTermInfo.html b/docs/com/nuix/superutilities/misc/class-use/ExpandedTermInfo.html deleted file mode 100644 index cb4926b..0000000 --- a/docs/com/nuix/superutilities/misc/class-use/ExpandedTermInfo.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.misc.ExpandedTermInfo - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.misc.ExpandedTermInfo

-
-
-
- - - - - - - - - - - - - - -
Packages that use ExpandedTermInfo 
PackageDescription
com.nuix.superutilities.misc 
-
-
-
    -
  • -
    - - -

    Uses of ExpandedTermInfo in com.nuix.superutilities.misc

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Methods in com.nuix.superutilities.misc that return types with arguments of type ExpandedTermInfo 
    Modifier and TypeMethodDescription
    java.util.List<ExpandedTermInfo>TermExpander.expandTerm​(nuix.Case nuixCase, -boolean content, -boolean properties, -java.lang.String term) -
    This method "expands" a term to related terms in the specified case.
    -
    java.util.List<ExpandedTermInfo>TermExpander.expandTerm​(nuix.Case nuixCase, -boolean content, -boolean properties, -java.lang.String term, -java.lang.String scopeQuery) -
    This method "expands" a term to related terms in the specified case.
    -
    java.util.List<ExpandedTermInfo>TermExpander.expandTerm​(nuix.Case nuixCase, -java.lang.String term) -
    This method "expands" a term to related terms in the specified case.
    -
    -
    -
    -
  • -
-
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/misc/class-use/FormatUtility.html b/docs/com/nuix/superutilities/misc/class-use/FormatUtility.html deleted file mode 100644 index 227b91c..0000000 --- a/docs/com/nuix/superutilities/misc/class-use/FormatUtility.html +++ /dev/null @@ -1,178 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.misc.FormatUtility - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.misc.FormatUtility

-
-
-
- - - - - - - - - - - - - - - - - - -
Packages that use FormatUtility 
PackageDescription
com.nuix.superutilities 
com.nuix.superutilities.misc 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/misc/class-use/FreeSpaceMonitor.html b/docs/com/nuix/superutilities/misc/class-use/FreeSpaceMonitor.html deleted file mode 100644 index e4ab20d..0000000 --- a/docs/com/nuix/superutilities/misc/class-use/FreeSpaceMonitor.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.misc.FreeSpaceMonitor - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.misc.FreeSpaceMonitor

-
-
-
- - - - - - - - - - - - - - - - - - -
Packages that use FreeSpaceMonitor 
PackageDescription
com.nuix.superutilities 
com.nuix.superutilities.misc 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/misc/class-use/FreeSpaceMonitorEventCallback.html b/docs/com/nuix/superutilities/misc/class-use/FreeSpaceMonitorEventCallback.html deleted file mode 100644 index 39a3890..0000000 --- a/docs/com/nuix/superutilities/misc/class-use/FreeSpaceMonitorEventCallback.html +++ /dev/null @@ -1,164 +0,0 @@ - - - - - -Uses of Interface com.nuix.superutilities.misc.FreeSpaceMonitorEventCallback - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Interface
com.nuix.superutilities.misc.FreeSpaceMonitorEventCallback

-
-
-
- - - - - - - - - - - - - - -
Packages that use FreeSpaceMonitorEventCallback 
PackageDescription
com.nuix.superutilities.misc 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/misc/class-use/FuzzyTermInfo.html b/docs/com/nuix/superutilities/misc/class-use/FuzzyTermInfo.html deleted file mode 100644 index e369a7a..0000000 --- a/docs/com/nuix/superutilities/misc/class-use/FuzzyTermInfo.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.misc.FuzzyTermInfo - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.misc.FuzzyTermInfo

-
-
-
- - - - - - - - - - - - - - -
Packages that use FuzzyTermInfo 
PackageDescription
com.nuix.superutilities.misc 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/misc/class-use/LevenshteinDistance.html b/docs/com/nuix/superutilities/misc/class-use/LevenshteinDistance.html deleted file mode 100644 index 17ced5b..0000000 --- a/docs/com/nuix/superutilities/misc/class-use/LevenshteinDistance.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.misc.LevenshteinDistance - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.misc.LevenshteinDistance

-
-
No usage of com.nuix.superutilities.misc.LevenshteinDistance
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/misc/class-use/NamedStringList.html b/docs/com/nuix/superutilities/misc/class-use/NamedStringList.html deleted file mode 100644 index eef86ec..0000000 --- a/docs/com/nuix/superutilities/misc/class-use/NamedStringList.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.misc.NamedStringList - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.misc.NamedStringList

-
-
-
- - - - - - - - - - - - - - -
Packages that use NamedStringList 
PackageDescription
com.nuix.superutilities.misc 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/misc/class-use/NuixVersion.html b/docs/com/nuix/superutilities/misc/class-use/NuixVersion.html deleted file mode 100644 index 71d116b..0000000 --- a/docs/com/nuix/superutilities/misc/class-use/NuixVersion.html +++ /dev/null @@ -1,236 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.misc.NuixVersion - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.misc.NuixVersion

-
-
-
- - - - - - - - - - - - - - - - - - -
Packages that use NuixVersion 
PackageDescription
com.nuix.superutilities 
com.nuix.superutilities.misc 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/misc/class-use/PdfUtility.html b/docs/com/nuix/superutilities/misc/class-use/PdfUtility.html deleted file mode 100644 index c94c067..0000000 --- a/docs/com/nuix/superutilities/misc/class-use/PdfUtility.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.misc.PdfUtility - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.misc.PdfUtility

-
-
No usage of com.nuix.superutilities.misc.PdfUtility
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/misc/class-use/PlaceholderResolver.html b/docs/com/nuix/superutilities/misc/class-use/PlaceholderResolver.html deleted file mode 100644 index 74baf98..0000000 --- a/docs/com/nuix/superutilities/misc/class-use/PlaceholderResolver.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.misc.PlaceholderResolver - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.misc.PlaceholderResolver

-
-
No usage of com.nuix.superutilities.misc.PlaceholderResolver
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/misc/class-use/ProfileDigester.html b/docs/com/nuix/superutilities/misc/class-use/ProfileDigester.html deleted file mode 100644 index fa3eaa3..0000000 --- a/docs/com/nuix/superutilities/misc/class-use/ProfileDigester.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.misc.ProfileDigester - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.misc.ProfileDigester

-
-
No usage of com.nuix.superutilities.misc.ProfileDigester
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/misc/class-use/SQLiteBacked.html b/docs/com/nuix/superutilities/misc/class-use/SQLiteBacked.html deleted file mode 100644 index 19321b7..0000000 --- a/docs/com/nuix/superutilities/misc/class-use/SQLiteBacked.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.misc.SQLiteBacked - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.misc.SQLiteBacked

-
-
-
- - - - - - - - - - - - - - -
Packages that use SQLiteBacked 
PackageDescription
com.nuix.superutilities.annotations 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/misc/class-use/SimilarityCalculation.html b/docs/com/nuix/superutilities/misc/class-use/SimilarityCalculation.html deleted file mode 100644 index 3d7087e..0000000 --- a/docs/com/nuix/superutilities/misc/class-use/SimilarityCalculation.html +++ /dev/null @@ -1,184 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.misc.SimilarityCalculation - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.misc.SimilarityCalculation

-
-
-
- - - - - - - - - - - - - - -
Packages that use SimilarityCalculation 
PackageDescription
com.nuix.superutilities.misc 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/misc/class-use/TermExpander.html b/docs/com/nuix/superutilities/misc/class-use/TermExpander.html deleted file mode 100644 index 4e5cf53..0000000 --- a/docs/com/nuix/superutilities/misc/class-use/TermExpander.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.misc.TermExpander - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.misc.TermExpander

-
-
No usage of com.nuix.superutilities.misc.TermExpander
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/misc/class-use/ZipHelper.html b/docs/com/nuix/superutilities/misc/class-use/ZipHelper.html deleted file mode 100644 index 9b6f5cc..0000000 --- a/docs/com/nuix/superutilities/misc/class-use/ZipHelper.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.misc.ZipHelper - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.misc.ZipHelper

-
-
No usage of com.nuix.superutilities.misc.ZipHelper
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/misc/package-frame.html b/docs/com/nuix/superutilities/misc/package-frame.html deleted file mode 100644 index 53e88bc..0000000 --- a/docs/com/nuix/superutilities/misc/package-frame.html +++ /dev/null @@ -1,41 +0,0 @@ - - - - - -com.nuix.superutilities.misc - - - - -

com.nuix.superutilities.misc

- - - diff --git a/docs/com/nuix/superutilities/misc/package-summary.html b/docs/com/nuix/superutilities/misc/package-summary.html index 6c46ab6..2b16fc4 100644 --- a/docs/com/nuix/superutilities/misc/package-summary.html +++ b/docs/com/nuix/superutilities/misc/package-summary.html @@ -3,30 +3,39 @@ -com.nuix.superutilities.misc - - - +com.nuix.superutilities.misc (SuperUtilities API) + - + + - - + + - - + + - - -
-
- diff --git a/docs/com/nuix/superutilities/misc/package-tree.html b/docs/com/nuix/superutilities/misc/package-tree.html index f41eea1..f2dfb89 100644 --- a/docs/com/nuix/superutilities/misc/package-tree.html +++ b/docs/com/nuix/superutilities/misc/package-tree.html @@ -3,30 +3,39 @@ -com.nuix.superutilities.misc Class Hierarchy - - - +com.nuix.superutilities.misc Class Hierarchy (SuperUtilities API) + - + + - - + + - - + + - - -
-
diff --git a/docs/com/nuix/superutilities/misc/package-use.html b/docs/com/nuix/superutilities/misc/package-use.html deleted file mode 100644 index 07b0a78..0000000 --- a/docs/com/nuix/superutilities/misc/package-use.html +++ /dev/null @@ -1,265 +0,0 @@ - - - - - -Uses of Package com.nuix.superutilities.misc - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Package
com.nuix.superutilities.misc

-
-
-
- - - - - - - - - - - - - - - - - - - - - - -
Packages that use com.nuix.superutilities.misc 
PackageDescription
com.nuix.superutilities 
com.nuix.superutilities.annotations 
com.nuix.superutilities.misc 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/namedentities/NamedEntityRedactionProgressCallback.html b/docs/com/nuix/superutilities/namedentities/NamedEntityRedactionProgressCallback.html index fd8ff1b..70bc38e 100644 --- a/docs/com/nuix/superutilities/namedentities/NamedEntityRedactionProgressCallback.html +++ b/docs/com/nuix/superutilities/namedentities/NamedEntityRedactionProgressCallback.html @@ -3,36 +3,45 @@ -NamedEntityRedactionProgressCallback - - - +NamedEntityRedactionProgressCallback (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/namedentities/NamedEntityRedactionResults.html b/docs/com/nuix/superutilities/namedentities/NamedEntityRedactionResults.html index 0301db2..de73a39 100644 --- a/docs/com/nuix/superutilities/namedentities/NamedEntityRedactionResults.html +++ b/docs/com/nuix/superutilities/namedentities/NamedEntityRedactionResults.html @@ -3,36 +3,45 @@ -NamedEntityRedactionResults - - - +NamedEntityRedactionResults (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/namedentities/NamedEntityRedactionSettings.html b/docs/com/nuix/superutilities/namedentities/NamedEntityRedactionSettings.html index 67df42a..835b037 100644 --- a/docs/com/nuix/superutilities/namedentities/NamedEntityRedactionSettings.html +++ b/docs/com/nuix/superutilities/namedentities/NamedEntityRedactionSettings.html @@ -3,36 +3,45 @@ -NamedEntityRedactionSettings - - - +NamedEntityRedactionSettings (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/namedentities/NamedEntityUtility.html b/docs/com/nuix/superutilities/namedentities/NamedEntityUtility.html index e1a2d7b..94fa77d 100644 --- a/docs/com/nuix/superutilities/namedentities/NamedEntityUtility.html +++ b/docs/com/nuix/superutilities/namedentities/NamedEntityUtility.html @@ -3,36 +3,45 @@ -NamedEntityUtility - - - +NamedEntityUtility (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/namedentities/class-use/NamedEntityRedactionProgressCallback.html b/docs/com/nuix/superutilities/namedentities/class-use/NamedEntityRedactionProgressCallback.html deleted file mode 100644 index 09c6673..0000000 --- a/docs/com/nuix/superutilities/namedentities/class-use/NamedEntityRedactionProgressCallback.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - -Uses of Interface com.nuix.superutilities.namedentities.NamedEntityRedactionProgressCallback - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Interface
com.nuix.superutilities.namedentities.NamedEntityRedactionProgressCallback

-
-
-
- - - - - - - - - - - - - - -
Packages that use NamedEntityRedactionProgressCallback 
PackageDescription
com.nuix.superutilities.namedentities 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/namedentities/class-use/NamedEntityRedactionResults.html b/docs/com/nuix/superutilities/namedentities/class-use/NamedEntityRedactionResults.html deleted file mode 100644 index 5d10a0b..0000000 --- a/docs/com/nuix/superutilities/namedentities/class-use/NamedEntityRedactionResults.html +++ /dev/null @@ -1,226 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.namedentities.NamedEntityRedactionResults - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.namedentities.NamedEntityRedactionResults

-
-
-
- - - - - - - - - - - - - - -
Packages that use NamedEntityRedactionResults 
PackageDescription
com.nuix.superutilities.namedentities 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/namedentities/class-use/NamedEntityRedactionSettings.html b/docs/com/nuix/superutilities/namedentities/class-use/NamedEntityRedactionSettings.html deleted file mode 100644 index aadea20..0000000 --- a/docs/com/nuix/superutilities/namedentities/class-use/NamedEntityRedactionSettings.html +++ /dev/null @@ -1,198 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.namedentities.NamedEntityRedactionSettings - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.namedentities.NamedEntityRedactionSettings

-
-
-
- - - - - - - - - - - - - - -
Packages that use NamedEntityRedactionSettings 
PackageDescription
com.nuix.superutilities.namedentities 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/namedentities/class-use/NamedEntityUtility.html b/docs/com/nuix/superutilities/namedentities/class-use/NamedEntityUtility.html deleted file mode 100644 index dfccd90..0000000 --- a/docs/com/nuix/superutilities/namedentities/class-use/NamedEntityUtility.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.namedentities.NamedEntityUtility - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.namedentities.NamedEntityUtility

-
-
No usage of com.nuix.superutilities.namedentities.NamedEntityUtility
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/namedentities/package-frame.html b/docs/com/nuix/superutilities/namedentities/package-frame.html deleted file mode 100644 index e9e1f7e..0000000 --- a/docs/com/nuix/superutilities/namedentities/package-frame.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - -com.nuix.superutilities.namedentities - - - - -

com.nuix.superutilities.namedentities

- - - diff --git a/docs/com/nuix/superutilities/namedentities/package-summary.html b/docs/com/nuix/superutilities/namedentities/package-summary.html index 47db53e..3e84d8e 100644 --- a/docs/com/nuix/superutilities/namedentities/package-summary.html +++ b/docs/com/nuix/superutilities/namedentities/package-summary.html @@ -3,30 +3,39 @@ -com.nuix.superutilities.namedentities - - - +com.nuix.superutilities.namedentities (SuperUtilities API) + - + + - - + + - - + + - - -
-
- diff --git a/docs/com/nuix/superutilities/namedentities/package-tree.html b/docs/com/nuix/superutilities/namedentities/package-tree.html index fab59ce..661bc24 100644 --- a/docs/com/nuix/superutilities/namedentities/package-tree.html +++ b/docs/com/nuix/superutilities/namedentities/package-tree.html @@ -3,30 +3,39 @@ -com.nuix.superutilities.namedentities Class Hierarchy - - - +com.nuix.superutilities.namedentities Class Hierarchy (SuperUtilities API) + - + + - - + + - - + + - - -
-
diff --git a/docs/com/nuix/superutilities/namedentities/package-use.html b/docs/com/nuix/superutilities/namedentities/package-use.html deleted file mode 100644 index e578aef..0000000 --- a/docs/com/nuix/superutilities/namedentities/package-use.html +++ /dev/null @@ -1,158 +0,0 @@ - - - - - -Uses of Package com.nuix.superutilities.namedentities - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Package
com.nuix.superutilities.namedentities

-
-
-
- - - - - - - - - - - - - - -
Packages that use com.nuix.superutilities.namedentities 
PackageDescription
com.nuix.superutilities.namedentities 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/package-frame.html b/docs/com/nuix/superutilities/package-frame.html deleted file mode 100644 index d877135..0000000 --- a/docs/com/nuix/superutilities/package-frame.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - -com.nuix.superutilities - - - - -

com.nuix.superutilities

-
-

Classes

- -
- - diff --git a/docs/com/nuix/superutilities/package-summary.html b/docs/com/nuix/superutilities/package-summary.html index 944daf1..d6ab241 100644 --- a/docs/com/nuix/superutilities/package-summary.html +++ b/docs/com/nuix/superutilities/package-summary.html @@ -3,30 +3,39 @@ -com.nuix.superutilities - - - +com.nuix.superutilities (SuperUtilities API) + - + + - - + + - - + + - - -
-
- diff --git a/docs/com/nuix/superutilities/package-tree.html b/docs/com/nuix/superutilities/package-tree.html index 9b4c3a3..16abe17 100644 --- a/docs/com/nuix/superutilities/package-tree.html +++ b/docs/com/nuix/superutilities/package-tree.html @@ -3,30 +3,39 @@ -com.nuix.superutilities Class Hierarchy - - - +com.nuix.superutilities Class Hierarchy (SuperUtilities API) + - + + - - + + - - + + - - -
-
diff --git a/docs/com/nuix/superutilities/package-use.html b/docs/com/nuix/superutilities/package-use.html deleted file mode 100644 index 49302c1..0000000 --- a/docs/com/nuix/superutilities/package-use.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - -Uses of Package com.nuix.superutilities - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Package
com.nuix.superutilities

-
-
-
- - - - - - - - - - - - - - -
Packages that use com.nuix.superutilities 
PackageDescription
com.nuix.superutilities 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/query/QueryHelper.html b/docs/com/nuix/superutilities/query/QueryHelper.html index b9ccbb2..0006de8 100644 --- a/docs/com/nuix/superutilities/query/QueryHelper.html +++ b/docs/com/nuix/superutilities/query/QueryHelper.html @@ -3,36 +3,45 @@ -QueryHelper - - - +QueryHelper (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/query/class-use/QueryHelper.html b/docs/com/nuix/superutilities/query/class-use/QueryHelper.html deleted file mode 100644 index e2b01f7..0000000 --- a/docs/com/nuix/superutilities/query/class-use/QueryHelper.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.query.QueryHelper - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.query.QueryHelper

-
-
No usage of com.nuix.superutilities.query.QueryHelper
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/query/package-frame.html b/docs/com/nuix/superutilities/query/package-frame.html deleted file mode 100644 index 31b808c..0000000 --- a/docs/com/nuix/superutilities/query/package-frame.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - -com.nuix.superutilities.query - - - - -

com.nuix.superutilities.query

-
-

Classes

- -
- - diff --git a/docs/com/nuix/superutilities/query/package-summary.html b/docs/com/nuix/superutilities/query/package-summary.html index 1a40fda..c0b85bb 100644 --- a/docs/com/nuix/superutilities/query/package-summary.html +++ b/docs/com/nuix/superutilities/query/package-summary.html @@ -3,30 +3,39 @@ -com.nuix.superutilities.query - - - +com.nuix.superutilities.query (SuperUtilities API) + - + + - - + + - - + + - - -
-
- diff --git a/docs/com/nuix/superutilities/query/package-tree.html b/docs/com/nuix/superutilities/query/package-tree.html index c18463c..ad02bf9 100644 --- a/docs/com/nuix/superutilities/query/package-tree.html +++ b/docs/com/nuix/superutilities/query/package-tree.html @@ -3,30 +3,39 @@ -com.nuix.superutilities.query Class Hierarchy - - - +com.nuix.superutilities.query Class Hierarchy (SuperUtilities API) + - + + - - + + - - + + - - -
-
diff --git a/docs/com/nuix/superutilities/query/package-use.html b/docs/com/nuix/superutilities/query/package-use.html deleted file mode 100644 index a8f56de..0000000 --- a/docs/com/nuix/superutilities/query/package-use.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - -Uses of Package com.nuix.superutilities.query - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Package
com.nuix.superutilities.query

-
-
No usage of com.nuix.superutilities.query
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/regex/ItemRegexMatchCollection.html b/docs/com/nuix/superutilities/regex/ItemRegexMatchCollection.html index 9c9c1a9..fe98334 100644 --- a/docs/com/nuix/superutilities/regex/ItemRegexMatchCollection.html +++ b/docs/com/nuix/superutilities/regex/ItemRegexMatchCollection.html @@ -3,36 +3,45 @@ -ItemRegexMatchCollection - - - +ItemRegexMatchCollection (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/regex/PatternInfo.html b/docs/com/nuix/superutilities/regex/PatternInfo.html index 1d7342b..338bdaf 100644 --- a/docs/com/nuix/superutilities/regex/PatternInfo.html +++ b/docs/com/nuix/superutilities/regex/PatternInfo.html @@ -3,36 +3,45 @@ -PatternInfo - - - +PatternInfo (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/regex/RegexMatch.html b/docs/com/nuix/superutilities/regex/RegexMatch.html index 2f63e78..40fea51 100644 --- a/docs/com/nuix/superutilities/regex/RegexMatch.html +++ b/docs/com/nuix/superutilities/regex/RegexMatch.html @@ -3,36 +3,45 @@ -RegexMatch - - - +RegexMatch (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/regex/RegexScanError.html b/docs/com/nuix/superutilities/regex/RegexScanError.html index c9442a2..b18bca2 100644 --- a/docs/com/nuix/superutilities/regex/RegexScanError.html +++ b/docs/com/nuix/superutilities/regex/RegexScanError.html @@ -3,36 +3,45 @@ -RegexScanError - - - +RegexScanError (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/regex/RegexScanner.html b/docs/com/nuix/superutilities/regex/RegexScanner.html index 9bdb1ee..06d2ba9 100644 --- a/docs/com/nuix/superutilities/regex/RegexScanner.html +++ b/docs/com/nuix/superutilities/regex/RegexScanner.html @@ -3,36 +3,45 @@ -RegexScanner - - - +RegexScanner (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/regex/class-use/ItemRegexMatchCollection.html b/docs/com/nuix/superutilities/regex/class-use/ItemRegexMatchCollection.html deleted file mode 100644 index 36b0c12..0000000 --- a/docs/com/nuix/superutilities/regex/class-use/ItemRegexMatchCollection.html +++ /dev/null @@ -1,187 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.regex.ItemRegexMatchCollection - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.regex.ItemRegexMatchCollection

-
-
-
- - - - - - - - - - - - - - -
Packages that use ItemRegexMatchCollection 
PackageDescription
com.nuix.superutilities.regex 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/regex/class-use/PatternInfo.html b/docs/com/nuix/superutilities/regex/class-use/PatternInfo.html deleted file mode 100644 index 208b7bc..0000000 --- a/docs/com/nuix/superutilities/regex/class-use/PatternInfo.html +++ /dev/null @@ -1,254 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.regex.PatternInfo - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.regex.PatternInfo

-
-
-
- - - - - - - - - - - - - - -
Packages that use PatternInfo 
PackageDescription
com.nuix.superutilities.regex 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/regex/class-use/RegexMatch.html b/docs/com/nuix/superutilities/regex/class-use/RegexMatch.html deleted file mode 100644 index 6196ce8..0000000 --- a/docs/com/nuix/superutilities/regex/class-use/RegexMatch.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.regex.RegexMatch - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.regex.RegexMatch

-
-
-
- - - - - - - - - - - - - - -
Packages that use RegexMatch 
PackageDescription
com.nuix.superutilities.regex 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/regex/class-use/RegexScanError.html b/docs/com/nuix/superutilities/regex/class-use/RegexScanError.html deleted file mode 100644 index ac7925c..0000000 --- a/docs/com/nuix/superutilities/regex/class-use/RegexScanError.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.regex.RegexScanError - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.regex.RegexScanError

-
-
-
- - - - - - - - - - - - - - -
Packages that use RegexScanError 
PackageDescription
com.nuix.superutilities.regex 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/regex/class-use/RegexScanner.html b/docs/com/nuix/superutilities/regex/class-use/RegexScanner.html deleted file mode 100644 index a18f18f..0000000 --- a/docs/com/nuix/superutilities/regex/class-use/RegexScanner.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.regex.RegexScanner - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.regex.RegexScanner

-
-
-
- - - - - - - - - - - - - - -
Packages that use RegexScanner 
PackageDescription
com.nuix.superutilities 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/regex/package-frame.html b/docs/com/nuix/superutilities/regex/package-frame.html deleted file mode 100644 index 26e9c19..0000000 --- a/docs/com/nuix/superutilities/regex/package-frame.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - -com.nuix.superutilities.regex - - - - -

com.nuix.superutilities.regex

- - - diff --git a/docs/com/nuix/superutilities/regex/package-summary.html b/docs/com/nuix/superutilities/regex/package-summary.html index ee39773..292ad4d 100644 --- a/docs/com/nuix/superutilities/regex/package-summary.html +++ b/docs/com/nuix/superutilities/regex/package-summary.html @@ -3,30 +3,39 @@ -com.nuix.superutilities.regex - - - +com.nuix.superutilities.regex (SuperUtilities API) + - + + - - + + - - + + - - -
-
- diff --git a/docs/com/nuix/superutilities/regex/package-tree.html b/docs/com/nuix/superutilities/regex/package-tree.html index d5635ed..660e97e 100644 --- a/docs/com/nuix/superutilities/regex/package-tree.html +++ b/docs/com/nuix/superutilities/regex/package-tree.html @@ -3,30 +3,39 @@ -com.nuix.superutilities.regex Class Hierarchy - - - +com.nuix.superutilities.regex Class Hierarchy (SuperUtilities API) + - + + - - + + - - + + - - -
-
diff --git a/docs/com/nuix/superutilities/regex/package-use.html b/docs/com/nuix/superutilities/regex/package-use.html deleted file mode 100644 index 2af2806..0000000 --- a/docs/com/nuix/superutilities/regex/package-use.html +++ /dev/null @@ -1,192 +0,0 @@ - - - - - -Uses of Package com.nuix.superutilities.regex - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Package
com.nuix.superutilities.regex

-
-
-
- - - - - - - - - - - - - - - - - - -
Packages that use com.nuix.superutilities.regex 
PackageDescription
com.nuix.superutilities 
com.nuix.superutilities.regex 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/reporting/AsposeCellsColorHelper.html b/docs/com/nuix/superutilities/reporting/AsposeCellsColorHelper.html index b56915f..b6dc705 100644 --- a/docs/com/nuix/superutilities/reporting/AsposeCellsColorHelper.html +++ b/docs/com/nuix/superutilities/reporting/AsposeCellsColorHelper.html @@ -3,36 +3,45 @@ -AsposeCellsColorHelper - - - +AsposeCellsColorHelper (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/reporting/AsposeCellsStyleHelper.html b/docs/com/nuix/superutilities/reporting/AsposeCellsStyleHelper.html index bf89921..3528f44 100644 --- a/docs/com/nuix/superutilities/reporting/AsposeCellsStyleHelper.html +++ b/docs/com/nuix/superutilities/reporting/AsposeCellsStyleHelper.html @@ -3,36 +3,45 @@ -AsposeCellsStyleHelper - - - +AsposeCellsStyleHelper (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/reporting/ColorRing.html b/docs/com/nuix/superutilities/reporting/ColorRing.html index 85243e8..60f4edb 100644 --- a/docs/com/nuix/superutilities/reporting/ColorRing.html +++ b/docs/com/nuix/superutilities/reporting/ColorRing.html @@ -3,36 +3,45 @@ -ColorRing - - - +ColorRing (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/reporting/ColumnValueGenerator.html b/docs/com/nuix/superutilities/reporting/ColumnValueGenerator.html index 918f7b8..6380c56 100644 --- a/docs/com/nuix/superutilities/reporting/ColumnValueGenerator.html +++ b/docs/com/nuix/superutilities/reporting/ColumnValueGenerator.html @@ -3,36 +3,45 @@ -ColumnValueGenerator - - - +ColumnValueGenerator (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/reporting/IntersectionReport.html b/docs/com/nuix/superutilities/reporting/IntersectionReport.html index f8a8188..a55aaae 100644 --- a/docs/com/nuix/superutilities/reporting/IntersectionReport.html +++ b/docs/com/nuix/superutilities/reporting/IntersectionReport.html @@ -3,36 +3,45 @@ -IntersectionReport - - - +IntersectionReport (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/reporting/IntersectionReportProgressCallback.html b/docs/com/nuix/superutilities/reporting/IntersectionReportProgressCallback.html index 77e203e..e3e3a8a 100644 --- a/docs/com/nuix/superutilities/reporting/IntersectionReportProgressCallback.html +++ b/docs/com/nuix/superutilities/reporting/IntersectionReportProgressCallback.html @@ -3,36 +3,45 @@ -IntersectionReportProgressCallback - - - +IntersectionReportProgressCallback (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/reporting/IntersectionReportSheetConfiguration.html b/docs/com/nuix/superutilities/reporting/IntersectionReportSheetConfiguration.html index 7f4d0d3..dd01616 100644 --- a/docs/com/nuix/superutilities/reporting/IntersectionReportSheetConfiguration.html +++ b/docs/com/nuix/superutilities/reporting/IntersectionReportSheetConfiguration.html @@ -3,36 +3,45 @@ -IntersectionReportSheetConfiguration - - - +IntersectionReportSheetConfiguration (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/reporting/NamedQuery.html b/docs/com/nuix/superutilities/reporting/NamedQuery.html index 3bd410d..5bb800d 100644 --- a/docs/com/nuix/superutilities/reporting/NamedQuery.html +++ b/docs/com/nuix/superutilities/reporting/NamedQuery.html @@ -3,36 +3,45 @@ -NamedQuery - - - +NamedQuery (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/reporting/ScriptedColumnValueGenerator.html b/docs/com/nuix/superutilities/reporting/ScriptedColumnValueGenerator.html index 4cc53dc..7281e86 100644 --- a/docs/com/nuix/superutilities/reporting/ScriptedColumnValueGenerator.html +++ b/docs/com/nuix/superutilities/reporting/ScriptedColumnValueGenerator.html @@ -3,36 +3,45 @@ -ScriptedColumnValueGenerator - - - +ScriptedColumnValueGenerator (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/reporting/SimpleWorksheet.html b/docs/com/nuix/superutilities/reporting/SimpleWorksheet.html index 129bf34..072f7b3 100644 --- a/docs/com/nuix/superutilities/reporting/SimpleWorksheet.html +++ b/docs/com/nuix/superutilities/reporting/SimpleWorksheet.html @@ -3,36 +3,45 @@ -SimpleWorksheet - - - +SimpleWorksheet (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/reporting/SimpleXlsx.html b/docs/com/nuix/superutilities/reporting/SimpleXlsx.html index 9379090..cc4ae4a 100644 --- a/docs/com/nuix/superutilities/reporting/SimpleXlsx.html +++ b/docs/com/nuix/superutilities/reporting/SimpleXlsx.html @@ -3,36 +3,45 @@ -SimpleXlsx - - - +SimpleXlsx (SuperUtilities API) + - + + - - + + - - + + - - -
-
- + - - diff --git a/docs/com/nuix/superutilities/reporting/class-use/AsposeCellsColorHelper.html b/docs/com/nuix/superutilities/reporting/class-use/AsposeCellsColorHelper.html deleted file mode 100644 index 7978207..0000000 --- a/docs/com/nuix/superutilities/reporting/class-use/AsposeCellsColorHelper.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.reporting.AsposeCellsColorHelper - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.reporting.AsposeCellsColorHelper

-
-
No usage of com.nuix.superutilities.reporting.AsposeCellsColorHelper
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/reporting/class-use/AsposeCellsStyleHelper.html b/docs/com/nuix/superutilities/reporting/class-use/AsposeCellsStyleHelper.html deleted file mode 100644 index 68181c2..0000000 --- a/docs/com/nuix/superutilities/reporting/class-use/AsposeCellsStyleHelper.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.reporting.AsposeCellsStyleHelper - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.reporting.AsposeCellsStyleHelper

-
-
No usage of com.nuix.superutilities.reporting.AsposeCellsStyleHelper
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/reporting/class-use/ColorRing.html b/docs/com/nuix/superutilities/reporting/class-use/ColorRing.html deleted file mode 100644 index 8595229..0000000 --- a/docs/com/nuix/superutilities/reporting/class-use/ColorRing.html +++ /dev/null @@ -1,165 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.reporting.ColorRing - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.reporting.ColorRing

-
-
-
- - - - - - - - - - - - - - -
Packages that use ColorRing 
PackageDescription
com.nuix.superutilities.reporting 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/reporting/class-use/ColumnValueGenerator.html b/docs/com/nuix/superutilities/reporting/class-use/ColumnValueGenerator.html deleted file mode 100644 index ce1b9ab..0000000 --- a/docs/com/nuix/superutilities/reporting/class-use/ColumnValueGenerator.html +++ /dev/null @@ -1,190 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.reporting.ColumnValueGenerator - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.reporting.ColumnValueGenerator

-
-
-
- - - - - - - - - - - - - - -
Packages that use ColumnValueGenerator 
PackageDescription
com.nuix.superutilities.reporting 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/reporting/class-use/IntersectionReport.html b/docs/com/nuix/superutilities/reporting/class-use/IntersectionReport.html deleted file mode 100644 index 93938a1..0000000 --- a/docs/com/nuix/superutilities/reporting/class-use/IntersectionReport.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.reporting.IntersectionReport - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.reporting.IntersectionReport

-
-
No usage of com.nuix.superutilities.reporting.IntersectionReport
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/reporting/class-use/IntersectionReportProgressCallback.html b/docs/com/nuix/superutilities/reporting/class-use/IntersectionReportProgressCallback.html deleted file mode 100644 index c051b1a..0000000 --- a/docs/com/nuix/superutilities/reporting/class-use/IntersectionReportProgressCallback.html +++ /dev/null @@ -1,146 +0,0 @@ - - - - - -Uses of Interface com.nuix.superutilities.reporting.IntersectionReportProgressCallback - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Interface
com.nuix.superutilities.reporting.IntersectionReportProgressCallback

-
-
-
- - - - - - - - - - - - - - -
Packages that use IntersectionReportProgressCallback 
PackageDescription
com.nuix.superutilities.reporting 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/reporting/class-use/IntersectionReportSheetConfiguration.html b/docs/com/nuix/superutilities/reporting/class-use/IntersectionReportSheetConfiguration.html deleted file mode 100644 index 921016a..0000000 --- a/docs/com/nuix/superutilities/reporting/class-use/IntersectionReportSheetConfiguration.html +++ /dev/null @@ -1,150 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.reporting.IntersectionReportSheetConfiguration - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.reporting.IntersectionReportSheetConfiguration

-
-
-
- - - - - - - - - - - - - - -
Packages that use IntersectionReportSheetConfiguration 
PackageDescription
com.nuix.superutilities.reporting 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/reporting/class-use/NamedQuery.html b/docs/com/nuix/superutilities/reporting/class-use/NamedQuery.html deleted file mode 100644 index 9bfd5f4..0000000 --- a/docs/com/nuix/superutilities/reporting/class-use/NamedQuery.html +++ /dev/null @@ -1,211 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.reporting.NamedQuery - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.reporting.NamedQuery

-
-
-
- - - - - - - - - - - - - - -
Packages that use NamedQuery 
PackageDescription
com.nuix.superutilities.reporting 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/reporting/class-use/ScriptedColumnValueGenerator.html b/docs/com/nuix/superutilities/reporting/class-use/ScriptedColumnValueGenerator.html deleted file mode 100644 index ec3c70b..0000000 --- a/docs/com/nuix/superutilities/reporting/class-use/ScriptedColumnValueGenerator.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.reporting.ScriptedColumnValueGenerator - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.reporting.ScriptedColumnValueGenerator

-
-
No usage of com.nuix.superutilities.reporting.ScriptedColumnValueGenerator
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/reporting/class-use/SimpleWorksheet.html b/docs/com/nuix/superutilities/reporting/class-use/SimpleWorksheet.html deleted file mode 100644 index e9bc46b..0000000 --- a/docs/com/nuix/superutilities/reporting/class-use/SimpleWorksheet.html +++ /dev/null @@ -1,146 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.reporting.SimpleWorksheet - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.reporting.SimpleWorksheet

-
-
-
- - - - - - - - - - - - - - -
Packages that use SimpleWorksheet 
PackageDescription
com.nuix.superutilities.reporting 
-
-
- -
-
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/reporting/class-use/SimpleXlsx.html b/docs/com/nuix/superutilities/reporting/class-use/SimpleXlsx.html deleted file mode 100644 index 39af27c..0000000 --- a/docs/com/nuix/superutilities/reporting/class-use/SimpleXlsx.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - -Uses of Class com.nuix.superutilities.reporting.SimpleXlsx - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Class
com.nuix.superutilities.reporting.SimpleXlsx

-
-
No usage of com.nuix.superutilities.reporting.SimpleXlsx
-
- -
-
- - diff --git a/docs/com/nuix/superutilities/reporting/package-frame.html b/docs/com/nuix/superutilities/reporting/package-frame.html deleted file mode 100644 index 8b09f58..0000000 --- a/docs/com/nuix/superutilities/reporting/package-frame.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - -com.nuix.superutilities.reporting - - - - -

com.nuix.superutilities.reporting

- - - diff --git a/docs/com/nuix/superutilities/reporting/package-summary.html b/docs/com/nuix/superutilities/reporting/package-summary.html index 2a71a88..f9fd5d1 100644 --- a/docs/com/nuix/superutilities/reporting/package-summary.html +++ b/docs/com/nuix/superutilities/reporting/package-summary.html @@ -3,30 +3,39 @@ -com.nuix.superutilities.reporting - - - +com.nuix.superutilities.reporting (SuperUtilities API) + - + + - - + + - - + + - - -
-
- diff --git a/docs/com/nuix/superutilities/reporting/package-tree.html b/docs/com/nuix/superutilities/reporting/package-tree.html index d1460a1..a528f15 100644 --- a/docs/com/nuix/superutilities/reporting/package-tree.html +++ b/docs/com/nuix/superutilities/reporting/package-tree.html @@ -3,30 +3,39 @@ -com.nuix.superutilities.reporting Class Hierarchy - - - +com.nuix.superutilities.reporting Class Hierarchy (SuperUtilities API) + - + + - - + + - - + + - - -
-
diff --git a/docs/com/nuix/superutilities/reporting/package-use.html b/docs/com/nuix/superutilities/reporting/package-use.html deleted file mode 100644 index c5d489f..0000000 --- a/docs/com/nuix/superutilities/reporting/package-use.html +++ /dev/null @@ -1,172 +0,0 @@ - - - - - -Uses of Package com.nuix.superutilities.reporting - - - - - - - - - - - - - - - -
- -
-
-
-

Uses of Package
com.nuix.superutilities.reporting

-
-
-
- - - - - - - - - - - - - - -
Packages that use com.nuix.superutilities.reporting 
PackageDescription
com.nuix.superutilities.reporting 
-
-
- -
-
-
- -
-
- - diff --git a/docs/constant-values.html b/docs/constant-values.html index 19e17da..eacfaff 100644 --- a/docs/constant-values.html +++ b/docs/constant-values.html @@ -3,30 +3,39 @@ -Constant Field Values - - - +Constant Field Values (SuperUtilities API) + - + + - - + + - - + + - - -
-
- diff --git a/docs/deprecated-list.html b/docs/deprecated-list.html index 1bd303d..0c59fdd 100644 --- a/docs/deprecated-list.html +++ b/docs/deprecated-list.html @@ -3,30 +3,39 @@ -Deprecated List - - - +Deprecated List (SuperUtilities API) + - + + - - + + - - + + - - -
-
diff --git a/docs/help-doc.html b/docs/help-doc.html index 0f75d45..1c4d998 100644 --- a/docs/help-doc.html +++ b/docs/help-doc.html @@ -3,30 +3,39 @@ -API Help - - - +API Help (SuperUtilities API) + - + + - - + + - - + + - - -
-
diff --git a/docs/jquery-ui.overrides.css b/docs/jquery-ui.overrides.css new file mode 100644 index 0000000..facf852 --- /dev/null +++ b/docs/jquery-ui.overrides.css @@ -0,0 +1,35 @@ +/* + * Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +.ui-state-active, +.ui-widget-content .ui-state-active, +.ui-widget-header .ui-state-active, +a.ui-button:active, +.ui-button:active, +.ui-button.ui-state-active:hover { + /* Overrides the color of selection used in jQuery UI */ + background: #F8981D; + border: 1px solid #F8981D; +} diff --git a/docs/script-dir/external/jquery/jquery.js b/docs/jquery/external/jquery/jquery.js similarity index 91% rename from docs/script-dir/external/jquery/jquery.js rename to docs/jquery/external/jquery/jquery.js index 5b16efa..5093733 100644 --- a/docs/script-dir/external/jquery/jquery.js +++ b/docs/jquery/external/jquery/jquery.js @@ -1,5 +1,5 @@ /*! - * jQuery JavaScript Library v3.4.1 + * jQuery JavaScript Library v3.5.1 * https://jquery.com/ * * Includes Sizzle.js @@ -9,7 +9,7 @@ * Released under the MIT license * https://jquery.org/license * - * Date: 2019-05-01T21:04Z + * Date: 2020-05-04T22:49Z */ ( function( global, factory ) { @@ -47,13 +47,16 @@ var arr = []; -var document = window.document; - var getProto = Object.getPrototypeOf; var slice = arr.slice; -var concat = arr.concat; +var flat = arr.flat ? function( array ) { + return arr.flat.call( array ); +} : function( array ) { + return arr.concat.apply( [], array ); +}; + var push = arr.push; @@ -86,6 +89,8 @@ var isWindow = function isWindow( obj ) { }; +var document = window.document; + var preservedScriptAttributes = { @@ -142,7 +147,7 @@ function toType( obj ) { var - version = "3.4.1", + version = "3.5.1", // Define a local copy of jQuery jQuery = function( selector, context ) { @@ -150,11 +155,7 @@ var // The jQuery object is actually just the init constructor 'enhanced' // Need init if jQuery is called (just allow error to be thrown if not included) return new jQuery.fn.init( selector, context ); - }, - - // Support: Android <=4.0 only - // Make sure we trim BOM and NBSP - rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g; + }; jQuery.fn = jQuery.prototype = { @@ -220,6 +221,18 @@ jQuery.fn = jQuery.prototype = { return this.eq( -1 ); }, + even: function() { + return this.pushStack( jQuery.grep( this, function( _elem, i ) { + return ( i + 1 ) % 2; + } ) ); + }, + + odd: function() { + return this.pushStack( jQuery.grep( this, function( _elem, i ) { + return i % 2; + } ) ); + }, + eq: function( i ) { var len = this.length, j = +i + ( i < 0 ? len : 0 ); @@ -353,9 +366,10 @@ jQuery.extend( { return true; }, - // Evaluates a script in a global context - globalEval: function( code, options ) { - DOMEval( code, { nonce: options && options.nonce } ); + // Evaluates a script in a provided context; falls back to the global one + // if not specified. + globalEval: function( code, options, doc ) { + DOMEval( code, { nonce: options && options.nonce }, doc ); }, each: function( obj, callback ) { @@ -379,13 +393,6 @@ jQuery.extend( { return obj; }, - // Support: Android <=4.0 only - trim: function( text ) { - return text == null ? - "" : - ( text + "" ).replace( rtrim, "" ); - }, - // results is for internal usage only makeArray: function( arr, results ) { var ret = results || []; @@ -472,7 +479,7 @@ jQuery.extend( { } // Flatten any nested arrays - return concat.apply( [], ret ); + return flat( ret ); }, // A global GUID counter for objects @@ -489,7 +496,7 @@ if ( typeof Symbol === "function" ) { // Populate the class2type map jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), -function( i, name ) { +function( _i, name ) { class2type[ "[object " + name + "]" ] = name.toLowerCase(); } ); @@ -511,17 +518,16 @@ function isArrayLike( obj ) { } var Sizzle = /*! - * Sizzle CSS Selector Engine v2.3.4 + * Sizzle CSS Selector Engine v2.3.5 * https://sizzlejs.com/ * * Copyright JS Foundation and other contributors * Released under the MIT license * https://js.foundation/ * - * Date: 2019-04-08 + * Date: 2020-03-14 */ -(function( window ) { - +( function( window ) { var i, support, Expr, @@ -561,59 +567,70 @@ var i, }, // Instance methods - hasOwn = ({}).hasOwnProperty, + hasOwn = ( {} ).hasOwnProperty, arr = [], pop = arr.pop, - push_native = arr.push, + pushNative = arr.push, push = arr.push, slice = arr.slice, + // Use a stripped-down indexOf as it's faster than native // https://jsperf.com/thor-indexof-vs-for/5 indexOf = function( list, elem ) { var i = 0, len = list.length; for ( ; i < len; i++ ) { - if ( list[i] === elem ) { + if ( list[ i ] === elem ) { return i; } } return -1; }, - booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", + booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|" + + "ismap|loop|multiple|open|readonly|required|scoped", // Regular expressions // http://www.w3.org/TR/css3-selectors/#whitespace whitespace = "[\\x20\\t\\r\\n\\f]", - // http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier - identifier = "(?:\\\\.|[\\w-]|[^\0-\\xa0])+", + // https://www.w3.org/TR/css-syntax-3/#ident-token-diagram + identifier = "(?:\\\\[\\da-fA-F]{1,6}" + whitespace + + "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+", // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + + // Operator (capture 2) "*([*^$|!~]?=)" + whitespace + - // "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]" - "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace + - "*\\]", + + // "Attribute values must be CSS identifiers [capture 5] + // or strings [capture 3 or capture 4]" + "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + + whitespace + "*\\]", pseudos = ":(" + identifier + ")(?:\\((" + + // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: // 1. quoted (capture 3; capture 4 or capture 5) "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + + // 2. simple (capture 6) "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + + // 3. anything else (capture 2) ".*" + ")\\)|)", // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter rwhitespace = new RegExp( whitespace + "+", "g" ), - rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ), + rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + + whitespace + "+$", "g" ), rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), - rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ), + rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + + "*" ), rdescend = new RegExp( whitespace + "|>" ), rpseudo = new RegExp( pseudos ), @@ -625,14 +642,16 @@ var i, "TAG": new RegExp( "^(" + identifier + "|[*])" ), "ATTR": new RegExp( "^" + attributes ), "PSEUDO": new RegExp( "^" + pseudos ), - "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace + - "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace + - "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), + "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + + whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + + whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), + // For use in libraries implementing .is() // We use this for POS matching in `select` - "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + - whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) + "needsContext": new RegExp( "^" + whitespace + + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) }, rhtml = /HTML$/i, @@ -648,18 +667,21 @@ var i, // CSS escapes // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters - runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ), - funescape = function( _, escaped, escapedWhitespace ) { - var high = "0x" + escaped - 0x10000; - // NaN means non-codepoint - // Support: Firefox<24 - // Workaround erroneous numeric interpretation of +"0x" - return high !== high || escapedWhitespace ? - escaped : + runescape = new RegExp( "\\\\[\\da-fA-F]{1,6}" + whitespace + "?|\\\\([^\\r\\n\\f])", "g" ), + funescape = function( escape, nonHex ) { + var high = "0x" + escape.slice( 1 ) - 0x10000; + + return nonHex ? + + // Strip the backslash prefix from a non-hex escape sequence + nonHex : + + // Replace a hexadecimal escape sequence with the encoded Unicode code point + // Support: IE <=11+ + // For values outside the Basic Multilingual Plane (BMP), manually construct a + // surrogate pair high < 0 ? - // BMP codepoint String.fromCharCode( high + 0x10000 ) : - // Supplemental Plane codepoint (surrogate pair) String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); }, @@ -675,7 +697,8 @@ var i, } // Control characters and (dependent upon position) numbers get escaped as code points - return ch.slice( 0, -1 ) + "\\" + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; + return ch.slice( 0, -1 ) + "\\" + + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; } // Other potentially-special ASCII characters get backslash-escaped @@ -700,18 +723,20 @@ var i, // Optimize for push.apply( _, NodeList ) try { push.apply( - (arr = slice.call( preferredDoc.childNodes )), + ( arr = slice.call( preferredDoc.childNodes ) ), preferredDoc.childNodes ); + // Support: Android<4.0 // Detect silently failing push.apply + // eslint-disable-next-line no-unused-expressions arr[ preferredDoc.childNodes.length ].nodeType; } catch ( e ) { push = { apply: arr.length ? // Leverage slice if possible function( target, els ) { - push_native.apply( target, slice.call(els) ); + pushNative.apply( target, slice.call( els ) ); } : // Support: IE<9 @@ -719,8 +744,9 @@ try { function( target, els ) { var j = target.length, i = 0; + // Can't trust NodeList.length - while ( (target[j++] = els[i++]) ) {} + while ( ( target[ j++ ] = els[ i++ ] ) ) {} target.length = j - 1; } }; @@ -744,24 +770,21 @@ function Sizzle( selector, context, results, seed ) { // Try to shortcut find operations (as opposed to filters) in HTML documents if ( !seed ) { - - if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) { - setDocument( context ); - } + setDocument( context ); context = context || document; if ( documentIsHTML ) { // If the selector is sufficiently simple, try using a "get*By*" DOM method // (excepting DocumentFragment context, where the methods don't exist) - if ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) { + if ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) { // ID selector - if ( (m = match[1]) ) { + if ( ( m = match[ 1 ] ) ) { // Document context if ( nodeType === 9 ) { - if ( (elem = context.getElementById( m )) ) { + if ( ( elem = context.getElementById( m ) ) ) { // Support: IE, Opera, Webkit // TODO: identify versions @@ -780,7 +803,7 @@ function Sizzle( selector, context, results, seed ) { // Support: IE, Opera, Webkit // TODO: identify versions // getElementById can match elements by name instead of ID - if ( newContext && (elem = newContext.getElementById( m )) && + if ( newContext && ( elem = newContext.getElementById( m ) ) && contains( context, elem ) && elem.id === m ) { @@ -790,12 +813,12 @@ function Sizzle( selector, context, results, seed ) { } // Type selector - } else if ( match[2] ) { + } else if ( match[ 2 ] ) { push.apply( results, context.getElementsByTagName( selector ) ); return results; // Class selector - } else if ( (m = match[3]) && support.getElementsByClassName && + } else if ( ( m = match[ 3 ] ) && support.getElementsByClassName && context.getElementsByClassName ) { push.apply( results, context.getElementsByClassName( m ) ); @@ -806,11 +829,11 @@ function Sizzle( selector, context, results, seed ) { // Take advantage of querySelectorAll if ( support.qsa && !nonnativeSelectorCache[ selector + " " ] && - (!rbuggyQSA || !rbuggyQSA.test( selector )) && + ( !rbuggyQSA || !rbuggyQSA.test( selector ) ) && // Support: IE 8 only // Exclude object elements - (nodeType !== 1 || context.nodeName.toLowerCase() !== "object") ) { + ( nodeType !== 1 || context.nodeName.toLowerCase() !== "object" ) ) { newSelector = selector; newContext = context; @@ -819,27 +842,36 @@ function Sizzle( selector, context, results, seed ) { // descendant combinators, which is not what we want. // In such cases, we work around the behavior by prefixing every selector in the // list with an ID selector referencing the scope context. + // The technique has to be used as well when a leading combinator is used + // as such selectors are not recognized by querySelectorAll. // Thanks to Andrew Dupont for this technique. - if ( nodeType === 1 && rdescend.test( selector ) ) { + if ( nodeType === 1 && + ( rdescend.test( selector ) || rcombinators.test( selector ) ) ) { - // Capture the context ID, setting it first if necessary - if ( (nid = context.getAttribute( "id" )) ) { - nid = nid.replace( rcssescape, fcssescape ); - } else { - context.setAttribute( "id", (nid = expando) ); + // Expand context for sibling selectors + newContext = rsibling.test( selector ) && testContext( context.parentNode ) || + context; + + // We can use :scope instead of the ID hack if the browser + // supports it & if we're not changing the context. + if ( newContext !== context || !support.scope ) { + + // Capture the context ID, setting it first if necessary + if ( ( nid = context.getAttribute( "id" ) ) ) { + nid = nid.replace( rcssescape, fcssescape ); + } else { + context.setAttribute( "id", ( nid = expando ) ); + } } // Prefix every selector in the list groups = tokenize( selector ); i = groups.length; while ( i-- ) { - groups[i] = "#" + nid + " " + toSelector( groups[i] ); + groups[ i ] = ( nid ? "#" + nid : ":scope" ) + " " + + toSelector( groups[ i ] ); } newSelector = groups.join( "," ); - - // Expand context for sibling selectors - newContext = rsibling.test( selector ) && testContext( context.parentNode ) || - context; } try { @@ -872,12 +904,14 @@ function createCache() { var keys = []; function cache( key, value ) { + // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) if ( keys.push( key + " " ) > Expr.cacheLength ) { + // Only keep the most recent entries delete cache[ keys.shift() ]; } - return (cache[ key + " " ] = value); + return ( cache[ key + " " ] = value ); } return cache; } @@ -896,17 +930,19 @@ function markFunction( fn ) { * @param {Function} fn Passed the created element and returns a boolean result */ function assert( fn ) { - var el = document.createElement("fieldset"); + var el = document.createElement( "fieldset" ); try { return !!fn( el ); - } catch (e) { + } catch ( e ) { return false; } finally { + // Remove from its parent by default if ( el.parentNode ) { el.parentNode.removeChild( el ); } + // release memory in IE el = null; } @@ -918,11 +954,11 @@ function assert( fn ) { * @param {Function} handler The method that will be applied */ function addHandle( attrs, handler ) { - var arr = attrs.split("|"), + var arr = attrs.split( "|" ), i = arr.length; while ( i-- ) { - Expr.attrHandle[ arr[i] ] = handler; + Expr.attrHandle[ arr[ i ] ] = handler; } } @@ -944,7 +980,7 @@ function siblingCheck( a, b ) { // Check if b follows a if ( cur ) { - while ( (cur = cur.nextSibling) ) { + while ( ( cur = cur.nextSibling ) ) { if ( cur === b ) { return -1; } @@ -972,7 +1008,7 @@ function createInputPseudo( type ) { function createButtonPseudo( type ) { return function( elem ) { var name = elem.nodeName.toLowerCase(); - return (name === "input" || name === "button") && elem.type === type; + return ( name === "input" || name === "button" ) && elem.type === type; }; } @@ -1015,7 +1051,7 @@ function createDisabledPseudo( disabled ) { // Where there is no isDisabled, check manually /* jshint -W018 */ elem.isDisabled !== !disabled && - inDisabledFieldset( elem ) === disabled; + inDisabledFieldset( elem ) === disabled; } return elem.disabled === disabled; @@ -1037,21 +1073,21 @@ function createDisabledPseudo( disabled ) { * @param {Function} fn */ function createPositionalPseudo( fn ) { - return markFunction(function( argument ) { + return markFunction( function( argument ) { argument = +argument; - return markFunction(function( seed, matches ) { + return markFunction( function( seed, matches ) { var j, matchIndexes = fn( [], seed.length, argument ), i = matchIndexes.length; // Match elements found at the specified indexes while ( i-- ) { - if ( seed[ (j = matchIndexes[i]) ] ) { - seed[j] = !(matches[j] = seed[j]); + if ( seed[ ( j = matchIndexes[ i ] ) ] ) { + seed[ j ] = !( matches[ j ] = seed[ j ] ); } } - }); - }); + } ); + } ); } /** @@ -1073,7 +1109,7 @@ support = Sizzle.support = {}; */ isXML = Sizzle.isXML = function( elem ) { var namespace = elem.namespaceURI, - docElem = (elem.ownerDocument || elem).documentElement; + docElem = ( elem.ownerDocument || elem ).documentElement; // Support: IE <=8 // Assume HTML when documentElement doesn't yet exist, such as inside loading iframes @@ -1091,7 +1127,11 @@ setDocument = Sizzle.setDocument = function( node ) { doc = node ? node.ownerDocument || node : preferredDoc; // Return early if doc is invalid or already selected - if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) { + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) { return document; } @@ -1100,10 +1140,14 @@ setDocument = Sizzle.setDocument = function( node ) { docElem = document.documentElement; documentIsHTML = !isXML( document ); - // Support: IE 9-11, Edge + // Support: IE 9 - 11+, Edge 12 - 18+ // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) - if ( preferredDoc !== document && - (subWindow = document.defaultView) && subWindow.top !== subWindow ) { + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( preferredDoc != document && + ( subWindow = document.defaultView ) && subWindow.top !== subWindow ) { // Support: IE 11, Edge if ( subWindow.addEventListener ) { @@ -1115,25 +1159,36 @@ setDocument = Sizzle.setDocument = function( node ) { } } + // Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only, + // Safari 4 - 5 only, Opera <=11.6 - 12.x only + // IE/Edge & older browsers don't support the :scope pseudo-class. + // Support: Safari 6.0 only + // Safari 6.0 supports :scope but it's an alias of :root there. + support.scope = assert( function( el ) { + docElem.appendChild( el ).appendChild( document.createElement( "div" ) ); + return typeof el.querySelectorAll !== "undefined" && + !el.querySelectorAll( ":scope fieldset div" ).length; + } ); + /* Attributes ---------------------------------------------------------------------- */ // Support: IE<8 // Verify that getAttribute really returns attributes and not properties // (excepting IE8 booleans) - support.attributes = assert(function( el ) { + support.attributes = assert( function( el ) { el.className = "i"; - return !el.getAttribute("className"); - }); + return !el.getAttribute( "className" ); + } ); /* getElement(s)By* ---------------------------------------------------------------------- */ // Check if getElementsByTagName("*") returns only elements - support.getElementsByTagName = assert(function( el ) { - el.appendChild( document.createComment("") ); - return !el.getElementsByTagName("*").length; - }); + support.getElementsByTagName = assert( function( el ) { + el.appendChild( document.createComment( "" ) ); + return !el.getElementsByTagName( "*" ).length; + } ); // Support: IE<9 support.getElementsByClassName = rnative.test( document.getElementsByClassName ); @@ -1142,38 +1197,38 @@ setDocument = Sizzle.setDocument = function( node ) { // Check if getElementById returns elements by name // The broken getElementById methods don't pick up programmatically-set names, // so use a roundabout getElementsByName test - support.getById = assert(function( el ) { + support.getById = assert( function( el ) { docElem.appendChild( el ).id = expando; return !document.getElementsByName || !document.getElementsByName( expando ).length; - }); + } ); // ID filter and find if ( support.getById ) { - Expr.filter["ID"] = function( id ) { + Expr.filter[ "ID" ] = function( id ) { var attrId = id.replace( runescape, funescape ); return function( elem ) { - return elem.getAttribute("id") === attrId; + return elem.getAttribute( "id" ) === attrId; }; }; - Expr.find["ID"] = function( id, context ) { + Expr.find[ "ID" ] = function( id, context ) { if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { var elem = context.getElementById( id ); return elem ? [ elem ] : []; } }; } else { - Expr.filter["ID"] = function( id ) { + Expr.filter[ "ID" ] = function( id ) { var attrId = id.replace( runescape, funescape ); return function( elem ) { var node = typeof elem.getAttributeNode !== "undefined" && - elem.getAttributeNode("id"); + elem.getAttributeNode( "id" ); return node && node.value === attrId; }; }; // Support: IE 6 - 7 only // getElementById is not reliable as a find shortcut - Expr.find["ID"] = function( id, context ) { + Expr.find[ "ID" ] = function( id, context ) { if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { var node, i, elems, elem = context.getElementById( id ); @@ -1181,7 +1236,7 @@ setDocument = Sizzle.setDocument = function( node ) { if ( elem ) { // Verify the id attribute - node = elem.getAttributeNode("id"); + node = elem.getAttributeNode( "id" ); if ( node && node.value === id ) { return [ elem ]; } @@ -1189,8 +1244,8 @@ setDocument = Sizzle.setDocument = function( node ) { // Fall back on getElementsByName elems = context.getElementsByName( id ); i = 0; - while ( (elem = elems[i++]) ) { - node = elem.getAttributeNode("id"); + while ( ( elem = elems[ i++ ] ) ) { + node = elem.getAttributeNode( "id" ); if ( node && node.value === id ) { return [ elem ]; } @@ -1203,7 +1258,7 @@ setDocument = Sizzle.setDocument = function( node ) { } // Tag - Expr.find["TAG"] = support.getElementsByTagName ? + Expr.find[ "TAG" ] = support.getElementsByTagName ? function( tag, context ) { if ( typeof context.getElementsByTagName !== "undefined" ) { return context.getElementsByTagName( tag ); @@ -1218,12 +1273,13 @@ setDocument = Sizzle.setDocument = function( node ) { var elem, tmp = [], i = 0, + // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too results = context.getElementsByTagName( tag ); // Filter out possible comments if ( tag === "*" ) { - while ( (elem = results[i++]) ) { + while ( ( elem = results[ i++ ] ) ) { if ( elem.nodeType === 1 ) { tmp.push( elem ); } @@ -1235,7 +1291,7 @@ setDocument = Sizzle.setDocument = function( node ) { }; // Class - Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) { + Expr.find[ "CLASS" ] = support.getElementsByClassName && function( className, context ) { if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { return context.getElementsByClassName( className ); } @@ -1256,10 +1312,14 @@ setDocument = Sizzle.setDocument = function( node ) { // See https://bugs.jquery.com/ticket/13378 rbuggyQSA = []; - if ( (support.qsa = rnative.test( document.querySelectorAll )) ) { + if ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) { + // Build QSA regex // Regex strategy adopted from Diego Perini - assert(function( el ) { + assert( function( el ) { + + var input; + // Select is set to empty string on purpose // This is to test IE's treatment of not explicitly // setting a boolean content attribute, @@ -1273,78 +1333,98 @@ setDocument = Sizzle.setDocument = function( node ) { // Nothing should be selected when empty strings follow ^= or $= or *= // The test attribute must be unknown in Opera but "safe" for WinRT // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section - if ( el.querySelectorAll("[msallowcapture^='']").length ) { + if ( el.querySelectorAll( "[msallowcapture^='']" ).length ) { rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); } // Support: IE8 // Boolean attributes and "value" are not treated correctly - if ( !el.querySelectorAll("[selected]").length ) { + if ( !el.querySelectorAll( "[selected]" ).length ) { rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); } // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) { - rbuggyQSA.push("~="); + rbuggyQSA.push( "~=" ); + } + + // Support: IE 11+, Edge 15 - 18+ + // IE 11/Edge don't find elements on a `[name='']` query in some cases. + // Adding a temporary attribute to the document before the selection works + // around the issue. + // Interestingly, IE 10 & older don't seem to have the issue. + input = document.createElement( "input" ); + input.setAttribute( "name", "" ); + el.appendChild( input ); + if ( !el.querySelectorAll( "[name='']" ).length ) { + rbuggyQSA.push( "\\[" + whitespace + "*name" + whitespace + "*=" + + whitespace + "*(?:''|\"\")" ); } // Webkit/Opera - :checked should return selected option elements // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked // IE8 throws error here and will not see later tests - if ( !el.querySelectorAll(":checked").length ) { - rbuggyQSA.push(":checked"); + if ( !el.querySelectorAll( ":checked" ).length ) { + rbuggyQSA.push( ":checked" ); } // Support: Safari 8+, iOS 8+ // https://bugs.webkit.org/show_bug.cgi?id=136851 // In-page `selector#id sibling-combinator selector` fails if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) { - rbuggyQSA.push(".#.+[+~]"); + rbuggyQSA.push( ".#.+[+~]" ); } - }); - assert(function( el ) { + // Support: Firefox <=3.6 - 5 only + // Old Firefox doesn't throw on a badly-escaped identifier. + el.querySelectorAll( "\\\f" ); + rbuggyQSA.push( "[\\r\\n\\f]" ); + } ); + + assert( function( el ) { el.innerHTML = "" + ""; // Support: Windows 8 Native Apps // The type and name attributes are restricted during .innerHTML assignment - var input = document.createElement("input"); + var input = document.createElement( "input" ); input.setAttribute( "type", "hidden" ); el.appendChild( input ).setAttribute( "name", "D" ); // Support: IE8 // Enforce case-sensitivity of name attribute - if ( el.querySelectorAll("[name=d]").length ) { + if ( el.querySelectorAll( "[name=d]" ).length ) { rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); } // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) // IE8 throws error here and will not see later tests - if ( el.querySelectorAll(":enabled").length !== 2 ) { + if ( el.querySelectorAll( ":enabled" ).length !== 2 ) { rbuggyQSA.push( ":enabled", ":disabled" ); } // Support: IE9-11+ // IE's :disabled selector does not pick up the children of disabled fieldsets docElem.appendChild( el ).disabled = true; - if ( el.querySelectorAll(":disabled").length !== 2 ) { + if ( el.querySelectorAll( ":disabled" ).length !== 2 ) { rbuggyQSA.push( ":enabled", ":disabled" ); } + // Support: Opera 10 - 11 only // Opera 10-11 does not throw on post-comma invalid pseudos - el.querySelectorAll("*,:x"); - rbuggyQSA.push(",.*:"); - }); + el.querySelectorAll( "*,:x" ); + rbuggyQSA.push( ",.*:" ); + } ); } - if ( (support.matchesSelector = rnative.test( (matches = docElem.matches || + if ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches || docElem.webkitMatchesSelector || docElem.mozMatchesSelector || docElem.oMatchesSelector || - docElem.msMatchesSelector) )) ) { + docElem.msMatchesSelector ) ) ) ) { + + assert( function( el ) { - assert(function( el ) { // Check to see if it's possible to do matchesSelector // on a disconnected node (IE 9) support.disconnectedMatch = matches.call( el, "*" ); @@ -1353,11 +1433,11 @@ setDocument = Sizzle.setDocument = function( node ) { // Gecko does not error, returns false instead matches.call( el, "[s!='']:x" ); rbuggyMatches.push( "!=", pseudos ); - }); + } ); } - rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") ); - rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") ); + rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( "|" ) ); + rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( "|" ) ); /* Contains ---------------------------------------------------------------------- */ @@ -1374,11 +1454,11 @@ setDocument = Sizzle.setDocument = function( node ) { adown.contains ? adown.contains( bup ) : a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 - )); + ) ); } : function( a, b ) { if ( b ) { - while ( (b = b.parentNode) ) { + while ( ( b = b.parentNode ) ) { if ( b === a ) { return true; } @@ -1407,7 +1487,11 @@ setDocument = Sizzle.setDocument = function( node ) { } // Calculate position if both inputs belong to the same document - compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ? + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + compare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ? a.compareDocumentPosition( b ) : // Otherwise we know they are disconnected @@ -1415,13 +1499,24 @@ setDocument = Sizzle.setDocument = function( node ) { // Disconnected nodes if ( compare & 1 || - (!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) { + ( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) { // Choose the first element that is related to our preferred document - if ( a === document || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) { + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( a == document || a.ownerDocument == preferredDoc && + contains( preferredDoc, a ) ) { return -1; } - if ( b === document || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) { + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( b == document || b.ownerDocument == preferredDoc && + contains( preferredDoc, b ) ) { return 1; } @@ -1434,6 +1529,7 @@ setDocument = Sizzle.setDocument = function( node ) { return compare & 4 ? -1 : 1; } : function( a, b ) { + // Exit early if the nodes are identical if ( a === b ) { hasDuplicate = true; @@ -1449,8 +1545,14 @@ setDocument = Sizzle.setDocument = function( node ) { // Parentless nodes are either documents or disconnected if ( !aup || !bup ) { - return a === document ? -1 : - b === document ? 1 : + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + /* eslint-disable eqeqeq */ + return a == document ? -1 : + b == document ? 1 : + /* eslint-enable eqeqeq */ aup ? -1 : bup ? 1 : sortInput ? @@ -1464,26 +1566,32 @@ setDocument = Sizzle.setDocument = function( node ) { // Otherwise we need full lists of their ancestors for comparison cur = a; - while ( (cur = cur.parentNode) ) { + while ( ( cur = cur.parentNode ) ) { ap.unshift( cur ); } cur = b; - while ( (cur = cur.parentNode) ) { + while ( ( cur = cur.parentNode ) ) { bp.unshift( cur ); } // Walk down the tree looking for a discrepancy - while ( ap[i] === bp[i] ) { + while ( ap[ i ] === bp[ i ] ) { i++; } return i ? + // Do a sibling check if the nodes have a common ancestor - siblingCheck( ap[i], bp[i] ) : + siblingCheck( ap[ i ], bp[ i ] ) : // Otherwise nodes in our document sort first - ap[i] === preferredDoc ? -1 : - bp[i] === preferredDoc ? 1 : + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + /* eslint-disable eqeqeq */ + ap[ i ] == preferredDoc ? -1 : + bp[ i ] == preferredDoc ? 1 : + /* eslint-enable eqeqeq */ 0; }; @@ -1495,10 +1603,7 @@ Sizzle.matches = function( expr, elements ) { }; Sizzle.matchesSelector = function( elem, expr ) { - // Set document vars if needed - if ( ( elem.ownerDocument || elem ) !== document ) { - setDocument( elem ); - } + setDocument( elem ); if ( support.matchesSelector && documentIsHTML && !nonnativeSelectorCache[ expr + " " ] && @@ -1510,12 +1615,13 @@ Sizzle.matchesSelector = function( elem, expr ) { // IE 9's matchesSelector returns false on disconnected nodes if ( ret || support.disconnectedMatch || - // As well, disconnected nodes are said to be in a document - // fragment in IE 9 - elem.document && elem.document.nodeType !== 11 ) { + + // As well, disconnected nodes are said to be in a document + // fragment in IE 9 + elem.document && elem.document.nodeType !== 11 ) { return ret; } - } catch (e) { + } catch ( e ) { nonnativeSelectorCache( expr, true ); } } @@ -1524,20 +1630,31 @@ Sizzle.matchesSelector = function( elem, expr ) { }; Sizzle.contains = function( context, elem ) { + // Set document vars if needed - if ( ( context.ownerDocument || context ) !== document ) { + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( ( context.ownerDocument || context ) != document ) { setDocument( context ); } return contains( context, elem ); }; Sizzle.attr = function( elem, name ) { + // Set document vars if needed - if ( ( elem.ownerDocument || elem ) !== document ) { + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( ( elem.ownerDocument || elem ) != document ) { setDocument( elem ); } var fn = Expr.attrHandle[ name.toLowerCase() ], + // Don't get fooled by Object.prototype properties (jQuery #13807) val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? fn( elem, name, !documentIsHTML ) : @@ -1547,13 +1664,13 @@ Sizzle.attr = function( elem, name ) { val : support.attributes || !documentIsHTML ? elem.getAttribute( name ) : - (val = elem.getAttributeNode(name)) && val.specified ? + ( val = elem.getAttributeNode( name ) ) && val.specified ? val.value : null; }; Sizzle.escape = function( sel ) { - return (sel + "").replace( rcssescape, fcssescape ); + return ( sel + "" ).replace( rcssescape, fcssescape ); }; Sizzle.error = function( msg ) { @@ -1576,7 +1693,7 @@ Sizzle.uniqueSort = function( results ) { results.sort( sortOrder ); if ( hasDuplicate ) { - while ( (elem = results[i++]) ) { + while ( ( elem = results[ i++ ] ) ) { if ( elem === results[ i ] ) { j = duplicates.push( i ); } @@ -1604,17 +1721,21 @@ getText = Sizzle.getText = function( elem ) { nodeType = elem.nodeType; if ( !nodeType ) { + // If no nodeType, this is expected to be an array - while ( (node = elem[i++]) ) { + while ( ( node = elem[ i++ ] ) ) { + // Do not traverse comment nodes ret += getText( node ); } } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { + // Use textContent for elements // innerText usage removed for consistency of new lines (jQuery #11153) if ( typeof elem.textContent === "string" ) { return elem.textContent; } else { + // Traverse its children for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { ret += getText( elem ); @@ -1623,6 +1744,7 @@ getText = Sizzle.getText = function( elem ) { } else if ( nodeType === 3 || nodeType === 4 ) { return elem.nodeValue; } + // Do not include comment or processing instruction nodes return ret; @@ -1650,19 +1772,21 @@ Expr = Sizzle.selectors = { preFilter: { "ATTR": function( match ) { - match[1] = match[1].replace( runescape, funescape ); + match[ 1 ] = match[ 1 ].replace( runescape, funescape ); // Move the given value to match[3] whether quoted or unquoted - match[3] = ( match[3] || match[4] || match[5] || "" ).replace( runescape, funescape ); + match[ 3 ] = ( match[ 3 ] || match[ 4 ] || + match[ 5 ] || "" ).replace( runescape, funescape ); - if ( match[2] === "~=" ) { - match[3] = " " + match[3] + " "; + if ( match[ 2 ] === "~=" ) { + match[ 3 ] = " " + match[ 3 ] + " "; } return match.slice( 0, 4 ); }, "CHILD": function( match ) { + /* matches from matchExpr["CHILD"] 1 type (only|nth|...) 2 what (child|of-type) @@ -1673,22 +1797,25 @@ Expr = Sizzle.selectors = { 7 sign of y-component 8 y of y-component */ - match[1] = match[1].toLowerCase(); + match[ 1 ] = match[ 1 ].toLowerCase(); + + if ( match[ 1 ].slice( 0, 3 ) === "nth" ) { - if ( match[1].slice( 0, 3 ) === "nth" ) { // nth-* requires argument - if ( !match[3] ) { - Sizzle.error( match[0] ); + if ( !match[ 3 ] ) { + Sizzle.error( match[ 0 ] ); } // numeric x and y parameters for Expr.filter.CHILD // remember that false/true cast respectively to 0/1 - match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) ); - match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" ); + match[ 4 ] = +( match[ 4 ] ? + match[ 5 ] + ( match[ 6 ] || 1 ) : + 2 * ( match[ 3 ] === "even" || match[ 3 ] === "odd" ) ); + match[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === "odd" ); - // other types prohibit arguments - } else if ( match[3] ) { - Sizzle.error( match[0] ); + // other types prohibit arguments + } else if ( match[ 3 ] ) { + Sizzle.error( match[ 0 ] ); } return match; @@ -1696,26 +1823,28 @@ Expr = Sizzle.selectors = { "PSEUDO": function( match ) { var excess, - unquoted = !match[6] && match[2]; + unquoted = !match[ 6 ] && match[ 2 ]; - if ( matchExpr["CHILD"].test( match[0] ) ) { + if ( matchExpr[ "CHILD" ].test( match[ 0 ] ) ) { return null; } // Accept quoted arguments as-is - if ( match[3] ) { - match[2] = match[4] || match[5] || ""; + if ( match[ 3 ] ) { + match[ 2 ] = match[ 4 ] || match[ 5 ] || ""; // Strip excess characters from unquoted arguments } else if ( unquoted && rpseudo.test( unquoted ) && + // Get excess from tokenize (recursively) - (excess = tokenize( unquoted, true )) && + ( excess = tokenize( unquoted, true ) ) && + // advance to the next closing parenthesis - (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) { + ( excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length ) ) { // excess is a negative index - match[0] = match[0].slice( 0, excess ); - match[2] = unquoted.slice( 0, excess ); + match[ 0 ] = match[ 0 ].slice( 0, excess ); + match[ 2 ] = unquoted.slice( 0, excess ); } // Return only captures needed by the pseudo filter method (type and argument) @@ -1728,7 +1857,9 @@ Expr = Sizzle.selectors = { "TAG": function( nodeNameSelector ) { var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); return nodeNameSelector === "*" ? - function() { return true; } : + function() { + return true; + } : function( elem ) { return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; }; @@ -1738,10 +1869,16 @@ Expr = Sizzle.selectors = { var pattern = classCache[ className + " " ]; return pattern || - (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) && - classCache( className, function( elem ) { - return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== "undefined" && elem.getAttribute("class") || "" ); - }); + ( pattern = new RegExp( "(^|" + whitespace + + ")" + className + "(" + whitespace + "|$)" ) ) && classCache( + className, function( elem ) { + return pattern.test( + typeof elem.className === "string" && elem.className || + typeof elem.getAttribute !== "undefined" && + elem.getAttribute( "class" ) || + "" + ); + } ); }, "ATTR": function( name, operator, check ) { @@ -1757,6 +1894,8 @@ Expr = Sizzle.selectors = { result += ""; + /* eslint-disable max-len */ + return operator === "=" ? result === check : operator === "!=" ? result !== check : operator === "^=" ? check && result.indexOf( check ) === 0 : @@ -1765,10 +1904,12 @@ Expr = Sizzle.selectors = { operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : false; + /* eslint-enable max-len */ + }; }, - "CHILD": function( type, what, argument, first, last ) { + "CHILD": function( type, what, _argument, first, last ) { var simple = type.slice( 0, 3 ) !== "nth", forward = type.slice( -4 ) !== "last", ofType = what === "of-type"; @@ -1780,7 +1921,7 @@ Expr = Sizzle.selectors = { return !!elem.parentNode; } : - function( elem, context, xml ) { + function( elem, _context, xml ) { var cache, uniqueCache, outerCache, node, nodeIndex, start, dir = simple !== forward ? "nextSibling" : "previousSibling", parent = elem.parentNode, @@ -1794,7 +1935,7 @@ Expr = Sizzle.selectors = { if ( simple ) { while ( dir ) { node = elem; - while ( (node = node[ dir ]) ) { + while ( ( node = node[ dir ] ) ) { if ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) { @@ -1802,6 +1943,7 @@ Expr = Sizzle.selectors = { return false; } } + // Reverse direction for :only-* (if we haven't yet done so) start = dir = type === "only" && !start && "nextSibling"; } @@ -1817,22 +1959,22 @@ Expr = Sizzle.selectors = { // ...in a gzip-friendly way node = parent; - outerCache = node[ expando ] || (node[ expando ] = {}); + outerCache = node[ expando ] || ( node[ expando ] = {} ); // Support: IE <9 only // Defend against cloned attroperties (jQuery gh-1709) uniqueCache = outerCache[ node.uniqueID ] || - (outerCache[ node.uniqueID ] = {}); + ( outerCache[ node.uniqueID ] = {} ); cache = uniqueCache[ type ] || []; nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; diff = nodeIndex && cache[ 2 ]; node = nodeIndex && parent.childNodes[ nodeIndex ]; - while ( (node = ++nodeIndex && node && node[ dir ] || + while ( ( node = ++nodeIndex && node && node[ dir ] || // Fallback to seeking `elem` from the start - (diff = nodeIndex = 0) || start.pop()) ) { + ( diff = nodeIndex = 0 ) || start.pop() ) ) { // When found, cache indexes on `parent` and break if ( node.nodeType === 1 && ++diff && node === elem ) { @@ -1842,16 +1984,18 @@ Expr = Sizzle.selectors = { } } else { + // Use previously-cached element index if available if ( useCache ) { + // ...in a gzip-friendly way node = elem; - outerCache = node[ expando ] || (node[ expando ] = {}); + outerCache = node[ expando ] || ( node[ expando ] = {} ); // Support: IE <9 only // Defend against cloned attroperties (jQuery gh-1709) uniqueCache = outerCache[ node.uniqueID ] || - (outerCache[ node.uniqueID ] = {}); + ( outerCache[ node.uniqueID ] = {} ); cache = uniqueCache[ type ] || []; nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; @@ -1861,9 +2005,10 @@ Expr = Sizzle.selectors = { // xml :nth-child(...) // or :nth-last-child(...) or :nth(-last)?-of-type(...) if ( diff === false ) { + // Use the same loop as above to seek `elem` from the start - while ( (node = ++nodeIndex && node && node[ dir ] || - (diff = nodeIndex = 0) || start.pop()) ) { + while ( ( node = ++nodeIndex && node && node[ dir ] || + ( diff = nodeIndex = 0 ) || start.pop() ) ) { if ( ( ofType ? node.nodeName.toLowerCase() === name : @@ -1872,12 +2017,13 @@ Expr = Sizzle.selectors = { // Cache the index of each encountered element if ( useCache ) { - outerCache = node[ expando ] || (node[ expando ] = {}); + outerCache = node[ expando ] || + ( node[ expando ] = {} ); // Support: IE <9 only // Defend against cloned attroperties (jQuery gh-1709) uniqueCache = outerCache[ node.uniqueID ] || - (outerCache[ node.uniqueID ] = {}); + ( outerCache[ node.uniqueID ] = {} ); uniqueCache[ type ] = [ dirruns, diff ]; } @@ -1898,6 +2044,7 @@ Expr = Sizzle.selectors = { }, "PSEUDO": function( pseudo, argument ) { + // pseudo-class names are case-insensitive // http://www.w3.org/TR/selectors/#pseudo-classes // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters @@ -1917,15 +2064,15 @@ Expr = Sizzle.selectors = { if ( fn.length > 1 ) { args = [ pseudo, pseudo, "", argument ]; return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? - markFunction(function( seed, matches ) { + markFunction( function( seed, matches ) { var idx, matched = fn( seed, argument ), i = matched.length; while ( i-- ) { - idx = indexOf( seed, matched[i] ); - seed[ idx ] = !( matches[ idx ] = matched[i] ); + idx = indexOf( seed, matched[ i ] ); + seed[ idx ] = !( matches[ idx ] = matched[ i ] ); } - }) : + } ) : function( elem ) { return fn( elem, 0, args ); }; @@ -1936,8 +2083,10 @@ Expr = Sizzle.selectors = { }, pseudos: { + // Potentially complex pseudos - "not": markFunction(function( selector ) { + "not": markFunction( function( selector ) { + // Trim the selector passed to compile // to avoid treating leading and trailing // spaces as combinators @@ -1946,39 +2095,40 @@ Expr = Sizzle.selectors = { matcher = compile( selector.replace( rtrim, "$1" ) ); return matcher[ expando ] ? - markFunction(function( seed, matches, context, xml ) { + markFunction( function( seed, matches, _context, xml ) { var elem, unmatched = matcher( seed, null, xml, [] ), i = seed.length; // Match elements unmatched by `matcher` while ( i-- ) { - if ( (elem = unmatched[i]) ) { - seed[i] = !(matches[i] = elem); + if ( ( elem = unmatched[ i ] ) ) { + seed[ i ] = !( matches[ i ] = elem ); } } - }) : - function( elem, context, xml ) { - input[0] = elem; + } ) : + function( elem, _context, xml ) { + input[ 0 ] = elem; matcher( input, null, xml, results ); + // Don't keep the element (issue #299) - input[0] = null; + input[ 0 ] = null; return !results.pop(); }; - }), + } ), - "has": markFunction(function( selector ) { + "has": markFunction( function( selector ) { return function( elem ) { return Sizzle( selector, elem ).length > 0; }; - }), + } ), - "contains": markFunction(function( text ) { + "contains": markFunction( function( text ) { text = text.replace( runescape, funescape ); return function( elem ) { return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1; }; - }), + } ), // "Whether an element is represented by a :lang() selector // is based solely on the element's language value @@ -1988,25 +2138,26 @@ Expr = Sizzle.selectors = { // The identifier C does not have to be a valid language name." // http://www.w3.org/TR/selectors/#lang-pseudo "lang": markFunction( function( lang ) { + // lang value must be a valid identifier - if ( !ridentifier.test(lang || "") ) { + if ( !ridentifier.test( lang || "" ) ) { Sizzle.error( "unsupported lang: " + lang ); } lang = lang.replace( runescape, funescape ).toLowerCase(); return function( elem ) { var elemLang; do { - if ( (elemLang = documentIsHTML ? + if ( ( elemLang = documentIsHTML ? elem.lang : - elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) { + elem.getAttribute( "xml:lang" ) || elem.getAttribute( "lang" ) ) ) { elemLang = elemLang.toLowerCase(); return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; } - } while ( (elem = elem.parentNode) && elem.nodeType === 1 ); + } while ( ( elem = elem.parentNode ) && elem.nodeType === 1 ); return false; }; - }), + } ), // Miscellaneous "target": function( elem ) { @@ -2019,7 +2170,9 @@ Expr = Sizzle.selectors = { }, "focus": function( elem ) { - return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex); + return elem === document.activeElement && + ( !document.hasFocus || document.hasFocus() ) && + !!( elem.type || elem.href || ~elem.tabIndex ); }, // Boolean properties @@ -2027,16 +2180,20 @@ Expr = Sizzle.selectors = { "disabled": createDisabledPseudo( true ), "checked": function( elem ) { + // In CSS3, :checked should return both checked and selected elements // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked var nodeName = elem.nodeName.toLowerCase(); - return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected); + return ( nodeName === "input" && !!elem.checked ) || + ( nodeName === "option" && !!elem.selected ); }, "selected": function( elem ) { + // Accessing this property makes selected-by-default // options in Safari work properly if ( elem.parentNode ) { + // eslint-disable-next-line no-unused-expressions elem.parentNode.selectedIndex; } @@ -2045,6 +2202,7 @@ Expr = Sizzle.selectors = { // Contents "empty": function( elem ) { + // http://www.w3.org/TR/selectors/#empty-pseudo // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), // but not by others (comment: 8; processing instruction: 7; etc.) @@ -2058,7 +2216,7 @@ Expr = Sizzle.selectors = { }, "parent": function( elem ) { - return !Expr.pseudos["empty"]( elem ); + return !Expr.pseudos[ "empty" ]( elem ); }, // Element/input types @@ -2082,39 +2240,40 @@ Expr = Sizzle.selectors = { // Support: IE<8 // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" - ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" ); + ( ( attr = elem.getAttribute( "type" ) ) == null || + attr.toLowerCase() === "text" ); }, // Position-in-collection - "first": createPositionalPseudo(function() { + "first": createPositionalPseudo( function() { return [ 0 ]; - }), + } ), - "last": createPositionalPseudo(function( matchIndexes, length ) { + "last": createPositionalPseudo( function( _matchIndexes, length ) { return [ length - 1 ]; - }), + } ), - "eq": createPositionalPseudo(function( matchIndexes, length, argument ) { + "eq": createPositionalPseudo( function( _matchIndexes, length, argument ) { return [ argument < 0 ? argument + length : argument ]; - }), + } ), - "even": createPositionalPseudo(function( matchIndexes, length ) { + "even": createPositionalPseudo( function( matchIndexes, length ) { var i = 0; for ( ; i < length; i += 2 ) { matchIndexes.push( i ); } return matchIndexes; - }), + } ), - "odd": createPositionalPseudo(function( matchIndexes, length ) { + "odd": createPositionalPseudo( function( matchIndexes, length ) { var i = 1; for ( ; i < length; i += 2 ) { matchIndexes.push( i ); } return matchIndexes; - }), + } ), - "lt": createPositionalPseudo(function( matchIndexes, length, argument ) { + "lt": createPositionalPseudo( function( matchIndexes, length, argument ) { var i = argument < 0 ? argument + length : argument > length ? @@ -2124,19 +2283,19 @@ Expr = Sizzle.selectors = { matchIndexes.push( i ); } return matchIndexes; - }), + } ), - "gt": createPositionalPseudo(function( matchIndexes, length, argument ) { + "gt": createPositionalPseudo( function( matchIndexes, length, argument ) { var i = argument < 0 ? argument + length : argument; for ( ; ++i < length; ) { matchIndexes.push( i ); } return matchIndexes; - }) + } ) } }; -Expr.pseudos["nth"] = Expr.pseudos["eq"]; +Expr.pseudos[ "nth" ] = Expr.pseudos[ "eq" ]; // Add button/input type pseudos for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { @@ -2167,37 +2326,39 @@ tokenize = Sizzle.tokenize = function( selector, parseOnly ) { while ( soFar ) { // Comma and first run - if ( !matched || (match = rcomma.exec( soFar )) ) { + if ( !matched || ( match = rcomma.exec( soFar ) ) ) { if ( match ) { + // Don't consume trailing commas as valid - soFar = soFar.slice( match[0].length ) || soFar; + soFar = soFar.slice( match[ 0 ].length ) || soFar; } - groups.push( (tokens = []) ); + groups.push( ( tokens = [] ) ); } matched = false; // Combinators - if ( (match = rcombinators.exec( soFar )) ) { + if ( ( match = rcombinators.exec( soFar ) ) ) { matched = match.shift(); - tokens.push({ + tokens.push( { value: matched, + // Cast descendant combinators to space - type: match[0].replace( rtrim, " " ) - }); + type: match[ 0 ].replace( rtrim, " " ) + } ); soFar = soFar.slice( matched.length ); } // Filters for ( type in Expr.filter ) { - if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] || - (match = preFilters[ type ]( match ))) ) { + if ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] || + ( match = preFilters[ type ]( match ) ) ) ) { matched = match.shift(); - tokens.push({ + tokens.push( { value: matched, type: type, matches: match - }); + } ); soFar = soFar.slice( matched.length ); } } @@ -2214,6 +2375,7 @@ tokenize = Sizzle.tokenize = function( selector, parseOnly ) { soFar.length : soFar ? Sizzle.error( selector ) : + // Cache the tokens tokenCache( selector, groups ).slice( 0 ); }; @@ -2223,7 +2385,7 @@ function toSelector( tokens ) { len = tokens.length, selector = ""; for ( ; i < len; i++ ) { - selector += tokens[i].value; + selector += tokens[ i ].value; } return selector; } @@ -2236,9 +2398,10 @@ function addCombinator( matcher, combinator, base ) { doneName = done++; return combinator.first ? + // Check against closest ancestor/preceding element function( elem, context, xml ) { - while ( (elem = elem[ dir ]) ) { + while ( ( elem = elem[ dir ] ) ) { if ( elem.nodeType === 1 || checkNonElements ) { return matcher( elem, context, xml ); } @@ -2253,7 +2416,7 @@ function addCombinator( matcher, combinator, base ) { // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching if ( xml ) { - while ( (elem = elem[ dir ]) ) { + while ( ( elem = elem[ dir ] ) ) { if ( elem.nodeType === 1 || checkNonElements ) { if ( matcher( elem, context, xml ) ) { return true; @@ -2261,27 +2424,29 @@ function addCombinator( matcher, combinator, base ) { } } } else { - while ( (elem = elem[ dir ]) ) { + while ( ( elem = elem[ dir ] ) ) { if ( elem.nodeType === 1 || checkNonElements ) { - outerCache = elem[ expando ] || (elem[ expando ] = {}); + outerCache = elem[ expando ] || ( elem[ expando ] = {} ); // Support: IE <9 only // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ elem.uniqueID ] || (outerCache[ elem.uniqueID ] = {}); + uniqueCache = outerCache[ elem.uniqueID ] || + ( outerCache[ elem.uniqueID ] = {} ); if ( skip && skip === elem.nodeName.toLowerCase() ) { elem = elem[ dir ] || elem; - } else if ( (oldCache = uniqueCache[ key ]) && + } else if ( ( oldCache = uniqueCache[ key ] ) && oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { // Assign to newCache so results back-propagate to previous elements - return (newCache[ 2 ] = oldCache[ 2 ]); + return ( newCache[ 2 ] = oldCache[ 2 ] ); } else { + // Reuse newcache so results back-propagate to previous elements uniqueCache[ key ] = newCache; // A match means we're done; a fail means we have to keep checking - if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) { + if ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) { return true; } } @@ -2297,20 +2462,20 @@ function elementMatcher( matchers ) { function( elem, context, xml ) { var i = matchers.length; while ( i-- ) { - if ( !matchers[i]( elem, context, xml ) ) { + if ( !matchers[ i ]( elem, context, xml ) ) { return false; } } return true; } : - matchers[0]; + matchers[ 0 ]; } function multipleContexts( selector, contexts, results ) { var i = 0, len = contexts.length; for ( ; i < len; i++ ) { - Sizzle( selector, contexts[i], results ); + Sizzle( selector, contexts[ i ], results ); } return results; } @@ -2323,7 +2488,7 @@ function condense( unmatched, map, filter, context, xml ) { mapped = map != null; for ( ; i < len; i++ ) { - if ( (elem = unmatched[i]) ) { + if ( ( elem = unmatched[ i ] ) ) { if ( !filter || filter( elem, context, xml ) ) { newUnmatched.push( elem ); if ( mapped ) { @@ -2343,14 +2508,18 @@ function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postS if ( postFinder && !postFinder[ expando ] ) { postFinder = setMatcher( postFinder, postSelector ); } - return markFunction(function( seed, results, context, xml ) { + return markFunction( function( seed, results, context, xml ) { var temp, i, elem, preMap = [], postMap = [], preexisting = results.length, // Get initial elements from seed or context - elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ), + elems = seed || multipleContexts( + selector || "*", + context.nodeType ? [ context ] : context, + [] + ), // Prefilter to get matcher input, preserving a map for seed-results synchronization matcherIn = preFilter && ( seed || !selector ) ? @@ -2358,6 +2527,7 @@ function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postS elems, matcherOut = matcher ? + // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, postFinder || ( seed ? preFilter : preexisting || postFilter ) ? @@ -2381,8 +2551,8 @@ function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postS // Un-match failing elements by moving them back to matcherIn i = temp.length; while ( i-- ) { - if ( (elem = temp[i]) ) { - matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem); + if ( ( elem = temp[ i ] ) ) { + matcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem ); } } } @@ -2390,25 +2560,27 @@ function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postS if ( seed ) { if ( postFinder || preFilter ) { if ( postFinder ) { + // Get the final matcherOut by condensing this intermediate into postFinder contexts temp = []; i = matcherOut.length; while ( i-- ) { - if ( (elem = matcherOut[i]) ) { + if ( ( elem = matcherOut[ i ] ) ) { + // Restore matcherIn since elem is not yet a final match - temp.push( (matcherIn[i] = elem) ); + temp.push( ( matcherIn[ i ] = elem ) ); } } - postFinder( null, (matcherOut = []), temp, xml ); + postFinder( null, ( matcherOut = [] ), temp, xml ); } // Move matched elements from seed to results to keep them synchronized i = matcherOut.length; while ( i-- ) { - if ( (elem = matcherOut[i]) && - (temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) { + if ( ( elem = matcherOut[ i ] ) && + ( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) { - seed[temp] = !(results[temp] = elem); + seed[ temp ] = !( results[ temp ] = elem ); } } } @@ -2426,14 +2598,14 @@ function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postS push.apply( results, matcherOut ); } } - }); + } ); } function matcherFromTokens( tokens ) { var checkContext, matcher, j, len = tokens.length, - leadingRelative = Expr.relative[ tokens[0].type ], - implicitRelative = leadingRelative || Expr.relative[" "], + leadingRelative = Expr.relative[ tokens[ 0 ].type ], + implicitRelative = leadingRelative || Expr.relative[ " " ], i = leadingRelative ? 1 : 0, // The foundational matcher ensures that elements are reachable from top-level context(s) @@ -2445,38 +2617,43 @@ function matcherFromTokens( tokens ) { }, implicitRelative, true ), matchers = [ function( elem, context, xml ) { var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( - (checkContext = context).nodeType ? + ( checkContext = context ).nodeType ? matchContext( elem, context, xml ) : matchAnyContext( elem, context, xml ) ); + // Avoid hanging onto element (issue #299) checkContext = null; return ret; } ]; for ( ; i < len; i++ ) { - if ( (matcher = Expr.relative[ tokens[i].type ]) ) { - matchers = [ addCombinator(elementMatcher( matchers ), matcher) ]; + if ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) { + matchers = [ addCombinator( elementMatcher( matchers ), matcher ) ]; } else { - matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches ); + matcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches ); // Return special upon seeing a positional matcher if ( matcher[ expando ] ) { + // Find the next relative operator (if any) for proper handling j = ++i; for ( ; j < len; j++ ) { - if ( Expr.relative[ tokens[j].type ] ) { + if ( Expr.relative[ tokens[ j ].type ] ) { break; } } return setMatcher( i > 1 && elementMatcher( matchers ), i > 1 && toSelector( - // If the preceding token was a descendant combinator, insert an implicit any-element `*` - tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" }) + + // If the preceding token was a descendant combinator, insert an implicit any-element `*` + tokens + .slice( 0, i - 1 ) + .concat( { value: tokens[ i - 2 ].type === " " ? "*" : "" } ) ).replace( rtrim, "$1" ), matcher, i < j && matcherFromTokens( tokens.slice( i, j ) ), - j < len && matcherFromTokens( (tokens = tokens.slice( j )) ), + j < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ), j < len && toSelector( tokens ) ); } @@ -2497,28 +2674,40 @@ function matcherFromGroupMatchers( elementMatchers, setMatchers ) { unmatched = seed && [], setMatched = [], contextBackup = outermostContext, + // We must always have either seed elements or outermost context - elems = seed || byElement && Expr.find["TAG"]( "*", outermost ), + elems = seed || byElement && Expr.find[ "TAG" ]( "*", outermost ), + // Use integer dirruns iff this is the outermost matcher - dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1), + dirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ), len = elems.length; if ( outermost ) { - outermostContext = context === document || context || outermost; + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + outermostContext = context == document || context || outermost; } // Add elements passing elementMatchers directly to results // Support: IE<9, Safari // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id - for ( ; i !== len && (elem = elems[i]) != null; i++ ) { + for ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) { if ( byElement && elem ) { j = 0; - if ( !context && elem.ownerDocument !== document ) { + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( !context && elem.ownerDocument != document ) { setDocument( elem ); xml = !documentIsHTML; } - while ( (matcher = elementMatchers[j++]) ) { - if ( matcher( elem, context || document, xml) ) { + while ( ( matcher = elementMatchers[ j++ ] ) ) { + if ( matcher( elem, context || document, xml ) ) { results.push( elem ); break; } @@ -2530,8 +2719,9 @@ function matcherFromGroupMatchers( elementMatchers, setMatchers ) { // Track unmatched elements for set filters if ( bySet ) { + // They will have gone through all possible matchers - if ( (elem = !matcher && elem) ) { + if ( ( elem = !matcher && elem ) ) { matchedCount--; } @@ -2555,16 +2745,17 @@ function matcherFromGroupMatchers( elementMatchers, setMatchers ) { // numerically zero. if ( bySet && i !== matchedCount ) { j = 0; - while ( (matcher = setMatchers[j++]) ) { + while ( ( matcher = setMatchers[ j++ ] ) ) { matcher( unmatched, setMatched, context, xml ); } if ( seed ) { + // Reintegrate element matches to eliminate the need for sorting if ( matchedCount > 0 ) { while ( i-- ) { - if ( !(unmatched[i] || setMatched[i]) ) { - setMatched[i] = pop.call( results ); + if ( !( unmatched[ i ] || setMatched[ i ] ) ) { + setMatched[ i ] = pop.call( results ); } } } @@ -2605,13 +2796,14 @@ compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { cached = compilerCache[ selector + " " ]; if ( !cached ) { + // Generate a function of recursive functions that can be used to check each element if ( !match ) { match = tokenize( selector ); } i = match.length; while ( i-- ) { - cached = matcherFromTokens( match[i] ); + cached = matcherFromTokens( match[ i ] ); if ( cached[ expando ] ) { setMatchers.push( cached ); } else { @@ -2620,7 +2812,10 @@ compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { } // Cache the compiled function - cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) ); + cached = compilerCache( + selector, + matcherFromGroupMatchers( elementMatchers, setMatchers ) + ); // Save selector and tokenization cached.selector = selector; @@ -2640,7 +2835,7 @@ compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { select = Sizzle.select = function( selector, context, results, seed ) { var i, tokens, token, type, find, compiled = typeof selector === "function" && selector, - match = !seed && tokenize( (selector = compiled.selector || selector) ); + match = !seed && tokenize( ( selector = compiled.selector || selector ) ); results = results || []; @@ -2649,11 +2844,12 @@ select = Sizzle.select = function( selector, context, results, seed ) { if ( match.length === 1 ) { // Reduce context if the leading compound selector is an ID - tokens = match[0] = match[0].slice( 0 ); - if ( tokens.length > 2 && (token = tokens[0]).type === "ID" && - context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[1].type ] ) { + tokens = match[ 0 ] = match[ 0 ].slice( 0 ); + if ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === "ID" && + context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) { - context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0]; + context = ( Expr.find[ "ID" ]( token.matches[ 0 ] + .replace( runescape, funescape ), context ) || [] )[ 0 ]; if ( !context ) { return results; @@ -2666,20 +2862,22 @@ select = Sizzle.select = function( selector, context, results, seed ) { } // Fetch a seed set for right-to-left matching - i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length; + i = matchExpr[ "needsContext" ].test( selector ) ? 0 : tokens.length; while ( i-- ) { - token = tokens[i]; + token = tokens[ i ]; // Abort if we hit a combinator - if ( Expr.relative[ (type = token.type) ] ) { + if ( Expr.relative[ ( type = token.type ) ] ) { break; } - if ( (find = Expr.find[ type ]) ) { + if ( ( find = Expr.find[ type ] ) ) { + // Search, expanding context for leading sibling combinators - if ( (seed = find( - token.matches[0].replace( runescape, funescape ), - rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context - )) ) { + if ( ( seed = find( + token.matches[ 0 ].replace( runescape, funescape ), + rsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) || + context + ) ) ) { // If seed is empty or no tokens remain, we can return early tokens.splice( i, 1 ); @@ -2710,7 +2908,7 @@ select = Sizzle.select = function( selector, context, results, seed ) { // One-time assignments // Sort stability -support.sortStable = expando.split("").sort( sortOrder ).join("") === expando; +support.sortStable = expando.split( "" ).sort( sortOrder ).join( "" ) === expando; // Support: Chrome 14-35+ // Always assume duplicates if they aren't passed to the comparison function @@ -2721,58 +2919,59 @@ setDocument(); // Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) // Detached nodes confoundingly follow *each other* -support.sortDetached = assert(function( el ) { +support.sortDetached = assert( function( el ) { + // Should return 1, but returns 4 (following) - return el.compareDocumentPosition( document.createElement("fieldset") ) & 1; -}); + return el.compareDocumentPosition( document.createElement( "fieldset" ) ) & 1; +} ); // Support: IE<8 // Prevent attribute/property "interpolation" // https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx -if ( !assert(function( el ) { +if ( !assert( function( el ) { el.innerHTML = ""; - return el.firstChild.getAttribute("href") === "#" ; -}) ) { + return el.firstChild.getAttribute( "href" ) === "#"; +} ) ) { addHandle( "type|href|height|width", function( elem, name, isXML ) { if ( !isXML ) { return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); } - }); + } ); } // Support: IE<9 // Use defaultValue in place of getAttribute("value") -if ( !support.attributes || !assert(function( el ) { +if ( !support.attributes || !assert( function( el ) { el.innerHTML = ""; el.firstChild.setAttribute( "value", "" ); return el.firstChild.getAttribute( "value" ) === ""; -}) ) { - addHandle( "value", function( elem, name, isXML ) { +} ) ) { + addHandle( "value", function( elem, _name, isXML ) { if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { return elem.defaultValue; } - }); + } ); } // Support: IE<9 // Use getAttributeNode to fetch booleans when getAttribute lies -if ( !assert(function( el ) { - return el.getAttribute("disabled") == null; -}) ) { +if ( !assert( function( el ) { + return el.getAttribute( "disabled" ) == null; +} ) ) { addHandle( booleans, function( elem, name, isXML ) { var val; if ( !isXML ) { return elem[ name ] === true ? name.toLowerCase() : - (val = elem.getAttributeNode( name )) && val.specified ? + ( val = elem.getAttributeNode( name ) ) && val.specified ? val.value : - null; + null; } - }); + } ); } return Sizzle; -})( window ); +} )( window ); @@ -3141,7 +3340,7 @@ jQuery.each( { parents: function( elem ) { return dir( elem, "parentNode" ); }, - parentsUntil: function( elem, i, until ) { + parentsUntil: function( elem, _i, until ) { return dir( elem, "parentNode", until ); }, next: function( elem ) { @@ -3156,10 +3355,10 @@ jQuery.each( { prevAll: function( elem ) { return dir( elem, "previousSibling" ); }, - nextUntil: function( elem, i, until ) { + nextUntil: function( elem, _i, until ) { return dir( elem, "nextSibling", until ); }, - prevUntil: function( elem, i, until ) { + prevUntil: function( elem, _i, until ) { return dir( elem, "previousSibling", until ); }, siblings: function( elem ) { @@ -3169,7 +3368,13 @@ jQuery.each( { return siblings( elem.firstChild ); }, contents: function( elem ) { - if ( typeof elem.contentDocument !== "undefined" ) { + if ( elem.contentDocument != null && + + // Support: IE 11+ + // elements with no `data` attribute has an object + // `contentDocument` with a `null` prototype. + getProto( elem.contentDocument ) ) { + return elem.contentDocument; } @@ -3512,7 +3717,7 @@ jQuery.extend( { var fns = arguments; return jQuery.Deferred( function( newDefer ) { - jQuery.each( tuples, function( i, tuple ) { + jQuery.each( tuples, function( _i, tuple ) { // Map tuples (progress, done, fail) to arguments (done, fail, progress) var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ]; @@ -3965,7 +4170,7 @@ var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { // ...except when executing function values } else { bulk = fn; - fn = function( elem, key, value ) { + fn = function( elem, _key, value ) { return bulk.call( jQuery( elem ), value ); }; } @@ -4000,7 +4205,7 @@ var rmsPrefix = /^-ms-/, rdashAlpha = /-([a-z])/g; // Used by camelCase as callback to replace() -function fcamelCase( all, letter ) { +function fcamelCase( _all, letter ) { return letter.toUpperCase(); } @@ -4528,27 +4733,6 @@ var isHiddenWithinTree = function( elem, el ) { jQuery.css( elem, "display" ) === "none"; }; -var swap = function( elem, options, callback, args ) { - var ret, name, - old = {}; - - // Remember the old values, and insert the new ones - for ( name in options ) { - old[ name ] = elem.style[ name ]; - elem.style[ name ] = options[ name ]; - } - - ret = callback.apply( elem, args || [] ); - - // Revert the old values - for ( name in options ) { - elem.style[ name ] = old[ name ]; - } - - return ret; -}; - - function adjustCSS( elem, prop, valueParts, tween ) { @@ -4719,11 +4903,40 @@ var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i ); -// We have to close these tags to support XHTML (#13200) -var wrapMap = { +( function() { + var fragment = document.createDocumentFragment(), + div = fragment.appendChild( document.createElement( "div" ) ), + input = document.createElement( "input" ); + + // Support: Android 4.0 - 4.3 only + // Check state lost if the name is set (#11217) + // Support: Windows Web Apps (WWA) + // `name` and `type` must use .setAttribute for WWA (#14901) + input.setAttribute( "type", "radio" ); + input.setAttribute( "checked", "checked" ); + input.setAttribute( "name", "t" ); + + div.appendChild( input ); + + // Support: Android <=4.1 only + // Older WebKit doesn't clone checked state correctly in fragments + support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; + + // Support: IE <=11 only + // Make sure textarea (and checkbox) defaultValue is properly cloned + div.innerHTML = ""; + support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; // Support: IE <=9 only - option: [ 1, "" ], + // IE <=9 replaces "; + support.option = !!div.lastChild; +} )(); + + +// We have to close these tags to support XHTML (#13200) +var wrapMap = { // XHTML parsers do not magically insert elements in the // same way that tag soup parsers do. So we cannot shorten @@ -4736,12 +4949,14 @@ var wrapMap = { _default: [ 0, "", "" ] }; -// Support: IE <=9 only -wrapMap.optgroup = wrapMap.option; - wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; wrapMap.th = wrapMap.td; +// Support: IE <=9 only +if ( !support.option ) { + wrapMap.optgroup = wrapMap.option = [ 1, "" ]; +} + function getAll( context, tag ) { @@ -4874,32 +5089,6 @@ function buildFragment( elems, context, scripts, selection, ignored ) { } -( function() { - var fragment = document.createDocumentFragment(), - div = fragment.appendChild( document.createElement( "div" ) ), - input = document.createElement( "input" ); - - // Support: Android 4.0 - 4.3 only - // Check state lost if the name is set (#11217) - // Support: Windows Web Apps (WWA) - // `name` and `type` must use .setAttribute for WWA (#14901) - input.setAttribute( "type", "radio" ); - input.setAttribute( "checked", "checked" ); - input.setAttribute( "name", "t" ); - - div.appendChild( input ); - - // Support: Android <=4.1 only - // Older WebKit doesn't clone checked state correctly in fragments - support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; - - // Support: IE <=11 only - // Make sure textarea (and checkbox) defaultValue is properly cloned - div.innerHTML = ""; - support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; -} )(); - - var rkeyEvent = /^key/, rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, @@ -5008,8 +5197,8 @@ jQuery.event = { special, handlers, type, namespaces, origType, elemData = dataPriv.get( elem ); - // Don't attach events to noData or text/comment nodes (but allow plain objects) - if ( !elemData ) { + // Only attach events to objects that accept data + if ( !acceptData( elem ) ) { return; } @@ -5033,7 +5222,7 @@ jQuery.event = { // Init the element's event structure and main handler, if this is the first if ( !( events = elemData.events ) ) { - events = elemData.events = {}; + events = elemData.events = Object.create( null ); } if ( !( eventHandle = elemData.handle ) ) { eventHandle = elemData.handle = function( e ) { @@ -5191,12 +5380,15 @@ jQuery.event = { dispatch: function( nativeEvent ) { - // Make a writable jQuery.Event from the native event object - var event = jQuery.event.fix( nativeEvent ); - var i, j, ret, matched, handleObj, handlerQueue, args = new Array( arguments.length ), - handlers = ( dataPriv.get( this, "events" ) || {} )[ event.type ] || [], + + // Make a writable jQuery.Event from the native event object + event = jQuery.event.fix( nativeEvent ), + + handlers = ( + dataPriv.get( this, "events" ) || Object.create( null ) + )[ event.type ] || [], special = jQuery.event.special[ event.type ] || {}; // Use the fix-ed jQuery.Event rather than the (read-only) native event @@ -5771,13 +5963,6 @@ jQuery.fn.extend( { var - /* eslint-disable max-len */ - - // See https://github.com/eslint/eslint/issues/3229 - rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi, - - /* eslint-enable */ - // Support: IE <=10 - 11, Edge 12 - 13 only // In IE/Edge using regex groups here causes severe slowdowns. // See https://connect.microsoft.com/IE/feedback/details/1736512/ @@ -5814,7 +5999,7 @@ function restoreScript( elem ) { } function cloneCopyEvent( src, dest ) { - var i, l, type, pdataOld, pdataCur, udataOld, udataCur, events; + var i, l, type, pdataOld, udataOld, udataCur, events; if ( dest.nodeType !== 1 ) { return; @@ -5822,13 +6007,11 @@ function cloneCopyEvent( src, dest ) { // 1. Copy private data: events, handlers, etc. if ( dataPriv.hasData( src ) ) { - pdataOld = dataPriv.access( src ); - pdataCur = dataPriv.set( dest, pdataOld ); + pdataOld = dataPriv.get( src ); events = pdataOld.events; if ( events ) { - delete pdataCur.handle; - pdataCur.events = {}; + dataPriv.remove( dest, "handle events" ); for ( type in events ) { for ( i = 0, l = events[ type ].length; i < l; i++ ) { @@ -5864,7 +6047,7 @@ function fixInput( src, dest ) { function domManip( collection, args, callback, ignored ) { // Flatten any nested arrays - args = concat.apply( [], args ); + args = flat( args ); var fragment, first, scripts, hasScripts, node, doc, i = 0, @@ -5939,7 +6122,7 @@ function domManip( collection, args, callback, ignored ) { if ( jQuery._evalUrl && !node.noModule ) { jQuery._evalUrl( node.src, { nonce: node.nonce || node.getAttribute( "nonce" ) - } ); + }, doc ); } } else { DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc ); @@ -5976,7 +6159,7 @@ function remove( elem, selector, keepData ) { jQuery.extend( { htmlPrefilter: function( html ) { - return html.replace( rxhtmlTag, "<$1>" ); + return html; }, clone: function( elem, dataAndEvents, deepDataAndEvents ) { @@ -6238,6 +6421,27 @@ var getStyles = function( elem ) { return view.getComputedStyle( elem ); }; +var swap = function( elem, options, callback ) { + var ret, name, + old = {}; + + // Remember the old values, and insert the new ones + for ( name in options ) { + old[ name ] = elem.style[ name ]; + elem.style[ name ] = options[ name ]; + } + + ret = callback.call( elem ); + + // Revert the old values + for ( name in options ) { + elem.style[ name ] = old[ name ]; + } + + return ret; +}; + + var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); @@ -6295,7 +6499,7 @@ var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); } var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal, - reliableMarginLeftVal, + reliableTrDimensionsVal, reliableMarginLeftVal, container = document.createElement( "div" ), div = document.createElement( "div" ); @@ -6330,6 +6534,35 @@ var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); scrollboxSize: function() { computeStyleTests(); return scrollboxSizeVal; + }, + + // Support: IE 9 - 11+, Edge 15 - 18+ + // IE/Edge misreport `getComputedStyle` of table rows with width/height + // set in CSS while `offset*` properties report correct values. + // Behavior in IE 9 is more subtle than in newer versions & it passes + // some versions of this test; make sure not to make it pass there! + reliableTrDimensions: function() { + var table, tr, trChild, trStyle; + if ( reliableTrDimensionsVal == null ) { + table = document.createElement( "table" ); + tr = document.createElement( "tr" ); + trChild = document.createElement( "div" ); + + table.style.cssText = "position:absolute;left:-11111px"; + tr.style.height = "1px"; + trChild.style.height = "9px"; + + documentElement + .appendChild( table ) + .appendChild( tr ) + .appendChild( trChild ); + + trStyle = window.getComputedStyle( tr ); + reliableTrDimensionsVal = parseInt( trStyle.height ) > 3; + + documentElement.removeChild( table ); + } + return reliableTrDimensionsVal; } } ); } )(); @@ -6454,7 +6687,7 @@ var fontWeight: "400" }; -function setPositiveNumber( elem, value, subtract ) { +function setPositiveNumber( _elem, value, subtract ) { // Any relative (+/-) values have already been // normalized at this point @@ -6559,17 +6792,26 @@ function getWidthOrHeight( elem, dimension, extra ) { } - // Fall back to offsetWidth/offsetHeight when value is "auto" - // This happens for inline elements with no explicit setting (gh-3571) - // Support: Android <=4.1 - 4.3 only - // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602) - // Support: IE 9-11 only - // Also use offsetWidth/offsetHeight for when box sizing is unreliable - // We use getClientRects() to check for hidden/disconnected. - // In those cases, the computed value can be trusted to be border-box + // Support: IE 9 - 11 only + // Use offsetWidth/offsetHeight for when box sizing is unreliable. + // In those cases, the computed value can be trusted to be border-box. if ( ( !support.boxSizingReliable() && isBorderBox || + + // Support: IE 10 - 11+, Edge 15 - 18+ + // IE/Edge misreport `getComputedStyle` of table rows with width/height + // set in CSS while `offset*` properties report correct values. + // Interestingly, in some cases IE 9 doesn't suffer from this issue. + !support.reliableTrDimensions() && nodeName( elem, "tr" ) || + + // Fall back to offsetWidth/offsetHeight when value is "auto" + // This happens for inline elements with no explicit setting (gh-3571) val === "auto" || + + // Support: Android <=4.1 - 4.3 only + // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602) !parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) && + + // Make sure the element is visible & connected elem.getClientRects().length ) { isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; @@ -6764,7 +7006,7 @@ jQuery.extend( { } } ); -jQuery.each( [ "height", "width" ], function( i, dimension ) { +jQuery.each( [ "height", "width" ], function( _i, dimension ) { jQuery.cssHooks[ dimension ] = { get: function( elem, computed, extra ) { if ( computed ) { @@ -7537,7 +7779,7 @@ jQuery.fn.extend( { clearQueue = type; type = undefined; } - if ( clearQueue && type !== false ) { + if ( clearQueue ) { this.queue( type || "fx", [] ); } @@ -7620,7 +7862,7 @@ jQuery.fn.extend( { } } ); -jQuery.each( [ "toggle", "show", "hide" ], function( i, name ) { +jQuery.each( [ "toggle", "show", "hide" ], function( _i, name ) { var cssFn = jQuery.fn[ name ]; jQuery.fn[ name ] = function( speed, easing, callback ) { return speed == null || typeof speed === "boolean" ? @@ -7841,7 +8083,7 @@ boolHook = { } }; -jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) { +jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( _i, name ) { var getter = attrHandle[ name ] || jQuery.find.attr; attrHandle[ name ] = function( elem, name, isXML ) { @@ -8465,7 +8707,9 @@ jQuery.extend( jQuery.event, { special.bindType || type; // jQuery handler - handle = ( dataPriv.get( cur, "events" ) || {} )[ event.type ] && + handle = ( + dataPriv.get( cur, "events" ) || Object.create( null ) + )[ event.type ] && dataPriv.get( cur, "handle" ); if ( handle ) { handle.apply( cur, data ); @@ -8576,7 +8820,10 @@ if ( !support.focusin ) { jQuery.event.special[ fix ] = { setup: function() { - var doc = this.ownerDocument || this, + + // Handle: regular nodes (via `this.ownerDocument`), window + // (via `this.document`) & document (via `this`). + var doc = this.ownerDocument || this.document || this, attaches = dataPriv.access( doc, fix ); if ( !attaches ) { @@ -8585,7 +8832,7 @@ if ( !support.focusin ) { dataPriv.access( doc, fix, ( attaches || 0 ) + 1 ); }, teardown: function() { - var doc = this.ownerDocument || this, + var doc = this.ownerDocument || this.document || this, attaches = dataPriv.access( doc, fix ) - 1; if ( !attaches ) { @@ -8601,7 +8848,7 @@ if ( !support.focusin ) { } var location = window.location; -var nonce = Date.now(); +var nonce = { guid: Date.now() }; var rquery = ( /\?/ ); @@ -8733,7 +8980,7 @@ jQuery.fn.extend( { rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && ( this.checked || !rcheckableType.test( type ) ); } ) - .map( function( i, elem ) { + .map( function( _i, elem ) { var val = jQuery( this ).val(); if ( val == null ) { @@ -9346,7 +9593,8 @@ jQuery.extend( { // Add or update anti-cache param if needed if ( s.cache === false ) { cacheURL = cacheURL.replace( rantiCache, "$1" ); - uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce++ ) + uncached; + uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce.guid++ ) + + uncached; } // Put hash and anti-cache on the URL that will be requested (gh-1732) @@ -9479,6 +9727,11 @@ jQuery.extend( { response = ajaxHandleResponses( s, jqXHR, responses ); } + // Use a noop converter for missing script + if ( !isSuccess && jQuery.inArray( "script", s.dataTypes ) > -1 ) { + s.converters[ "text script" ] = function() {}; + } + // Convert no matter what (that way responseXXX fields are always set) response = ajaxConvert( s, response, jqXHR, isSuccess ); @@ -9569,7 +9822,7 @@ jQuery.extend( { } } ); -jQuery.each( [ "get", "post" ], function( i, method ) { +jQuery.each( [ "get", "post" ], function( _i, method ) { jQuery[ method ] = function( url, data, callback, type ) { // Shift arguments if data argument was omitted @@ -9590,8 +9843,17 @@ jQuery.each( [ "get", "post" ], function( i, method ) { }; } ); +jQuery.ajaxPrefilter( function( s ) { + var i; + for ( i in s.headers ) { + if ( i.toLowerCase() === "content-type" ) { + s.contentType = s.headers[ i ] || ""; + } + } +} ); + -jQuery._evalUrl = function( url, options ) { +jQuery._evalUrl = function( url, options, doc ) { return jQuery.ajax( { url: url, @@ -9609,7 +9871,7 @@ jQuery._evalUrl = function( url, options ) { "text script": function() {} }, dataFilter: function( response ) { - jQuery.globalEval( response, options ); + jQuery.globalEval( response, options, doc ); } } ); }; @@ -9931,7 +10193,7 @@ var oldCallbacks = [], jQuery.ajaxSetup( { jsonp: "callback", jsonpCallback: function() { - var callback = oldCallbacks.pop() || ( jQuery.expando + "_" + ( nonce++ ) ); + var callback = oldCallbacks.pop() || ( jQuery.expando + "_" + ( nonce.guid++ ) ); this[ callback ] = true; return callback; } @@ -10148,23 +10410,6 @@ jQuery.fn.load = function( url, params, callback ) { -// Attach a bunch of functions for handling common AJAX events -jQuery.each( [ - "ajaxStart", - "ajaxStop", - "ajaxComplete", - "ajaxError", - "ajaxSuccess", - "ajaxSend" -], function( i, type ) { - jQuery.fn[ type ] = function( fn ) { - return this.on( type, fn ); - }; -} ); - - - - jQuery.expr.pseudos.animated = function( elem ) { return jQuery.grep( jQuery.timers, function( fn ) { return elem === fn.elem; @@ -10221,6 +10466,12 @@ jQuery.offset = { options.using.call( elem, props ); } else { + if ( typeof props.top === "number" ) { + props.top += "px"; + } + if ( typeof props.left === "number" ) { + props.left += "px"; + } curElem.css( props ); } } @@ -10371,7 +10622,7 @@ jQuery.each( { scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function( // Blink bug: https://bugs.chromium.org/p/chromium/issues/detail?id=589347 // getComputedStyle returns percent when specified for top/left/bottom/right; // rather than make the css module depend on the offset module, just check for it here -jQuery.each( [ "top", "left" ], function( i, prop ) { +jQuery.each( [ "top", "left" ], function( _i, prop ) { jQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition, function( elem, computed ) { if ( computed ) { @@ -10434,25 +10685,19 @@ jQuery.each( { Height: "height", Width: "width" }, function( name, type ) { } ); -jQuery.each( ( "blur focus focusin focusout resize scroll click dblclick " + - "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " + - "change select submit keydown keypress keyup contextmenu" ).split( " " ), - function( i, name ) { - - // Handle event binding - jQuery.fn[ name ] = function( data, fn ) { - return arguments.length > 0 ? - this.on( name, null, data, fn ) : - this.trigger( name ); +jQuery.each( [ + "ajaxStart", + "ajaxStop", + "ajaxComplete", + "ajaxError", + "ajaxSuccess", + "ajaxSend" +], function( _i, type ) { + jQuery.fn[ type ] = function( fn ) { + return this.on( type, fn ); }; } ); -jQuery.fn.extend( { - hover: function( fnOver, fnOut ) { - return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver ); - } -} ); - @@ -10474,9 +10719,33 @@ jQuery.fn.extend( { return arguments.length === 1 ? this.off( selector, "**" ) : this.off( types, selector || "**", fn ); + }, + + hover: function( fnOver, fnOut ) { + return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver ); } } ); +jQuery.each( ( "blur focus focusin focusout resize scroll click dblclick " + + "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " + + "change select submit keydown keypress keyup contextmenu" ).split( " " ), + function( _i, name ) { + + // Handle event binding + jQuery.fn[ name ] = function( data, fn ) { + return arguments.length > 0 ? + this.on( name, null, data, fn ) : + this.trigger( name ); + }; + } ); + + + + +// Support: Android <=4.0 only +// Make sure we trim BOM and NBSP +var rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g; + // Bind a function to a context, optionally partially applying any // arguments. // jQuery.proxy is deprecated to promote standards (specifically Function#bind) @@ -10539,6 +10808,11 @@ jQuery.isNumeric = function( obj ) { !isNaN( obj - parseFloat( obj ) ); }; +jQuery.trim = function( text ) { + return text == null ? + "" : + ( text + "" ).replace( rtrim, "" ); +}; @@ -10587,7 +10861,7 @@ jQuery.noConflict = function( deep ) { // Expose jQuery and $ identifiers, even in AMD // (#7102#comment:10, https://github.com/jquery/jquery/pull/557) // and CommonJS for browser emulators (#13566) -if ( !noGlobal ) { +if ( typeof noGlobal === "undefined" ) { window.jQuery = window.$ = jQuery; } @@ -10595,4 +10869,4 @@ if ( !noGlobal ) { return jQuery; -} ); \ No newline at end of file +} ); diff --git a/docs/jquery/jquery-3.6.1.min.js b/docs/jquery/jquery-3.6.1.min.js new file mode 100644 index 0000000..2c69bc9 --- /dev/null +++ b/docs/jquery/jquery-3.6.1.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.6.1 | (c) OpenJS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,y=n.hasOwnProperty,a=y.toString,l=a.call(Object),v={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.1",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&v(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!y||!y.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ve(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ye(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ve(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],y=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&y.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||y.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||y.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||y.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||y.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||y.push(".#.+[+~]"),e.querySelectorAll("\\\f"),y.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&y.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&y.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&y.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),y.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),y=y.length&&new RegExp(y.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),v=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&v(p,e)?-1:t==C||t.ownerDocument==p&&v(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!y||!y.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),v.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",v.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",v.option=!!ce.lastChild;var ge={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ye(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ve(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Ut,Xt=[],Vt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||S.expando+"_"+Ct.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Vt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Vt,"$1"+r):!1!==e.jsonp&&(e.url+=(Et.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),v.createHTMLDocument=((Ut=E.implementation.createHTMLDocument("").body).innerHTML="
",2===Ut.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(v.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return B(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=_e(v.pixelPosition,function(e,t){if(t)return t=Be(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return B(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0",options:{classes:{},disabled:!1,create:null},_createWidget:function(t,e){e=x(e||this.defaultElement||this)[0],this.element=x(e),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=x(),this.hoverable=x(),this.focusable=x(),this.classesElementLookup={},e!==this&&(x.data(e,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===e&&this.destroy()}}),this.document=x(e.style?e.ownerDocument:e.document||e),this.window=x(this.document[0].defaultView||this.document[0].parentWindow)),this.options=x.widget.extend({},this.options,this._getCreateOptions(),t),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:x.noop,_create:x.noop,_init:x.noop,destroy:function(){var i=this;this._destroy(),x.each(this.classesElementLookup,function(t,e){i._removeClass(e,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:x.noop,widget:function(){return this.element},option:function(t,e){var i,s,n,o=t;if(0===arguments.length)return x.widget.extend({},this.options);if("string"==typeof t)if(o={},t=(i=t.split(".")).shift(),i.length){for(s=o[t]=x.widget.extend({},this.options[t]),n=0;n
"),i=e.children()[0];return x("body").append(e),t=i.offsetWidth,e.css("overflow","scroll"),t===(i=i.offsetWidth)&&(i=e[0].clientWidth),e.remove(),s=t-i},getScrollInfo:function(t){var e=t.isWindow||t.isDocument?"":t.element.css("overflow-x"),i=t.isWindow||t.isDocument?"":t.element.css("overflow-y"),e="scroll"===e||"auto"===e&&t.widthC(E(s),E(n))?o.important="horizontal":o.important="vertical",c.using.call(this,t,o)}),l.offset(x.extend(u,{using:t}))})},x.ui.position={fit:{left:function(t,e){var i=e.within,s=i.isWindow?i.scrollLeft:i.offset.left,n=i.width,o=t.left-e.collisionPosition.marginLeft,l=s-o,a=o+e.collisionWidth-n-s;e.collisionWidth>n?0n?0",delay:300,options:{icons:{submenu:"ui-icon-caret-1-e"},items:"> *",menus:"ul",position:{my:"left top",at:"right top"},role:"menu",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.mouseHandled=!1,this.lastMousePosition={x:null,y:null},this.element.uniqueId().attr({role:this.options.role,tabIndex:0}),this._addClass("ui-menu","ui-widget ui-widget-content"),this._on({"mousedown .ui-menu-item":function(t){t.preventDefault(),this._activateItem(t)},"click .ui-menu-item":function(t){var e=x(t.target),i=x(x.ui.safeActiveElement(this.document[0]));!this.mouseHandled&&e.not(".ui-state-disabled").length&&(this.select(t),t.isPropagationStopped()||(this.mouseHandled=!0),e.has(".ui-menu").length?this.expand(t):!this.element.is(":focus")&&i.closest(".ui-menu").length&&(this.element.trigger("focus",[!0]),this.active&&1===this.active.parents(".ui-menu").length&&clearTimeout(this.timer)))},"mouseenter .ui-menu-item":"_activateItem","mousemove .ui-menu-item":"_activateItem",mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(t,e){var i=this.active||this._menuItems().first();e||this.focus(t,i)},blur:function(t){this._delay(function(){x.contains(this.element[0],x.ui.safeActiveElement(this.document[0]))||this.collapseAll(t)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(t){this._closeOnDocumentClick(t)&&this.collapseAll(t,!0),this.mouseHandled=!1}})},_activateItem:function(t){var e,i;this.previousFilter||t.clientX===this.lastMousePosition.x&&t.clientY===this.lastMousePosition.y||(this.lastMousePosition={x:t.clientX,y:t.clientY},e=x(t.target).closest(".ui-menu-item"),i=x(t.currentTarget),e[0]===i[0]&&(i.is(".ui-state-active")||(this._removeClass(i.siblings().children(".ui-state-active"),null,"ui-state-active"),this.focus(t,i))))},_destroy:function(){var t=this.element.find(".ui-menu-item").removeAttr("role aria-disabled").children(".ui-menu-item-wrapper").removeUniqueId().removeAttr("tabIndex role aria-haspopup");this.element.removeAttr("aria-activedescendant").find(".ui-menu").addBack().removeAttr("role aria-labelledby aria-expanded aria-hidden aria-disabled tabIndex").removeUniqueId().show(),t.children().each(function(){var t=x(this);t.data("ui-menu-submenu-caret")&&t.remove()})},_keydown:function(t){var e,i,s,n=!0;switch(t.keyCode){case x.ui.keyCode.PAGE_UP:this.previousPage(t);break;case x.ui.keyCode.PAGE_DOWN:this.nextPage(t);break;case x.ui.keyCode.HOME:this._move("first","first",t);break;case x.ui.keyCode.END:this._move("last","last",t);break;case x.ui.keyCode.UP:this.previous(t);break;case x.ui.keyCode.DOWN:this.next(t);break;case x.ui.keyCode.LEFT:this.collapse(t);break;case x.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(t);break;case x.ui.keyCode.ENTER:case x.ui.keyCode.SPACE:this._activate(t);break;case x.ui.keyCode.ESCAPE:this.collapse(t);break;default:e=this.previousFilter||"",s=n=!1,i=96<=t.keyCode&&t.keyCode<=105?(t.keyCode-96).toString():String.fromCharCode(t.keyCode),clearTimeout(this.filterTimer),i===e?s=!0:i=e+i,e=this._filterMenuItems(i),(e=s&&-1!==e.index(this.active.next())?this.active.nextAll(".ui-menu-item"):e).length||(i=String.fromCharCode(t.keyCode),e=this._filterMenuItems(i)),e.length?(this.focus(t,e),this.previousFilter=i,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter}n&&t.preventDefault()},_activate:function(t){this.active&&!this.active.is(".ui-state-disabled")&&(this.active.children("[aria-haspopup='true']").length?this.expand(t):this.select(t))},refresh:function(){var t,e,s=this,n=this.options.icons.submenu,i=this.element.find(this.options.menus);this._toggleClass("ui-menu-icons",null,!!this.element.find(".ui-icon").length),e=i.filter(":not(.ui-menu)").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"}).each(function(){var t=x(this),e=t.prev(),i=x("").data("ui-menu-submenu-caret",!0);s._addClass(i,"ui-menu-icon","ui-icon "+n),e.attr("aria-haspopup","true").prepend(i),t.attr("aria-labelledby",e.attr("id"))}),this._addClass(e,"ui-menu","ui-widget ui-widget-content ui-front"),(t=i.add(this.element).find(this.options.items)).not(".ui-menu-item").each(function(){var t=x(this);s._isDivider(t)&&s._addClass(t,"ui-menu-divider","ui-widget-content")}),i=(e=t.not(".ui-menu-item, .ui-menu-divider")).children().not(".ui-menu").uniqueId().attr({tabIndex:-1,role:this._itemRole()}),this._addClass(e,"ui-menu-item")._addClass(i,"ui-menu-item-wrapper"),t.filter(".ui-state-disabled").attr("aria-disabled","true"),this.active&&!x.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},_setOption:function(t,e){var i;"icons"===t&&(i=this.element.find(".ui-menu-icon"),this._removeClass(i,null,this.options.icons.submenu)._addClass(i,null,e.submenu)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",String(t)),this._toggleClass(null,"ui-state-disabled",!!t)},focus:function(t,e){var i;this.blur(t,t&&"focus"===t.type),this._scrollIntoView(e),this.active=e.first(),i=this.active.children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),this.options.role&&this.element.attr("aria-activedescendant",i.attr("id")),i=this.active.parent().closest(".ui-menu-item").children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),t&&"keydown"===t.type?this._close():this.timer=this._delay(function(){this._close()},this.delay),(i=e.children(".ui-menu")).length&&t&&/^mouse/.test(t.type)&&this._startOpening(i),this.activeMenu=e.parent(),this._trigger("focus",t,{item:e})},_scrollIntoView:function(t){var e,i,s;this._hasScroll()&&(i=parseFloat(x.css(this.activeMenu[0],"borderTopWidth"))||0,s=parseFloat(x.css(this.activeMenu[0],"paddingTop"))||0,e=t.offset().top-this.activeMenu.offset().top-i-s,i=this.activeMenu.scrollTop(),s=this.activeMenu.height(),t=t.outerHeight(),e<0?this.activeMenu.scrollTop(i+e):s",options:{appendTo:null,autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null,change:null,close:null,focus:null,open:null,response:null,search:null,select:null},requestIndex:0,pending:0,liveRegionTimer:null,_create:function(){var i,s,n,t=this.element[0].nodeName.toLowerCase(),e="textarea"===t,t="input"===t;this.isMultiLine=e||!t&&this._isContentEditable(this.element),this.valueMethod=this.element[e||t?"val":"text"],this.isNewMenu=!0,this._addClass("ui-autocomplete-input"),this.element.attr("autocomplete","off"),this._on(this.element,{keydown:function(t){if(this.element.prop("readOnly"))s=n=i=!0;else{s=n=i=!1;var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:i=!0,this._move("previousPage",t);break;case e.PAGE_DOWN:i=!0,this._move("nextPage",t);break;case e.UP:i=!0,this._keyEvent("previous",t);break;case e.DOWN:i=!0,this._keyEvent("next",t);break;case e.ENTER:this.menu.active&&(i=!0,t.preventDefault(),this.menu.select(t));break;case e.TAB:this.menu.active&&this.menu.select(t);break;case e.ESCAPE:this.menu.element.is(":visible")&&(this.isMultiLine||this._value(this.term),this.close(t),t.preventDefault());break;default:s=!0,this._searchTimeout(t)}}},keypress:function(t){if(i)return i=!1,void(this.isMultiLine&&!this.menu.element.is(":visible")||t.preventDefault());if(!s){var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:this._move("previousPage",t);break;case e.PAGE_DOWN:this._move("nextPage",t);break;case e.UP:this._keyEvent("previous",t);break;case e.DOWN:this._keyEvent("next",t)}}},input:function(t){if(n)return n=!1,void t.preventDefault();this._searchTimeout(t)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(t){clearTimeout(this.searching),this.close(t),this._change(t)}}),this._initSource(),this.menu=x("
    ").appendTo(this._appendTo()).menu({role:null}).hide().attr({unselectable:"on"}).menu("instance"),this._addClass(this.menu.element,"ui-autocomplete","ui-front"),this._on(this.menu.element,{mousedown:function(t){t.preventDefault()},menufocus:function(t,e){var i,s;if(this.isNewMenu&&(this.isNewMenu=!1,t.originalEvent&&/^mouse/.test(t.originalEvent.type)))return this.menu.blur(),void this.document.one("mousemove",function(){x(t.target).trigger(t.originalEvent)});s=e.item.data("ui-autocomplete-item"),!1!==this._trigger("focus",t,{item:s})&&t.originalEvent&&/^key/.test(t.originalEvent.type)&&this._value(s.value),(i=e.item.attr("aria-label")||s.value)&&String.prototype.trim.call(i).length&&(clearTimeout(this.liveRegionTimer),this.liveRegionTimer=this._delay(function(){this.liveRegion.html(x("
    ").text(i))},100))},menuselect:function(t,e){var i=e.item.data("ui-autocomplete-item"),s=this.previous;this.element[0]!==x.ui.safeActiveElement(this.document[0])&&(this.element.trigger("focus"),this.previous=s,this._delay(function(){this.previous=s,this.selectedItem=i})),!1!==this._trigger("select",t,{item:i})&&this._value(i.value),this.term=this._value(),this.close(t),this.selectedItem=i}}),this.liveRegion=x("
    ",{role:"status","aria-live":"assertive","aria-relevant":"additions"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,"ui-helper-hidden-accessible"),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_destroy:function(){clearTimeout(this.searching),this.element.removeAttr("autocomplete"),this.menu.element.remove(),this.liveRegion.remove()},_setOption:function(t,e){this._super(t,e),"source"===t&&this._initSource(),"appendTo"===t&&this.menu.element.appendTo(this._appendTo()),"disabled"===t&&e&&this.xhr&&this.xhr.abort()},_isEventTargetInWidget:function(t){var e=this.menu.element[0];return t.target===this.element[0]||t.target===e||x.contains(e,t.target)},_closeOnClickOutside:function(t){this._isEventTargetInWidget(t)||this.close()},_appendTo:function(){var t=this.options.appendTo;return t=!(t=!(t=t&&(t.jquery||t.nodeType?x(t):this.document.find(t).eq(0)))||!t[0]?this.element.closest(".ui-front, dialog"):t).length?this.document[0].body:t},_initSource:function(){var i,s,n=this;Array.isArray(this.options.source)?(i=this.options.source,this.source=function(t,e){e(x.ui.autocomplete.filter(i,t.term))}):"string"==typeof this.options.source?(s=this.options.source,this.source=function(t,e){n.xhr&&n.xhr.abort(),n.xhr=x.ajax({url:s,data:t,dataType:"json",success:function(t){e(t)},error:function(){e([])}})}):this.source=this.options.source},_searchTimeout:function(s){clearTimeout(this.searching),this.searching=this._delay(function(){var t=this.term===this._value(),e=this.menu.element.is(":visible"),i=s.altKey||s.ctrlKey||s.metaKey||s.shiftKey;t&&(e||i)||(this.selectedItem=null,this.search(null,s))},this.options.delay)},search:function(t,e){return t=null!=t?t:this._value(),this.term=this._value(),t.length").append(x("
    ").text(e.label)).appendTo(t)},_move:function(t,e){if(this.menu.element.is(":visible"))return this.menu.isFirstItem()&&/^previous/.test(t)||this.menu.isLastItem()&&/^next/.test(t)?(this.isMultiLine||this._value(this.term),void this.menu.blur()):void this.menu[t](e);this.search(null,e)},widget:function(){return this.menu.element},_value:function(){return this.valueMethod.apply(this.element,arguments)},_keyEvent:function(t,e){this.isMultiLine&&!this.menu.element.is(":visible")||(this._move(t,e),e.preventDefault())},_isContentEditable:function(t){if(!t.length)return!1;var e=t.prop("contentEditable");return"inherit"===e?this._isContentEditable(t.parent()):"true"===e}}),x.extend(x.ui.autocomplete,{escapeRegex:function(t){return t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")},filter:function(t,e){var i=new RegExp(x.ui.autocomplete.escapeRegex(e),"i");return x.grep(t,function(t){return i.test(t.label||t.value||t)})}}),x.widget("ui.autocomplete",x.ui.autocomplete,{options:{messages:{noResults:"No search results.",results:function(t){return t+(1").text(e))},100))}});x.ui.autocomplete}); \ No newline at end of file diff --git a/docs/script-dir/jszip-utils/dist/jszip-utils-ie.js b/docs/jquery/jszip-utils/dist/jszip-utils-ie.js similarity index 100% rename from docs/script-dir/jszip-utils/dist/jszip-utils-ie.js rename to docs/jquery/jszip-utils/dist/jszip-utils-ie.js diff --git a/docs/script-dir/jszip-utils/dist/jszip-utils-ie.min.js b/docs/jquery/jszip-utils/dist/jszip-utils-ie.min.js similarity index 100% rename from docs/script-dir/jszip-utils/dist/jszip-utils-ie.min.js rename to docs/jquery/jszip-utils/dist/jszip-utils-ie.min.js diff --git a/docs/script-dir/jszip-utils/dist/jszip-utils.js b/docs/jquery/jszip-utils/dist/jszip-utils.js similarity index 100% rename from docs/script-dir/jszip-utils/dist/jszip-utils.js rename to docs/jquery/jszip-utils/dist/jszip-utils.js diff --git a/docs/script-dir/jszip-utils/dist/jszip-utils.min.js b/docs/jquery/jszip-utils/dist/jszip-utils.min.js similarity index 100% rename from docs/script-dir/jszip-utils/dist/jszip-utils.min.js rename to docs/jquery/jszip-utils/dist/jszip-utils.min.js diff --git a/docs/script-dir/jszip/dist/jszip.js b/docs/jquery/jszip/dist/jszip.js similarity index 95% rename from docs/script-dir/jszip/dist/jszip.js rename to docs/jquery/jszip/dist/jszip.js index f44b705..9f0ffc1 100644 --- a/docs/script-dir/jszip/dist/jszip.js +++ b/docs/jquery/jszip/dist/jszip.js @@ -1,6 +1,6 @@ /*! -JSZip v3.1.5 - A JavaScript class for generating and reading zip files +JSZip v3.7.1 - A JavaScript class for generating and reading zip files (c) 2009-2016 Stuart Knightley @@ -123,7 +123,6 @@ exports.decode = function(input) { var external = require("./external"); var DataWorker = require('./stream/DataWorker'); -var DataLengthProbe = require('./stream/DataLengthProbe'); var Crc32Probe = require('./stream/Crc32Probe'); var DataLengthProbe = require('./stream/DataLengthProbe'); @@ -149,14 +148,14 @@ CompressedObject.prototype = { * Create a worker to get the uncompressed content. * @return {GenericWorker} the worker. */ - getContentWorker : function () { + getContentWorker: function () { var worker = new DataWorker(external.Promise.resolve(this.compressedContent)) - .pipe(this.compression.uncompressWorker()) - .pipe(new DataLengthProbe("data_length")); + .pipe(this.compression.uncompressWorker()) + .pipe(new DataLengthProbe("data_length")); var that = this; worker.on("end", function () { - if(this.streamInfo['data_length'] !== that.uncompressedSize) { + if (this.streamInfo['data_length'] !== that.uncompressedSize) { throw new Error("Bug : uncompressed data size mismatch"); } }); @@ -166,19 +165,19 @@ CompressedObject.prototype = { * Create a worker to get the compressed content. * @return {GenericWorker} the worker. */ - getCompressedWorker : function () { + getCompressedWorker: function () { return new DataWorker(external.Promise.resolve(this.compressedContent)) - .withStreamInfo("compressedSize", this.compressedSize) - .withStreamInfo("uncompressedSize", this.uncompressedSize) - .withStreamInfo("crc32", this.crc32) - .withStreamInfo("compression", this.compression) - ; + .withStreamInfo("compressedSize", this.compressedSize) + .withStreamInfo("uncompressedSize", this.uncompressedSize) + .withStreamInfo("crc32", this.crc32) + .withStreamInfo("compression", this.compression) + ; } }; /** * Chain the given worker with other workers to compress the content with the - * given compresion. + * given compression. * @param {GenericWorker} uncompressedWorker the worker to pipe. * @param {Object} compression the compression object. * @param {Object} compressionOptions the options to use when compressing. @@ -186,11 +185,11 @@ CompressedObject.prototype = { */ CompressedObject.createWorkerFrom = function (uncompressedWorker, compression, compressionOptions) { return uncompressedWorker - .pipe(new Crc32Probe()) - .pipe(new DataLengthProbe("uncompressedSize")) - .pipe(compression.compressWorker(compressionOptions)) - .pipe(new DataLengthProbe("compressedSize")) - .withStreamInfo("compression", compression); + .pipe(new Crc32Probe()) + .pipe(new DataLengthProbe("uncompressedSize")) + .pipe(compression.compressWorker(compressionOptions)) + .pipe(new DataLengthProbe("compressedSize")) + .withStreamInfo("compression", compression); }; module.exports = CompressedObject; @@ -324,7 +323,7 @@ module.exports = { Promise: ES6Promise }; -},{"lie":58}],7:[function(require,module,exports){ +},{"lie":37}],7:[function(require,module,exports){ 'use strict'; var USE_TYPEDARRAY = (typeof Uint8Array !== 'undefined') && (typeof Uint16Array !== 'undefined') && (typeof Uint32Array !== 'undefined'); @@ -411,7 +410,7 @@ exports.uncompressWorker = function () { return new FlateWorker("Inflate", {}); }; -},{"./stream/GenericWorker":28,"./utils":32,"pako":59}],8:[function(require,module,exports){ +},{"./stream/GenericWorker":28,"./utils":32,"pako":38}],8:[function(require,module,exports){ 'use strict'; var utils = require('../utils'); @@ -484,7 +483,7 @@ var generateDosExternalFileAttr = function (dosPermissions, isDir) { /** * Generate the various parts used in the construction of the final zip file. - * @param {Object} streamInfo the hash with informations about the compressed file. + * @param {Object} streamInfo the hash with information about the compressed file. * @param {Boolean} streamedContent is the content streamed ? * @param {Boolean} streamingEnded is the stream finished ? * @param {number} offset the current offset from the start of the zip file. @@ -707,7 +706,7 @@ var generateCentralDirectoryEnd = function (entriesCount, centralDirLength, loca /** * Generate data descriptors for a file entry. - * @param {Object} streamInfo the hash generated by a worker, containing informations + * @param {Object} streamInfo the hash generated by a worker, containing information * on the file entry. * @return {String} the data descriptors. */ @@ -759,7 +758,7 @@ function ZipFileWorker(streamFiles, comment, platform, encodeFileName) { // The total number of entries in this zip file. this.entriesCount = 0; // the name of the file currently being added, null when handling the end of the zip file. - // Used for the emited metadata. + // Used for the emitted metadata. this.currentFile = null; @@ -1034,7 +1033,10 @@ function JSZip() { // "folder/" : {...}, // "folder/data.txt" : {...} // } - this.files = {}; + // NOTE: we use a null prototype because we do not + // want filenames like "toString" coming from a zip file + // to overwrite methods and attributes in a normal Object. + this.files = Object.create(null); this.comment = null; @@ -1057,7 +1059,7 @@ JSZip.defaults = require('./defaults'); // TODO find a better way to handle this version, // a require('package.json').version doesn't work with webpack, see #327 -JSZip.version = "3.1.5"; +JSZip.version = "3.7.1"; JSZip.loadAsync = function (content, options) { return new JSZip().loadAsync(content, options); @@ -1071,7 +1073,6 @@ module.exports = JSZip; var utils = require('./utils'); var external = require("./external"); var utf8 = require('./utf8'); -var utils = require('./utils'); var ZipEntries = require('./zipEntries'); var Crc32Probe = require('./stream/Crc32Probe'); var nodejsUtils = require("./nodejsUtils"); @@ -1087,18 +1088,18 @@ function checkEntryCRC32(zipEntry) { worker.on("error", function (e) { reject(e); }) - .on("end", function () { - if (worker.streamInfo.crc32 !== zipEntry.decompressed.crc32) { - reject(new Error("Corrupted zip : CRC32 mismatch")); - } else { - resolve(); - } - }) - .resume(); + .on("end", function () { + if (worker.streamInfo.crc32 !== zipEntry.decompressed.crc32) { + reject(new Error("Corrupted zip : CRC32 mismatch")); + } else { + resolve(); + } + }) + .resume(); }); } -module.exports = function(data, options) { +module.exports = function (data, options) { var zip = this; options = utils.extend(options || {}, { base64: false, @@ -1113,41 +1114,41 @@ module.exports = function(data, options) { } return utils.prepareContent("the loaded zip file", data, true, options.optimizedBinaryString, options.base64) - .then(function(data) { - var zipEntries = new ZipEntries(options); - zipEntries.load(data); - return zipEntries; - }).then(function checkCRC32(zipEntries) { - var promises = [external.Promise.resolve(zipEntries)]; - var files = zipEntries.files; - if (options.checkCRC32) { + .then(function (data) { + var zipEntries = new ZipEntries(options); + zipEntries.load(data); + return zipEntries; + }).then(function checkCRC32(zipEntries) { + var promises = [external.Promise.resolve(zipEntries)]; + var files = zipEntries.files; + if (options.checkCRC32) { + for (var i = 0; i < files.length; i++) { + promises.push(checkEntryCRC32(files[i])); + } + } + return external.Promise.all(promises); + }).then(function addFiles(results) { + var zipEntries = results.shift(); + var files = zipEntries.files; for (var i = 0; i < files.length; i++) { - promises.push(checkEntryCRC32(files[i])); + var input = files[i]; + zip.file(input.fileNameStr, input.decompressed, { + binary: true, + optimizedBinaryString: true, + date: input.date, + dir: input.dir, + comment: input.fileCommentStr.length ? input.fileCommentStr : null, + unixPermissions: input.unixPermissions, + dosPermissions: input.dosPermissions, + createFolders: options.createFolders + }); + } + if (zipEntries.zipComment.length) { + zip.comment = zipEntries.zipComment; } - } - return external.Promise.all(promises); - }).then(function addFiles(results) { - var zipEntries = results.shift(); - var files = zipEntries.files; - for (var i = 0; i < files.length; i++) { - var input = files[i]; - zip.file(input.fileNameStr, input.decompressed, { - binary: true, - optimizedBinaryString: true, - date: input.date, - dir: input.dir, - comment : input.fileCommentStr.length ? input.fileCommentStr : null, - unixPermissions : input.unixPermissions, - dosPermissions : input.dosPermissions, - createFolders: options.createFolders - }); - } - if (zipEntries.zipComment.length) { - zip.comment = zipEntries.zipComment; - } - return zip; - }); + return zip; + }); }; },{"./external":6,"./nodejsUtils":14,"./stream/Crc32Probe":25,"./utf8":31,"./utils":32,"./zipEntries":33}],12:[function(require,module,exports){ @@ -1287,13 +1288,16 @@ module.exports = { * @return {Buffer} a new Buffer. */ newBufferFrom: function(data, encoding) { - // XXX We can't use `Buffer.from` which comes from `Uint8Array.from` - // in nodejs v4 (< v.4.5). It's not the expected implementation (and - // has a different signature). - // see https://github.com/nodejs/node/issues/8053 - // A condition on nodejs' version won't solve the issue as we don't - // control the Buffer polyfills that may or may not be used. - return new Buffer(data, encoding); + if (Buffer.from && Buffer.from !== Uint8Array.from) { + return Buffer.from(data, encoding); + } else { + if (typeof data === "number") { + // Safeguard for old Node.js versions. On newer versions, + // Buffer.from(number) / Buffer(number, encoding) already throw. + throw new Error("The \"data\" argument must not be a number"); + } + return new Buffer(data, encoding); + } }, /** * Create a new nodejs Buffer with the specified size. @@ -1304,7 +1308,9 @@ module.exports = { if (Buffer.alloc) { return Buffer.alloc(size); } else { - return new Buffer(size); + var buf = new Buffer(size); + buf.fill(0); + return buf; } }, /** @@ -1506,16 +1512,16 @@ var out = { */ forEach: function(cb) { var filename, relativePath, file; + /* jshint ignore:start */ + // ignore warning about unwanted properties because this.files is a null prototype object for (filename in this.files) { - if (!this.files.hasOwnProperty(filename)) { - continue; - } file = this.files[filename]; relativePath = filename.slice(this.root.length, filename.length); if (relativePath && filename.slice(0, this.root.length) === this.root) { // the file is in the current root cb(relativePath, file); // TODO reverse the parameters ? need to be clean AND consistent with the filter search fn... } } + /* jshint ignore:end */ }, /** @@ -1662,7 +1668,7 @@ var out = { opts.type = opts.type.toLowerCase(); opts.compression = opts.compression.toUpperCase(); - // "binarystring" is prefered but the internals use "string". + // "binarystring" is preferred but the internals use "string". if(opts.type === "binarystring") { opts.type = "string"; } @@ -1871,9 +1877,9 @@ DataReader.prototype = { // see implementations }, /** - * Find the last occurence of a zip signature (4 bytes). + * Find the last occurrence of a zip signature (4 bytes). * @param {string} sig the signature to find. - * @return {number} the index of the last occurence, -1 if not found. + * @return {number} the index of the last occurrence, -1 if not found. */ lastIndexOfSignature: function(sig) { // see implementations @@ -3032,7 +3038,7 @@ exports.Utf8EncodeWorker = Utf8EncodeWorker; var support = require('./support'); var base64 = require('./base64'); var nodejsUtils = require('./nodejsUtils'); -var setImmediate = require('core-js/library/fn/set-immediate'); +var setImmediate = require('set-immediate-shim'); var external = require("./external"); @@ -3117,7 +3123,7 @@ function stringToArrayLike(str, array) { /** * An helper for the function arrayLikeToString. - * This contains static informations and functions that + * This contains static information and functions that * can be optimized by the browser JIT compiler. */ var arrayToStringHelper = { @@ -3504,7 +3510,7 @@ exports.prepareContent = function(name, inputData, isBinary, isOptimizedBinarySt }); }; -},{"./base64":1,"./external":6,"./nodejsUtils":14,"./support":30,"core-js/library/fn/set-immediate":36}],33:[function(require,module,exports){ +},{"./base64":1,"./external":6,"./nodejsUtils":14,"./support":30,"set-immediate-shim":54}],33:[function(require,module,exports){ 'use strict'; var readerFor = require('./reader/readerFor'); var utils = require('./utils'); @@ -3857,7 +3863,7 @@ ZipEntry.prototype = { reader.skip(localExtraFieldsLength); if (this.compressedSize === -1 || this.uncompressedSize === -1) { - throw new Error("Bug or corrupted zip : didn't get enough informations from the central directory " + "(compressedSize === -1 || uncompressedSize === -1)"); + throw new Error("Bug or corrupted zip : didn't get enough information from the central directory " + "(compressedSize === -1 || uncompressedSize === -1)"); } compression = findCompression(this.compressionMethod); @@ -3971,7 +3977,7 @@ ZipEntry.prototype = { this.extraFields = {}; } - while (reader.index < end) { + while (reader.index + 4 < end) { extraFieldId = reader.readInt(2); extraFieldLength = reader.readInt(2); extraFieldValue = reader.readData(extraFieldLength); @@ -3982,6 +3988,8 @@ ZipEntry.prototype = { value: extraFieldValue }; } + + reader.setIndex(end); }, /** * Apply an UTF8 transformation if needed. @@ -4198,296 +4206,6 @@ for(var i = 0; i < removedMethods.length; i++) { module.exports = ZipObject; },{"./compressedObject":2,"./stream/DataWorker":27,"./stream/GenericWorker":28,"./stream/StreamHelper":29,"./utf8":31}],36:[function(require,module,exports){ -require('../modules/web.immediate'); -module.exports = require('../modules/_core').setImmediate; -},{"../modules/_core":40,"../modules/web.immediate":56}],37:[function(require,module,exports){ -module.exports = function(it){ - if(typeof it != 'function')throw TypeError(it + ' is not a function!'); - return it; -}; -},{}],38:[function(require,module,exports){ -var isObject = require('./_is-object'); -module.exports = function(it){ - if(!isObject(it))throw TypeError(it + ' is not an object!'); - return it; -}; -},{"./_is-object":51}],39:[function(require,module,exports){ -var toString = {}.toString; - -module.exports = function(it){ - return toString.call(it).slice(8, -1); -}; -},{}],40:[function(require,module,exports){ -var core = module.exports = {version: '2.3.0'}; -if(typeof __e == 'number')__e = core; // eslint-disable-line no-undef -},{}],41:[function(require,module,exports){ -// optional / simple context binding -var aFunction = require('./_a-function'); -module.exports = function(fn, that, length){ - aFunction(fn); - if(that === undefined)return fn; - switch(length){ - case 1: return function(a){ - return fn.call(that, a); - }; - case 2: return function(a, b){ - return fn.call(that, a, b); - }; - case 3: return function(a, b, c){ - return fn.call(that, a, b, c); - }; - } - return function(/* ...args */){ - return fn.apply(that, arguments); - }; -}; -},{"./_a-function":37}],42:[function(require,module,exports){ -// Thank's IE8 for his funny defineProperty -module.exports = !require('./_fails')(function(){ - return Object.defineProperty({}, 'a', {get: function(){ return 7; }}).a != 7; -}); -},{"./_fails":45}],43:[function(require,module,exports){ -var isObject = require('./_is-object') - , document = require('./_global').document - // in old IE typeof document.createElement is 'object' - , is = isObject(document) && isObject(document.createElement); -module.exports = function(it){ - return is ? document.createElement(it) : {}; -}; -},{"./_global":46,"./_is-object":51}],44:[function(require,module,exports){ -var global = require('./_global') - , core = require('./_core') - , ctx = require('./_ctx') - , hide = require('./_hide') - , PROTOTYPE = 'prototype'; - -var $export = function(type, name, source){ - var IS_FORCED = type & $export.F - , IS_GLOBAL = type & $export.G - , IS_STATIC = type & $export.S - , IS_PROTO = type & $export.P - , IS_BIND = type & $export.B - , IS_WRAP = type & $export.W - , exports = IS_GLOBAL ? core : core[name] || (core[name] = {}) - , expProto = exports[PROTOTYPE] - , target = IS_GLOBAL ? global : IS_STATIC ? global[name] : (global[name] || {})[PROTOTYPE] - , key, own, out; - if(IS_GLOBAL)source = name; - for(key in source){ - // contains in native - own = !IS_FORCED && target && target[key] !== undefined; - if(own && key in exports)continue; - // export native or passed - out = own ? target[key] : source[key]; - // prevent global pollution for namespaces - exports[key] = IS_GLOBAL && typeof target[key] != 'function' ? source[key] - // bind timers to global for call from export context - : IS_BIND && own ? ctx(out, global) - // wrap global constructors for prevent change them in library - : IS_WRAP && target[key] == out ? (function(C){ - var F = function(a, b, c){ - if(this instanceof C){ - switch(arguments.length){ - case 0: return new C; - case 1: return new C(a); - case 2: return new C(a, b); - } return new C(a, b, c); - } return C.apply(this, arguments); - }; - F[PROTOTYPE] = C[PROTOTYPE]; - return F; - // make static versions for prototype methods - })(out) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out; - // export proto methods to core.%CONSTRUCTOR%.methods.%NAME% - if(IS_PROTO){ - (exports.virtual || (exports.virtual = {}))[key] = out; - // export proto methods to core.%CONSTRUCTOR%.prototype.%NAME% - if(type & $export.R && expProto && !expProto[key])hide(expProto, key, out); - } - } -}; -// type bitmap -$export.F = 1; // forced -$export.G = 2; // global -$export.S = 4; // static -$export.P = 8; // proto -$export.B = 16; // bind -$export.W = 32; // wrap -$export.U = 64; // safe -$export.R = 128; // real proto method for `library` -module.exports = $export; -},{"./_core":40,"./_ctx":41,"./_global":46,"./_hide":47}],45:[function(require,module,exports){ -module.exports = function(exec){ - try { - return !!exec(); - } catch(e){ - return true; - } -}; -},{}],46:[function(require,module,exports){ -// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 -var global = module.exports = typeof window != 'undefined' && window.Math == Math - ? window : typeof self != 'undefined' && self.Math == Math ? self : Function('return this')(); -if(typeof __g == 'number')__g = global; // eslint-disable-line no-undef -},{}],47:[function(require,module,exports){ -var dP = require('./_object-dp') - , createDesc = require('./_property-desc'); -module.exports = require('./_descriptors') ? function(object, key, value){ - return dP.f(object, key, createDesc(1, value)); -} : function(object, key, value){ - object[key] = value; - return object; -}; -},{"./_descriptors":42,"./_object-dp":52,"./_property-desc":53}],48:[function(require,module,exports){ -module.exports = require('./_global').document && document.documentElement; -},{"./_global":46}],49:[function(require,module,exports){ -module.exports = !require('./_descriptors') && !require('./_fails')(function(){ - return Object.defineProperty(require('./_dom-create')('div'), 'a', {get: function(){ return 7; }}).a != 7; -}); -},{"./_descriptors":42,"./_dom-create":43,"./_fails":45}],50:[function(require,module,exports){ -// fast apply, http://jsperf.lnkit.com/fast-apply/5 -module.exports = function(fn, args, that){ - var un = that === undefined; - switch(args.length){ - case 0: return un ? fn() - : fn.call(that); - case 1: return un ? fn(args[0]) - : fn.call(that, args[0]); - case 2: return un ? fn(args[0], args[1]) - : fn.call(that, args[0], args[1]); - case 3: return un ? fn(args[0], args[1], args[2]) - : fn.call(that, args[0], args[1], args[2]); - case 4: return un ? fn(args[0], args[1], args[2], args[3]) - : fn.call(that, args[0], args[1], args[2], args[3]); - } return fn.apply(that, args); -}; -},{}],51:[function(require,module,exports){ -module.exports = function(it){ - return typeof it === 'object' ? it !== null : typeof it === 'function'; -}; -},{}],52:[function(require,module,exports){ -var anObject = require('./_an-object') - , IE8_DOM_DEFINE = require('./_ie8-dom-define') - , toPrimitive = require('./_to-primitive') - , dP = Object.defineProperty; - -exports.f = require('./_descriptors') ? Object.defineProperty : function defineProperty(O, P, Attributes){ - anObject(O); - P = toPrimitive(P, true); - anObject(Attributes); - if(IE8_DOM_DEFINE)try { - return dP(O, P, Attributes); - } catch(e){ /* empty */ } - if('get' in Attributes || 'set' in Attributes)throw TypeError('Accessors not supported!'); - if('value' in Attributes)O[P] = Attributes.value; - return O; -}; -},{"./_an-object":38,"./_descriptors":42,"./_ie8-dom-define":49,"./_to-primitive":55}],53:[function(require,module,exports){ -module.exports = function(bitmap, value){ - return { - enumerable : !(bitmap & 1), - configurable: !(bitmap & 2), - writable : !(bitmap & 4), - value : value - }; -}; -},{}],54:[function(require,module,exports){ -var ctx = require('./_ctx') - , invoke = require('./_invoke') - , html = require('./_html') - , cel = require('./_dom-create') - , global = require('./_global') - , process = global.process - , setTask = global.setImmediate - , clearTask = global.clearImmediate - , MessageChannel = global.MessageChannel - , counter = 0 - , queue = {} - , ONREADYSTATECHANGE = 'onreadystatechange' - , defer, channel, port; -var run = function(){ - var id = +this; - if(queue.hasOwnProperty(id)){ - var fn = queue[id]; - delete queue[id]; - fn(); - } -}; -var listener = function(event){ - run.call(event.data); -}; -// Node.js 0.9+ & IE10+ has setImmediate, otherwise: -if(!setTask || !clearTask){ - setTask = function setImmediate(fn){ - var args = [], i = 1; - while(arguments.length > i)args.push(arguments[i++]); - queue[++counter] = function(){ - invoke(typeof fn == 'function' ? fn : Function(fn), args); - }; - defer(counter); - return counter; - }; - clearTask = function clearImmediate(id){ - delete queue[id]; - }; - // Node.js 0.8- - if(require('./_cof')(process) == 'process'){ - defer = function(id){ - process.nextTick(ctx(run, id, 1)); - }; - // Browsers with MessageChannel, includes WebWorkers - } else if(MessageChannel){ - channel = new MessageChannel; - port = channel.port2; - channel.port1.onmessage = listener; - defer = ctx(port.postMessage, port, 1); - // Browsers with postMessage, skip WebWorkers - // IE8 has postMessage, but it's sync & typeof its postMessage is 'object' - } else if(global.addEventListener && typeof postMessage == 'function' && !global.importScripts){ - defer = function(id){ - global.postMessage(id + '', '*'); - }; - global.addEventListener('message', listener, false); - // IE8- - } else if(ONREADYSTATECHANGE in cel('script')){ - defer = function(id){ - html.appendChild(cel('script'))[ONREADYSTATECHANGE] = function(){ - html.removeChild(this); - run.call(id); - }; - }; - // Rest old browsers - } else { - defer = function(id){ - setTimeout(ctx(run, id, 1), 0); - }; - } -} -module.exports = { - set: setTask, - clear: clearTask -}; -},{"./_cof":39,"./_ctx":41,"./_dom-create":43,"./_global":46,"./_html":48,"./_invoke":50}],55:[function(require,module,exports){ -// 7.1.1 ToPrimitive(input [, PreferredType]) -var isObject = require('./_is-object'); -// instead of the ES6 spec version, we didn't implement @@toPrimitive case -// and the second argument - flag - preferred type is a string -module.exports = function(it, S){ - if(!isObject(it))return it; - var fn, val; - if(S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it)))return val; - if(typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it)))return val; - if(!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it)))return val; - throw TypeError("Can't convert object to primitive value"); -}; -},{"./_is-object":51}],56:[function(require,module,exports){ -var $export = require('./_export') - , $task = require('./_task'); -$export($export.G + $export.B, { - setImmediate: $task.set, - clearImmediate: $task.clear -}); -},{"./_export":44,"./_task":54}],57:[function(require,module,exports){ (function (global){ 'use strict'; var Mutation = global.MutationObserver || global.WebKitMutationObserver; @@ -4560,7 +4278,7 @@ function immediate(task) { } }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{}],58:[function(require,module,exports){ +},{}],37:[function(require,module,exports){ 'use strict'; var immediate = require('immediate'); @@ -4587,6 +4305,26 @@ function Promise(resolver) { } } +Promise.prototype["finally"] = function (callback) { + if (typeof callback !== 'function') { + return this; + } + var p = this.constructor; + return this.then(resolve, reject); + + function resolve(value) { + function yes () { + return value; + } + return p.resolve(callback()).then(yes); + } + function reject(reason) { + function no () { + throw reason; + } + return p.resolve(callback()).then(no); + } +}; Promise.prototype["catch"] = function (onRejected) { return this.then(null, onRejected); }; @@ -4815,7 +4553,7 @@ function race(iterable) { } } -},{"immediate":57}],59:[function(require,module,exports){ +},{"immediate":36}],38:[function(require,module,exports){ // Top level file is just a mixin of submodules & constants 'use strict'; @@ -4831,7 +4569,7 @@ assign(pako, deflate, inflate, constants); module.exports = pako; -},{"./lib/deflate":60,"./lib/inflate":61,"./lib/utils/common":62,"./lib/zlib/constants":65}],60:[function(require,module,exports){ +},{"./lib/deflate":39,"./lib/inflate":40,"./lib/utils/common":41,"./lib/zlib/constants":44}],39:[function(require,module,exports){ 'use strict'; @@ -5233,7 +4971,7 @@ exports.deflate = deflate; exports.deflateRaw = deflateRaw; exports.gzip = gzip; -},{"./utils/common":62,"./utils/strings":63,"./zlib/deflate":67,"./zlib/messages":72,"./zlib/zstream":74}],61:[function(require,module,exports){ +},{"./utils/common":41,"./utils/strings":42,"./zlib/deflate":46,"./zlib/messages":51,"./zlib/zstream":53}],40:[function(require,module,exports){ 'use strict'; @@ -5653,7 +5391,7 @@ exports.inflate = inflate; exports.inflateRaw = inflateRaw; exports.ungzip = inflate; -},{"./utils/common":62,"./utils/strings":63,"./zlib/constants":65,"./zlib/gzheader":68,"./zlib/inflate":70,"./zlib/messages":72,"./zlib/zstream":74}],62:[function(require,module,exports){ +},{"./utils/common":41,"./utils/strings":42,"./zlib/constants":44,"./zlib/gzheader":47,"./zlib/inflate":49,"./zlib/messages":51,"./zlib/zstream":53}],41:[function(require,module,exports){ 'use strict'; @@ -5757,7 +5495,7 @@ exports.setTyped = function (on) { exports.setTyped(TYPED_OK); -},{}],63:[function(require,module,exports){ +},{}],42:[function(require,module,exports){ // String encode/decode helpers 'use strict'; @@ -5944,7 +5682,7 @@ exports.utf8border = function (buf, max) { return (pos + _utf8len[buf[pos]] > max) ? pos : max; }; -},{"./common":62}],64:[function(require,module,exports){ +},{"./common":41}],43:[function(require,module,exports){ 'use strict'; // Note: adler32 takes 12% for level 0 and 2% for level 6. @@ -5997,7 +5735,7 @@ function adler32(adler, buf, len, pos) { module.exports = adler32; -},{}],65:[function(require,module,exports){ +},{}],44:[function(require,module,exports){ 'use strict'; // (C) 1995-2013 Jean-loup Gailly and Mark Adler @@ -6067,7 +5805,7 @@ module.exports = { //Z_NULL: null // Use -1 or null inline, depending on var type }; -},{}],66:[function(require,module,exports){ +},{}],45:[function(require,module,exports){ 'use strict'; // Note: we can't get significant speed boost here. @@ -6128,7 +5866,7 @@ function crc32(crc, buf, len, pos) { module.exports = crc32; -},{}],67:[function(require,module,exports){ +},{}],46:[function(require,module,exports){ 'use strict'; // (C) 1995-2013 Jean-loup Gailly and Mark Adler @@ -8004,7 +7742,7 @@ exports.deflatePrime = deflatePrime; exports.deflateTune = deflateTune; */ -},{"../utils/common":62,"./adler32":64,"./crc32":66,"./messages":72,"./trees":73}],68:[function(require,module,exports){ +},{"../utils/common":41,"./adler32":43,"./crc32":45,"./messages":51,"./trees":52}],47:[function(require,module,exports){ 'use strict'; // (C) 1995-2013 Jean-loup Gailly and Mark Adler @@ -8064,7 +7802,7 @@ function GZheader() { module.exports = GZheader; -},{}],69:[function(require,module,exports){ +},{}],48:[function(require,module,exports){ 'use strict'; // (C) 1995-2013 Jean-loup Gailly and Mark Adler @@ -8411,7 +8149,7 @@ module.exports = function inflate_fast(strm, start) { return; }; -},{}],70:[function(require,module,exports){ +},{}],49:[function(require,module,exports){ 'use strict'; // (C) 1995-2013 Jean-loup Gailly and Mark Adler @@ -9969,7 +9707,7 @@ exports.inflateSyncPoint = inflateSyncPoint; exports.inflateUndermine = inflateUndermine; */ -},{"../utils/common":62,"./adler32":64,"./crc32":66,"./inffast":69,"./inftrees":71}],71:[function(require,module,exports){ +},{"../utils/common":41,"./adler32":43,"./crc32":45,"./inffast":48,"./inftrees":50}],50:[function(require,module,exports){ 'use strict'; // (C) 1995-2013 Jean-loup Gailly and Mark Adler @@ -10314,7 +10052,7 @@ module.exports = function inflate_table(type, lens, lens_index, codes, table, ta return 0; }; -},{"../utils/common":62}],72:[function(require,module,exports){ +},{"../utils/common":41}],51:[function(require,module,exports){ 'use strict'; // (C) 1995-2013 Jean-loup Gailly and Mark Adler @@ -10348,7 +10086,7 @@ module.exports = { '-6': 'incompatible version' /* Z_VERSION_ERROR (-6) */ }; -},{}],73:[function(require,module,exports){ +},{}],52:[function(require,module,exports){ 'use strict'; // (C) 1995-2013 Jean-loup Gailly and Mark Adler @@ -11570,7 +11308,7 @@ exports._tr_flush_block = _tr_flush_block; exports._tr_tally = _tr_tally; exports._tr_align = _tr_align; -},{"../utils/common":62}],74:[function(require,module,exports){ +},{"../utils/common":41}],53:[function(require,module,exports){ 'use strict'; // (C) 1995-2013 Jean-loup Gailly and Mark Adler @@ -11619,5 +11357,14 @@ function ZStream() { module.exports = ZStream; +},{}],54:[function(require,module,exports){ +'use strict'; +module.exports = typeof setImmediate === 'function' ? setImmediate : + function setImmediate() { + var args = [].slice.apply(arguments); + args.splice(1, 0, 0); + setTimeout.apply(null, args); + }; + },{}]},{},[10])(10) }); \ No newline at end of file diff --git a/docs/jquery/jszip/dist/jszip.min.js b/docs/jquery/jszip/dist/jszip.min.js new file mode 100644 index 0000000..6c4645c --- /dev/null +++ b/docs/jquery/jszip/dist/jszip.min.js @@ -0,0 +1,13 @@ +/*! + +JSZip v3.7.1 - A JavaScript class for generating and reading zip files + + +(c) 2009-2016 Stuart Knightley +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip/master/LICENSE.markdown. + +JSZip uses the library pako released under the MIT license : +https://github.com/nodeca/pako/blob/master/LICENSE +*/ + +!function(t){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{("undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this).JSZip=t()}}(function(){return function s(a,o,h){function u(r,t){if(!o[r]){if(!a[r]){var e="function"==typeof require&&require;if(!t&&e)return e(r,!0);if(l)return l(r,!0);var i=new Error("Cannot find module '"+r+"'");throw i.code="MODULE_NOT_FOUND",i}var n=o[r]={exports:{}};a[r][0].call(n.exports,function(t){var e=a[r][1][t];return u(e||t)},n,n.exports,s,a,o,h)}return o[r].exports}for(var l="function"==typeof require&&require,t=0;t>2,s=(3&e)<<4|r>>4,a=1>6:64,o=2>4,r=(15&n)<<4|(s=p.indexOf(t.charAt(o++)))>>2,i=(3&s)<<6|(a=p.indexOf(t.charAt(o++))),l[h++]=e,64!==s&&(l[h++]=r),64!==a&&(l[h++]=i);return l}},{"./support":30,"./utils":32}],2:[function(t,e,r){"use strict";var i=t("./external"),n=t("./stream/DataWorker"),s=t("./stream/Crc32Probe"),a=t("./stream/DataLengthProbe");function o(t,e,r,i,n){this.compressedSize=t,this.uncompressedSize=e,this.crc32=r,this.compression=i,this.compressedContent=n}o.prototype={getContentWorker:function(){var t=new n(i.Promise.resolve(this.compressedContent)).pipe(this.compression.uncompressWorker()).pipe(new a("data_length")),e=this;return t.on("end",function(){if(this.streamInfo.data_length!==e.uncompressedSize)throw new Error("Bug : uncompressed data size mismatch")}),t},getCompressedWorker:function(){return new n(i.Promise.resolve(this.compressedContent)).withStreamInfo("compressedSize",this.compressedSize).withStreamInfo("uncompressedSize",this.uncompressedSize).withStreamInfo("crc32",this.crc32).withStreamInfo("compression",this.compression)}},o.createWorkerFrom=function(t,e,r){return t.pipe(new s).pipe(new a("uncompressedSize")).pipe(e.compressWorker(r)).pipe(new a("compressedSize")).withStreamInfo("compression",e)},e.exports=o},{"./external":6,"./stream/Crc32Probe":25,"./stream/DataLengthProbe":26,"./stream/DataWorker":27}],3:[function(t,e,r){"use strict";var i=t("./stream/GenericWorker");r.STORE={magic:"\0\0",compressWorker:function(t){return new i("STORE compression")},uncompressWorker:function(){return new i("STORE decompression")}},r.DEFLATE=t("./flate")},{"./flate":7,"./stream/GenericWorker":28}],4:[function(t,e,r){"use strict";var i=t("./utils");var o=function(){for(var t,e=[],r=0;r<256;r++){t=r;for(var i=0;i<8;i++)t=1&t?3988292384^t>>>1:t>>>1;e[r]=t}return e}();e.exports=function(t,e){return void 0!==t&&t.length?"string"!==i.getTypeOf(t)?function(t,e,r,i){var n=o,s=i+r;t^=-1;for(var a=i;a>>8^n[255&(t^e[a])];return-1^t}(0|e,t,t.length,0):function(t,e,r,i){var n=o,s=i+r;t^=-1;for(var a=i;a>>8^n[255&(t^e.charCodeAt(a))];return-1^t}(0|e,t,t.length,0):0}},{"./utils":32}],5:[function(t,e,r){"use strict";r.base64=!1,r.binary=!1,r.dir=!1,r.createFolders=!0,r.date=null,r.compression=null,r.compressionOptions=null,r.comment=null,r.unixPermissions=null,r.dosPermissions=null},{}],6:[function(t,e,r){"use strict";var i=null;i="undefined"!=typeof Promise?Promise:t("lie"),e.exports={Promise:i}},{lie:37}],7:[function(t,e,r){"use strict";var i="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Uint32Array,n=t("pako"),s=t("./utils"),a=t("./stream/GenericWorker"),o=i?"uint8array":"array";function h(t,e){a.call(this,"FlateWorker/"+t),this._pako=null,this._pakoAction=t,this._pakoOptions=e,this.meta={}}r.magic="\b\0",s.inherits(h,a),h.prototype.processChunk=function(t){this.meta=t.meta,null===this._pako&&this._createPako(),this._pako.push(s.transformTo(o,t.data),!1)},h.prototype.flush=function(){a.prototype.flush.call(this),null===this._pako&&this._createPako(),this._pako.push([],!0)},h.prototype.cleanUp=function(){a.prototype.cleanUp.call(this),this._pako=null},h.prototype._createPako=function(){this._pako=new n[this._pakoAction]({raw:!0,level:this._pakoOptions.level||-1});var e=this;this._pako.onData=function(t){e.push({data:t,meta:e.meta})}},r.compressWorker=function(t){return new h("Deflate",t)},r.uncompressWorker=function(){return new h("Inflate",{})}},{"./stream/GenericWorker":28,"./utils":32,pako:38}],8:[function(t,e,r){"use strict";function A(t,e){var r,i="";for(r=0;r>>=8;return i}function i(t,e,r,i,n,s){var a,o,h=t.file,u=t.compression,l=s!==O.utf8encode,f=I.transformTo("string",s(h.name)),d=I.transformTo("string",O.utf8encode(h.name)),c=h.comment,p=I.transformTo("string",s(c)),m=I.transformTo("string",O.utf8encode(c)),_=d.length!==h.name.length,g=m.length!==c.length,b="",v="",y="",w=h.dir,k=h.date,x={crc32:0,compressedSize:0,uncompressedSize:0};e&&!r||(x.crc32=t.crc32,x.compressedSize=t.compressedSize,x.uncompressedSize=t.uncompressedSize);var S=0;e&&(S|=8),l||!_&&!g||(S|=2048);var z=0,C=0;w&&(z|=16),"UNIX"===n?(C=798,z|=function(t,e){var r=t;return t||(r=e?16893:33204),(65535&r)<<16}(h.unixPermissions,w)):(C=20,z|=function(t){return 63&(t||0)}(h.dosPermissions)),a=k.getUTCHours(),a<<=6,a|=k.getUTCMinutes(),a<<=5,a|=k.getUTCSeconds()/2,o=k.getUTCFullYear()-1980,o<<=4,o|=k.getUTCMonth()+1,o<<=5,o|=k.getUTCDate(),_&&(v=A(1,1)+A(B(f),4)+d,b+="up"+A(v.length,2)+v),g&&(y=A(1,1)+A(B(p),4)+m,b+="uc"+A(y.length,2)+y);var E="";return E+="\n\0",E+=A(S,2),E+=u.magic,E+=A(a,2),E+=A(o,2),E+=A(x.crc32,4),E+=A(x.compressedSize,4),E+=A(x.uncompressedSize,4),E+=A(f.length,2),E+=A(b.length,2),{fileRecord:R.LOCAL_FILE_HEADER+E+f+b,dirRecord:R.CENTRAL_FILE_HEADER+A(C,2)+E+A(p.length,2)+"\0\0\0\0"+A(z,4)+A(i,4)+f+b+p}}var I=t("../utils"),n=t("../stream/GenericWorker"),O=t("../utf8"),B=t("../crc32"),R=t("../signature");function s(t,e,r,i){n.call(this,"ZipFileWorker"),this.bytesWritten=0,this.zipComment=e,this.zipPlatform=r,this.encodeFileName=i,this.streamFiles=t,this.accumulate=!1,this.contentBuffer=[],this.dirRecords=[],this.currentSourceOffset=0,this.entriesCount=0,this.currentFile=null,this._sources=[]}I.inherits(s,n),s.prototype.push=function(t){var e=t.meta.percent||0,r=this.entriesCount,i=this._sources.length;this.accumulate?this.contentBuffer.push(t):(this.bytesWritten+=t.data.length,n.prototype.push.call(this,{data:t.data,meta:{currentFile:this.currentFile,percent:r?(e+100*(r-i-1))/r:100}}))},s.prototype.openedSource=function(t){this.currentSourceOffset=this.bytesWritten,this.currentFile=t.file.name;var e=this.streamFiles&&!t.file.dir;if(e){var r=i(t,e,!1,this.currentSourceOffset,this.zipPlatform,this.encodeFileName);this.push({data:r.fileRecord,meta:{percent:0}})}else this.accumulate=!0},s.prototype.closedSource=function(t){this.accumulate=!1;var e=this.streamFiles&&!t.file.dir,r=i(t,e,!0,this.currentSourceOffset,this.zipPlatform,this.encodeFileName);if(this.dirRecords.push(r.dirRecord),e)this.push({data:function(t){return R.DATA_DESCRIPTOR+A(t.crc32,4)+A(t.compressedSize,4)+A(t.uncompressedSize,4)}(t),meta:{percent:100}});else for(this.push({data:r.fileRecord,meta:{percent:0}});this.contentBuffer.length;)this.push(this.contentBuffer.shift());this.currentFile=null},s.prototype.flush=function(){for(var t=this.bytesWritten,e=0;e=this.index;e--)r=(r<<8)+this.byteAt(e);return this.index+=t,r},readString:function(t){return i.transformTo("string",this.readData(t))},readData:function(t){},lastIndexOfSignature:function(t){},readAndCheckSignature:function(t){},readDate:function(){var t=this.readInt(4);return new Date(Date.UTC(1980+(t>>25&127),(t>>21&15)-1,t>>16&31,t>>11&31,t>>5&63,(31&t)<<1))}},e.exports=n},{"../utils":32}],19:[function(t,e,r){"use strict";var i=t("./Uint8ArrayReader");function n(t){i.call(this,t)}t("../utils").inherits(n,i),n.prototype.readData=function(t){this.checkOffset(t);var e=this.data.slice(this.zero+this.index,this.zero+this.index+t);return this.index+=t,e},e.exports=n},{"../utils":32,"./Uint8ArrayReader":21}],20:[function(t,e,r){"use strict";var i=t("./DataReader");function n(t){i.call(this,t)}t("../utils").inherits(n,i),n.prototype.byteAt=function(t){return this.data.charCodeAt(this.zero+t)},n.prototype.lastIndexOfSignature=function(t){return this.data.lastIndexOf(t)-this.zero},n.prototype.readAndCheckSignature=function(t){return t===this.readData(4)},n.prototype.readData=function(t){this.checkOffset(t);var e=this.data.slice(this.zero+this.index,this.zero+this.index+t);return this.index+=t,e},e.exports=n},{"../utils":32,"./DataReader":18}],21:[function(t,e,r){"use strict";var i=t("./ArrayReader");function n(t){i.call(this,t)}t("../utils").inherits(n,i),n.prototype.readData=function(t){if(this.checkOffset(t),0===t)return new Uint8Array(0);var e=this.data.subarray(this.zero+this.index,this.zero+this.index+t);return this.index+=t,e},e.exports=n},{"../utils":32,"./ArrayReader":17}],22:[function(t,e,r){"use strict";var i=t("../utils"),n=t("../support"),s=t("./ArrayReader"),a=t("./StringReader"),o=t("./NodeBufferReader"),h=t("./Uint8ArrayReader");e.exports=function(t){var e=i.getTypeOf(t);return i.checkSupport(e),"string"!==e||n.uint8array?"nodebuffer"===e?new o(t):n.uint8array?new h(i.transformTo("uint8array",t)):new s(i.transformTo("array",t)):new a(t)}},{"../support":30,"../utils":32,"./ArrayReader":17,"./NodeBufferReader":19,"./StringReader":20,"./Uint8ArrayReader":21}],23:[function(t,e,r){"use strict";r.LOCAL_FILE_HEADER="PK",r.CENTRAL_FILE_HEADER="PK",r.CENTRAL_DIRECTORY_END="PK",r.ZIP64_CENTRAL_DIRECTORY_LOCATOR="PK",r.ZIP64_CENTRAL_DIRECTORY_END="PK",r.DATA_DESCRIPTOR="PK\b"},{}],24:[function(t,e,r){"use strict";var i=t("./GenericWorker"),n=t("../utils");function s(t){i.call(this,"ConvertWorker to "+t),this.destType=t}n.inherits(s,i),s.prototype.processChunk=function(t){this.push({data:n.transformTo(this.destType,t.data),meta:t.meta})},e.exports=s},{"../utils":32,"./GenericWorker":28}],25:[function(t,e,r){"use strict";var i=t("./GenericWorker"),n=t("../crc32");function s(){i.call(this,"Crc32Probe"),this.withStreamInfo("crc32",0)}t("../utils").inherits(s,i),s.prototype.processChunk=function(t){this.streamInfo.crc32=n(t.data,this.streamInfo.crc32||0),this.push(t)},e.exports=s},{"../crc32":4,"../utils":32,"./GenericWorker":28}],26:[function(t,e,r){"use strict";var i=t("../utils"),n=t("./GenericWorker");function s(t){n.call(this,"DataLengthProbe for "+t),this.propName=t,this.withStreamInfo(t,0)}i.inherits(s,n),s.prototype.processChunk=function(t){if(t){var e=this.streamInfo[this.propName]||0;this.streamInfo[this.propName]=e+t.data.length}n.prototype.processChunk.call(this,t)},e.exports=s},{"../utils":32,"./GenericWorker":28}],27:[function(t,e,r){"use strict";var i=t("../utils"),n=t("./GenericWorker");function s(t){n.call(this,"DataWorker");var e=this;this.dataIsReady=!1,this.index=0,this.max=0,this.data=null,this.type="",this._tickScheduled=!1,t.then(function(t){e.dataIsReady=!0,e.data=t,e.max=t&&t.length||0,e.type=i.getTypeOf(t),e.isPaused||e._tickAndRepeat()},function(t){e.error(t)})}i.inherits(s,n),s.prototype.cleanUp=function(){n.prototype.cleanUp.call(this),this.data=null},s.prototype.resume=function(){return!!n.prototype.resume.call(this)&&(!this._tickScheduled&&this.dataIsReady&&(this._tickScheduled=!0,i.delay(this._tickAndRepeat,[],this)),!0)},s.prototype._tickAndRepeat=function(){this._tickScheduled=!1,this.isPaused||this.isFinished||(this._tick(),this.isFinished||(i.delay(this._tickAndRepeat,[],this),this._tickScheduled=!0))},s.prototype._tick=function(){if(this.isPaused||this.isFinished)return!1;var t=null,e=Math.min(this.max,this.index+16384);if(this.index>=this.max)return this.end();switch(this.type){case"string":t=this.data.substring(this.index,e);break;case"uint8array":t=this.data.subarray(this.index,e);break;case"array":case"nodebuffer":t=this.data.slice(this.index,e)}return this.index=e,this.push({data:t,meta:{percent:this.max?this.index/this.max*100:0}})},e.exports=s},{"../utils":32,"./GenericWorker":28}],28:[function(t,e,r){"use strict";function i(t){this.name=t||"default",this.streamInfo={},this.generatedError=null,this.extraStreamInfo={},this.isPaused=!0,this.isFinished=!1,this.isLocked=!1,this._listeners={data:[],end:[],error:[]},this.previous=null}i.prototype={push:function(t){this.emit("data",t)},end:function(){if(this.isFinished)return!1;this.flush();try{this.emit("end"),this.cleanUp(),this.isFinished=!0}catch(t){this.emit("error",t)}return!0},error:function(t){return!this.isFinished&&(this.isPaused?this.generatedError=t:(this.isFinished=!0,this.emit("error",t),this.previous&&this.previous.error(t),this.cleanUp()),!0)},on:function(t,e){return this._listeners[t].push(e),this},cleanUp:function(){this.streamInfo=this.generatedError=this.extraStreamInfo=null,this._listeners=[]},emit:function(t,e){if(this._listeners[t])for(var r=0;r "+t:t}},e.exports=i},{}],29:[function(t,e,r){"use strict";var h=t("../utils"),n=t("./ConvertWorker"),s=t("./GenericWorker"),u=t("../base64"),i=t("../support"),a=t("../external"),o=null;if(i.nodestream)try{o=t("../nodejs/NodejsStreamOutputAdapter")}catch(t){}function l(t,o){return new a.Promise(function(e,r){var i=[],n=t._internalType,s=t._outputType,a=t._mimeType;t.on("data",function(t,e){i.push(t),o&&o(e)}).on("error",function(t){i=[],r(t)}).on("end",function(){try{var t=function(t,e,r){switch(t){case"blob":return h.newBlob(h.transformTo("arraybuffer",e),r);case"base64":return u.encode(e);default:return h.transformTo(t,e)}}(s,function(t,e){var r,i=0,n=null,s=0;for(r=0;r>>6:(r<65536?e[s++]=224|r>>>12:(e[s++]=240|r>>>18,e[s++]=128|r>>>12&63),e[s++]=128|r>>>6&63),e[s++]=128|63&r);return e}(t)},s.utf8decode=function(t){return h.nodebuffer?o.transformTo("nodebuffer",t).toString("utf-8"):function(t){var e,r,i,n,s=t.length,a=new Array(2*s);for(e=r=0;e>10&1023,a[r++]=56320|1023&i)}return a.length!==r&&(a.subarray?a=a.subarray(0,r):a.length=r),o.applyFromCharCode(a)}(t=o.transformTo(h.uint8array?"uint8array":"array",t))},o.inherits(a,i),a.prototype.processChunk=function(t){var e=o.transformTo(h.uint8array?"uint8array":"array",t.data);if(this.leftOver&&this.leftOver.length){if(h.uint8array){var r=e;(e=new Uint8Array(r.length+this.leftOver.length)).set(this.leftOver,0),e.set(r,this.leftOver.length)}else e=this.leftOver.concat(e);this.leftOver=null}var i=function(t,e){var r;for((e=e||t.length)>t.length&&(e=t.length),r=e-1;0<=r&&128==(192&t[r]);)r--;return r<0?e:0===r?e:r+u[t[r]]>e?r:e}(e),n=e;i!==e.length&&(h.uint8array?(n=e.subarray(0,i),this.leftOver=e.subarray(i,e.length)):(n=e.slice(0,i),this.leftOver=e.slice(i,e.length))),this.push({data:s.utf8decode(n),meta:t.meta})},a.prototype.flush=function(){this.leftOver&&this.leftOver.length&&(this.push({data:s.utf8decode(this.leftOver),meta:{}}),this.leftOver=null)},s.Utf8DecodeWorker=a,o.inherits(l,i),l.prototype.processChunk=function(t){this.push({data:s.utf8encode(t.data),meta:t.meta})},s.Utf8EncodeWorker=l},{"./nodejsUtils":14,"./stream/GenericWorker":28,"./support":30,"./utils":32}],32:[function(t,e,a){"use strict";var o=t("./support"),h=t("./base64"),r=t("./nodejsUtils"),i=t("set-immediate-shim"),u=t("./external");function n(t){return t}function l(t,e){for(var r=0;r>8;this.dir=!!(16&this.externalFileAttributes),0==t&&(this.dosPermissions=63&this.externalFileAttributes),3==t&&(this.unixPermissions=this.externalFileAttributes>>16&65535),this.dir||"/"!==this.fileNameStr.slice(-1)||(this.dir=!0)},parseZIP64ExtraField:function(t){if(this.extraFields[1]){var e=i(this.extraFields[1].value);this.uncompressedSize===s.MAX_VALUE_32BITS&&(this.uncompressedSize=e.readInt(8)),this.compressedSize===s.MAX_VALUE_32BITS&&(this.compressedSize=e.readInt(8)),this.localHeaderOffset===s.MAX_VALUE_32BITS&&(this.localHeaderOffset=e.readInt(8)),this.diskNumberStart===s.MAX_VALUE_32BITS&&(this.diskNumberStart=e.readInt(4))}},readExtraFields:function(t){var e,r,i,n=t.index+this.extraFieldsLength;for(this.extraFields||(this.extraFields={});t.index+4>>6:(r<65536?e[s++]=224|r>>>12:(e[s++]=240|r>>>18,e[s++]=128|r>>>12&63),e[s++]=128|r>>>6&63),e[s++]=128|63&r);return e},r.buf2binstring=function(t){return l(t,t.length)},r.binstring2buf=function(t){for(var e=new h.Buf8(t.length),r=0,i=e.length;r>10&1023,o[i++]=56320|1023&n)}return l(o,i)},r.utf8border=function(t,e){var r;for((e=e||t.length)>t.length&&(e=t.length),r=e-1;0<=r&&128==(192&t[r]);)r--;return r<0?e:0===r?e:r+u[t[r]]>e?r:e}},{"./common":41}],43:[function(t,e,r){"use strict";e.exports=function(t,e,r,i){for(var n=65535&t|0,s=t>>>16&65535|0,a=0;0!==r;){for(r-=a=2e3>>1:t>>>1;e[r]=t}return e}();e.exports=function(t,e,r,i){var n=o,s=i+r;t^=-1;for(var a=i;a>>8^n[255&(t^e[a])];return-1^t}},{}],46:[function(t,e,r){"use strict";var h,d=t("../utils/common"),u=t("./trees"),c=t("./adler32"),p=t("./crc32"),i=t("./messages"),l=0,f=4,m=0,_=-2,g=-1,b=4,n=2,v=8,y=9,s=286,a=30,o=19,w=2*s+1,k=15,x=3,S=258,z=S+x+1,C=42,E=113,A=1,I=2,O=3,B=4;function R(t,e){return t.msg=i[e],e}function T(t){return(t<<1)-(4t.avail_out&&(r=t.avail_out),0!==r&&(d.arraySet(t.output,e.pending_buf,e.pending_out,r,t.next_out),t.next_out+=r,e.pending_out+=r,t.total_out+=r,t.avail_out-=r,e.pending-=r,0===e.pending&&(e.pending_out=0))}function N(t,e){u._tr_flush_block(t,0<=t.block_start?t.block_start:-1,t.strstart-t.block_start,e),t.block_start=t.strstart,F(t.strm)}function U(t,e){t.pending_buf[t.pending++]=e}function P(t,e){t.pending_buf[t.pending++]=e>>>8&255,t.pending_buf[t.pending++]=255&e}function L(t,e){var r,i,n=t.max_chain_length,s=t.strstart,a=t.prev_length,o=t.nice_match,h=t.strstart>t.w_size-z?t.strstart-(t.w_size-z):0,u=t.window,l=t.w_mask,f=t.prev,d=t.strstart+S,c=u[s+a-1],p=u[s+a];t.prev_length>=t.good_match&&(n>>=2),o>t.lookahead&&(o=t.lookahead);do{if(u[(r=e)+a]===p&&u[r+a-1]===c&&u[r]===u[s]&&u[++r]===u[s+1]){s+=2,r++;do{}while(u[++s]===u[++r]&&u[++s]===u[++r]&&u[++s]===u[++r]&&u[++s]===u[++r]&&u[++s]===u[++r]&&u[++s]===u[++r]&&u[++s]===u[++r]&&u[++s]===u[++r]&&sh&&0!=--n);return a<=t.lookahead?a:t.lookahead}function j(t){var e,r,i,n,s,a,o,h,u,l,f=t.w_size;do{if(n=t.window_size-t.lookahead-t.strstart,t.strstart>=f+(f-z)){for(d.arraySet(t.window,t.window,f,f,0),t.match_start-=f,t.strstart-=f,t.block_start-=f,e=r=t.hash_size;i=t.head[--e],t.head[e]=f<=i?i-f:0,--r;);for(e=r=f;i=t.prev[--e],t.prev[e]=f<=i?i-f:0,--r;);n+=f}if(0===t.strm.avail_in)break;if(a=t.strm,o=t.window,h=t.strstart+t.lookahead,u=n,l=void 0,l=a.avail_in,u=x)for(s=t.strstart-t.insert,t.ins_h=t.window[s],t.ins_h=(t.ins_h<=x&&(t.ins_h=(t.ins_h<=x)if(i=u._tr_tally(t,t.strstart-t.match_start,t.match_length-x),t.lookahead-=t.match_length,t.match_length<=t.max_lazy_match&&t.lookahead>=x){for(t.match_length--;t.strstart++,t.ins_h=(t.ins_h<=x&&(t.ins_h=(t.ins_h<=x&&t.match_length<=t.prev_length){for(n=t.strstart+t.lookahead-x,i=u._tr_tally(t,t.strstart-1-t.prev_match,t.prev_length-x),t.lookahead-=t.prev_length-1,t.prev_length-=2;++t.strstart<=n&&(t.ins_h=(t.ins_h<t.pending_buf_size-5&&(r=t.pending_buf_size-5);;){if(t.lookahead<=1){if(j(t),0===t.lookahead&&e===l)return A;if(0===t.lookahead)break}t.strstart+=t.lookahead,t.lookahead=0;var i=t.block_start+r;if((0===t.strstart||t.strstart>=i)&&(t.lookahead=t.strstart-i,t.strstart=i,N(t,!1),0===t.strm.avail_out))return A;if(t.strstart-t.block_start>=t.w_size-z&&(N(t,!1),0===t.strm.avail_out))return A}return t.insert=0,e===f?(N(t,!0),0===t.strm.avail_out?O:B):(t.strstart>t.block_start&&(N(t,!1),t.strm.avail_out),A)}),new M(4,4,8,4,Z),new M(4,5,16,8,Z),new M(4,6,32,32,Z),new M(4,4,16,16,W),new M(8,16,32,32,W),new M(8,16,128,128,W),new M(8,32,128,256,W),new M(32,128,258,1024,W),new M(32,258,258,4096,W)],r.deflateInit=function(t,e){return Y(t,e,v,15,8,0)},r.deflateInit2=Y,r.deflateReset=K,r.deflateResetKeep=G,r.deflateSetHeader=function(t,e){return t&&t.state?2!==t.state.wrap?_:(t.state.gzhead=e,m):_},r.deflate=function(t,e){var r,i,n,s;if(!t||!t.state||5>8&255),U(i,i.gzhead.time>>16&255),U(i,i.gzhead.time>>24&255),U(i,9===i.level?2:2<=i.strategy||i.level<2?4:0),U(i,255&i.gzhead.os),i.gzhead.extra&&i.gzhead.extra.length&&(U(i,255&i.gzhead.extra.length),U(i,i.gzhead.extra.length>>8&255)),i.gzhead.hcrc&&(t.adler=p(t.adler,i.pending_buf,i.pending,0)),i.gzindex=0,i.status=69):(U(i,0),U(i,0),U(i,0),U(i,0),U(i,0),U(i,9===i.level?2:2<=i.strategy||i.level<2?4:0),U(i,3),i.status=E);else{var a=v+(i.w_bits-8<<4)<<8;a|=(2<=i.strategy||i.level<2?0:i.level<6?1:6===i.level?2:3)<<6,0!==i.strstart&&(a|=32),a+=31-a%31,i.status=E,P(i,a),0!==i.strstart&&(P(i,t.adler>>>16),P(i,65535&t.adler)),t.adler=1}if(69===i.status)if(i.gzhead.extra){for(n=i.pending;i.gzindex<(65535&i.gzhead.extra.length)&&(i.pending!==i.pending_buf_size||(i.gzhead.hcrc&&i.pending>n&&(t.adler=p(t.adler,i.pending_buf,i.pending-n,n)),F(t),n=i.pending,i.pending!==i.pending_buf_size));)U(i,255&i.gzhead.extra[i.gzindex]),i.gzindex++;i.gzhead.hcrc&&i.pending>n&&(t.adler=p(t.adler,i.pending_buf,i.pending-n,n)),i.gzindex===i.gzhead.extra.length&&(i.gzindex=0,i.status=73)}else i.status=73;if(73===i.status)if(i.gzhead.name){n=i.pending;do{if(i.pending===i.pending_buf_size&&(i.gzhead.hcrc&&i.pending>n&&(t.adler=p(t.adler,i.pending_buf,i.pending-n,n)),F(t),n=i.pending,i.pending===i.pending_buf_size)){s=1;break}s=i.gzindexn&&(t.adler=p(t.adler,i.pending_buf,i.pending-n,n)),0===s&&(i.gzindex=0,i.status=91)}else i.status=91;if(91===i.status)if(i.gzhead.comment){n=i.pending;do{if(i.pending===i.pending_buf_size&&(i.gzhead.hcrc&&i.pending>n&&(t.adler=p(t.adler,i.pending_buf,i.pending-n,n)),F(t),n=i.pending,i.pending===i.pending_buf_size)){s=1;break}s=i.gzindexn&&(t.adler=p(t.adler,i.pending_buf,i.pending-n,n)),0===s&&(i.status=103)}else i.status=103;if(103===i.status&&(i.gzhead.hcrc?(i.pending+2>i.pending_buf_size&&F(t),i.pending+2<=i.pending_buf_size&&(U(i,255&t.adler),U(i,t.adler>>8&255),t.adler=0,i.status=E)):i.status=E),0!==i.pending){if(F(t),0===t.avail_out)return i.last_flush=-1,m}else if(0===t.avail_in&&T(e)<=T(r)&&e!==f)return R(t,-5);if(666===i.status&&0!==t.avail_in)return R(t,-5);if(0!==t.avail_in||0!==i.lookahead||e!==l&&666!==i.status){var o=2===i.strategy?function(t,e){for(var r;;){if(0===t.lookahead&&(j(t),0===t.lookahead)){if(e===l)return A;break}if(t.match_length=0,r=u._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++,r&&(N(t,!1),0===t.strm.avail_out))return A}return t.insert=0,e===f?(N(t,!0),0===t.strm.avail_out?O:B):t.last_lit&&(N(t,!1),0===t.strm.avail_out)?A:I}(i,e):3===i.strategy?function(t,e){for(var r,i,n,s,a=t.window;;){if(t.lookahead<=S){if(j(t),t.lookahead<=S&&e===l)return A;if(0===t.lookahead)break}if(t.match_length=0,t.lookahead>=x&&0t.lookahead&&(t.match_length=t.lookahead)}if(t.match_length>=x?(r=u._tr_tally(t,1,t.match_length-x),t.lookahead-=t.match_length,t.strstart+=t.match_length,t.match_length=0):(r=u._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++),r&&(N(t,!1),0===t.strm.avail_out))return A}return t.insert=0,e===f?(N(t,!0),0===t.strm.avail_out?O:B):t.last_lit&&(N(t,!1),0===t.strm.avail_out)?A:I}(i,e):h[i.level].func(i,e);if(o!==O&&o!==B||(i.status=666),o===A||o===O)return 0===t.avail_out&&(i.last_flush=-1),m;if(o===I&&(1===e?u._tr_align(i):5!==e&&(u._tr_stored_block(i,0,0,!1),3===e&&(D(i.head),0===i.lookahead&&(i.strstart=0,i.block_start=0,i.insert=0))),F(t),0===t.avail_out))return i.last_flush=-1,m}return e!==f?m:i.wrap<=0?1:(2===i.wrap?(U(i,255&t.adler),U(i,t.adler>>8&255),U(i,t.adler>>16&255),U(i,t.adler>>24&255),U(i,255&t.total_in),U(i,t.total_in>>8&255),U(i,t.total_in>>16&255),U(i,t.total_in>>24&255)):(P(i,t.adler>>>16),P(i,65535&t.adler)),F(t),0=r.w_size&&(0===s&&(D(r.head),r.strstart=0,r.block_start=0,r.insert=0),u=new d.Buf8(r.w_size),d.arraySet(u,e,l-r.w_size,r.w_size,0),e=u,l=r.w_size),a=t.avail_in,o=t.next_in,h=t.input,t.avail_in=l,t.next_in=0,t.input=e,j(r);r.lookahead>=x;){for(i=r.strstart,n=r.lookahead-(x-1);r.ins_h=(r.ins_h<>>=y=v>>>24,p-=y,0===(y=v>>>16&255))C[s++]=65535&v;else{if(!(16&y)){if(0==(64&y)){v=m[(65535&v)+(c&(1<>>=y,p-=y),p<15&&(c+=z[i++]<>>=y=v>>>24,p-=y,!(16&(y=v>>>16&255))){if(0==(64&y)){v=_[(65535&v)+(c&(1<>>=y,p-=y,(y=s-a)>3,c&=(1<<(p-=w<<3))-1,t.next_in=i,t.next_out=s,t.avail_in=i>>24&255)+(t>>>8&65280)+((65280&t)<<8)+((255&t)<<24)}function s(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new I.Buf16(320),this.work=new I.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function a(t){var e;return t&&t.state?(e=t.state,t.total_in=t.total_out=e.total=0,t.msg="",e.wrap&&(t.adler=1&e.wrap),e.mode=P,e.last=0,e.havedict=0,e.dmax=32768,e.head=null,e.hold=0,e.bits=0,e.lencode=e.lendyn=new I.Buf32(i),e.distcode=e.distdyn=new I.Buf32(n),e.sane=1,e.back=-1,N):U}function o(t){var e;return t&&t.state?((e=t.state).wsize=0,e.whave=0,e.wnext=0,a(t)):U}function h(t,e){var r,i;return t&&t.state?(i=t.state,e<0?(r=0,e=-e):(r=1+(e>>4),e<48&&(e&=15)),e&&(e<8||15=s.wsize?(I.arraySet(s.window,e,r-s.wsize,s.wsize,0),s.wnext=0,s.whave=s.wsize):(i<(n=s.wsize-s.wnext)&&(n=i),I.arraySet(s.window,e,r-i,n,s.wnext),(i-=n)?(I.arraySet(s.window,e,r-i,i,0),s.wnext=i,s.whave=s.wsize):(s.wnext+=n,s.wnext===s.wsize&&(s.wnext=0),s.whave>>8&255,r.check=B(r.check,E,2,0),l=u=0,r.mode=2;break}if(r.flags=0,r.head&&(r.head.done=!1),!(1&r.wrap)||(((255&u)<<8)+(u>>8))%31){t.msg="incorrect header check",r.mode=30;break}if(8!=(15&u)){t.msg="unknown compression method",r.mode=30;break}if(l-=4,k=8+(15&(u>>>=4)),0===r.wbits)r.wbits=k;else if(k>r.wbits){t.msg="invalid window size",r.mode=30;break}r.dmax=1<>8&1),512&r.flags&&(E[0]=255&u,E[1]=u>>>8&255,r.check=B(r.check,E,2,0)),l=u=0,r.mode=3;case 3:for(;l<32;){if(0===o)break t;o--,u+=i[s++]<>>8&255,E[2]=u>>>16&255,E[3]=u>>>24&255,r.check=B(r.check,E,4,0)),l=u=0,r.mode=4;case 4:for(;l<16;){if(0===o)break t;o--,u+=i[s++]<>8),512&r.flags&&(E[0]=255&u,E[1]=u>>>8&255,r.check=B(r.check,E,2,0)),l=u=0,r.mode=5;case 5:if(1024&r.flags){for(;l<16;){if(0===o)break t;o--,u+=i[s++]<>>8&255,r.check=B(r.check,E,2,0)),l=u=0}else r.head&&(r.head.extra=null);r.mode=6;case 6:if(1024&r.flags&&(o<(c=r.length)&&(c=o),c&&(r.head&&(k=r.head.extra_len-r.length,r.head.extra||(r.head.extra=new Array(r.head.extra_len)),I.arraySet(r.head.extra,i,s,c,k)),512&r.flags&&(r.check=B(r.check,i,c,s)),o-=c,s+=c,r.length-=c),r.length))break t;r.length=0,r.mode=7;case 7:if(2048&r.flags){if(0===o)break t;for(c=0;k=i[s+c++],r.head&&k&&r.length<65536&&(r.head.name+=String.fromCharCode(k)),k&&c>9&1,r.head.done=!0),t.adler=r.check=0,r.mode=12;break;case 10:for(;l<32;){if(0===o)break t;o--,u+=i[s++]<>>=7&l,l-=7&l,r.mode=27;break}for(;l<3;){if(0===o)break t;o--,u+=i[s++]<>>=1)){case 0:r.mode=14;break;case 1:if(j(r),r.mode=20,6!==e)break;u>>>=2,l-=2;break t;case 2:r.mode=17;break;case 3:t.msg="invalid block type",r.mode=30}u>>>=2,l-=2;break;case 14:for(u>>>=7&l,l-=7&l;l<32;){if(0===o)break t;o--,u+=i[s++]<>>16^65535)){t.msg="invalid stored block lengths",r.mode=30;break}if(r.length=65535&u,l=u=0,r.mode=15,6===e)break t;case 15:r.mode=16;case 16:if(c=r.length){if(o>>=5,l-=5,r.ndist=1+(31&u),u>>>=5,l-=5,r.ncode=4+(15&u),u>>>=4,l-=4,286>>=3,l-=3}for(;r.have<19;)r.lens[A[r.have++]]=0;if(r.lencode=r.lendyn,r.lenbits=7,S={bits:r.lenbits},x=T(0,r.lens,0,19,r.lencode,0,r.work,S),r.lenbits=S.bits,x){t.msg="invalid code lengths set",r.mode=30;break}r.have=0,r.mode=19;case 19:for(;r.have>>16&255,b=65535&C,!((_=C>>>24)<=l);){if(0===o)break t;o--,u+=i[s++]<>>=_,l-=_,r.lens[r.have++]=b;else{if(16===b){for(z=_+2;l>>=_,l-=_,0===r.have){t.msg="invalid bit length repeat",r.mode=30;break}k=r.lens[r.have-1],c=3+(3&u),u>>>=2,l-=2}else if(17===b){for(z=_+3;l>>=_)),u>>>=3,l-=3}else{for(z=_+7;l>>=_)),u>>>=7,l-=7}if(r.have+c>r.nlen+r.ndist){t.msg="invalid bit length repeat",r.mode=30;break}for(;c--;)r.lens[r.have++]=k}}if(30===r.mode)break;if(0===r.lens[256]){t.msg="invalid code -- missing end-of-block",r.mode=30;break}if(r.lenbits=9,S={bits:r.lenbits},x=T(D,r.lens,0,r.nlen,r.lencode,0,r.work,S),r.lenbits=S.bits,x){t.msg="invalid literal/lengths set",r.mode=30;break}if(r.distbits=6,r.distcode=r.distdyn,S={bits:r.distbits},x=T(F,r.lens,r.nlen,r.ndist,r.distcode,0,r.work,S),r.distbits=S.bits,x){t.msg="invalid distances set",r.mode=30;break}if(r.mode=20,6===e)break t;case 20:r.mode=21;case 21:if(6<=o&&258<=h){t.next_out=a,t.avail_out=h,t.next_in=s,t.avail_in=o,r.hold=u,r.bits=l,R(t,d),a=t.next_out,n=t.output,h=t.avail_out,s=t.next_in,i=t.input,o=t.avail_in,u=r.hold,l=r.bits,12===r.mode&&(r.back=-1);break}for(r.back=0;g=(C=r.lencode[u&(1<>>16&255,b=65535&C,!((_=C>>>24)<=l);){if(0===o)break t;o--,u+=i[s++]<>v)])>>>16&255,b=65535&C,!(v+(_=C>>>24)<=l);){if(0===o)break t;o--,u+=i[s++]<>>=v,l-=v,r.back+=v}if(u>>>=_,l-=_,r.back+=_,r.length=b,0===g){r.mode=26;break}if(32&g){r.back=-1,r.mode=12;break}if(64&g){t.msg="invalid literal/length code",r.mode=30;break}r.extra=15&g,r.mode=22;case 22:if(r.extra){for(z=r.extra;l>>=r.extra,l-=r.extra,r.back+=r.extra}r.was=r.length,r.mode=23;case 23:for(;g=(C=r.distcode[u&(1<>>16&255,b=65535&C,!((_=C>>>24)<=l);){if(0===o)break t;o--,u+=i[s++]<>v)])>>>16&255,b=65535&C,!(v+(_=C>>>24)<=l);){if(0===o)break t;o--,u+=i[s++]<>>=v,l-=v,r.back+=v}if(u>>>=_,l-=_,r.back+=_,64&g){t.msg="invalid distance code",r.mode=30;break}r.offset=b,r.extra=15&g,r.mode=24;case 24:if(r.extra){for(z=r.extra;l>>=r.extra,l-=r.extra,r.back+=r.extra}if(r.offset>r.dmax){t.msg="invalid distance too far back",r.mode=30;break}r.mode=25;case 25:if(0===h)break t;if(c=d-h,r.offset>c){if((c=r.offset-c)>r.whave&&r.sane){t.msg="invalid distance too far back",r.mode=30;break}p=c>r.wnext?(c-=r.wnext,r.wsize-c):r.wnext-c,c>r.length&&(c=r.length),m=r.window}else m=n,p=a-r.offset,c=r.length;for(hc?(m=R[T+a[v]],A[I+a[v]]):(m=96,0),h=1<>S)+(u-=h)]=p<<24|m<<16|_|0,0!==u;);for(h=1<>=1;if(0!==h?(E&=h-1,E+=h):E=0,v++,0==--O[b]){if(b===w)break;b=e[r+a[v]]}if(k>>7)]}function U(t,e){t.pending_buf[t.pending++]=255&e,t.pending_buf[t.pending++]=e>>>8&255}function P(t,e,r){t.bi_valid>c-r?(t.bi_buf|=e<>c-t.bi_valid,t.bi_valid+=r-c):(t.bi_buf|=e<>>=1,r<<=1,0<--e;);return r>>>1}function Z(t,e,r){var i,n,s=new Array(g+1),a=0;for(i=1;i<=g;i++)s[i]=a=a+r[i-1]<<1;for(n=0;n<=e;n++){var o=t[2*n+1];0!==o&&(t[2*n]=j(s[o]++,o))}}function W(t){var e;for(e=0;e>1;1<=r;r--)G(t,s,r);for(n=h;r=t.heap[1],t.heap[1]=t.heap[t.heap_len--],G(t,s,1),i=t.heap[1],t.heap[--t.heap_max]=r,t.heap[--t.heap_max]=i,s[2*n]=s[2*r]+s[2*i],t.depth[n]=(t.depth[r]>=t.depth[i]?t.depth[r]:t.depth[i])+1,s[2*r+1]=s[2*i+1]=n,t.heap[1]=n++,G(t,s,1),2<=t.heap_len;);t.heap[--t.heap_max]=t.heap[1],function(t,e){var r,i,n,s,a,o,h=e.dyn_tree,u=e.max_code,l=e.stat_desc.static_tree,f=e.stat_desc.has_stree,d=e.stat_desc.extra_bits,c=e.stat_desc.extra_base,p=e.stat_desc.max_length,m=0;for(s=0;s<=g;s++)t.bl_count[s]=0;for(h[2*t.heap[t.heap_max]+1]=0,r=t.heap_max+1;r<_;r++)p<(s=h[2*h[2*(i=t.heap[r])+1]+1]+1)&&(s=p,m++),h[2*i+1]=s,u>=7;i>>=1)if(1&r&&0!==t.dyn_ltree[2*e])return o;if(0!==t.dyn_ltree[18]||0!==t.dyn_ltree[20]||0!==t.dyn_ltree[26])return h;for(e=32;e>>3,(s=t.static_len+3+7>>>3)<=n&&(n=s)):n=s=r+5,r+4<=n&&-1!==e?J(t,e,r,i):4===t.strategy||s===n?(P(t,2+(i?1:0),3),K(t,z,C)):(P(t,4+(i?1:0),3),function(t,e,r,i){var n;for(P(t,e-257,5),P(t,r-1,5),P(t,i-4,4),n=0;n>>8&255,t.pending_buf[t.d_buf+2*t.last_lit+1]=255&e,t.pending_buf[t.l_buf+t.last_lit]=255&r,t.last_lit++,0===e?t.dyn_ltree[2*r]++:(t.matches++,e--,t.dyn_ltree[2*(A[r]+u+1)]++,t.dyn_dtree[2*N(e)]++),t.last_lit===t.lit_bufsize-1},r._tr_align=function(t){P(t,2,3),L(t,m,z),function(t){16===t.bi_valid?(U(t,t.bi_buf),t.bi_buf=0,t.bi_valid=0):8<=t.bi_valid&&(t.pending_buf[t.pending++]=255&t.bi_buf,t.bi_buf>>=8,t.bi_valid-=8)}(t)}},{"../utils/common":41}],53:[function(t,e,r){"use strict";e.exports=function(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}},{}],54:[function(t,e,r){"use strict";e.exports="function"==typeof setImmediate?setImmediate:function(){var t=[].slice.apply(arguments);t.splice(1,0,0),setTimeout.apply(null,t)}},{}]},{},[10])(10)}); \ No newline at end of file diff --git a/docs/legal/ADDITIONAL_LICENSE_INFO b/docs/legal/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/docs/legal/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/docs/legal/ASSEMBLY_EXCEPTION b/docs/legal/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/docs/legal/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/docs/legal/LICENSE b/docs/legal/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/docs/legal/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/docs/legal/jquery.md b/docs/legal/jquery.md new file mode 100644 index 0000000..d468b31 --- /dev/null +++ b/docs/legal/jquery.md @@ -0,0 +1,72 @@ +## jQuery v3.6.1 + +### jQuery License +``` +jQuery v 3.6.1 +Copyright OpenJS Foundation and other contributors, https://openjsf.org/ + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +****************************************** + +The jQuery JavaScript Library v3.6.1 also includes Sizzle.js + +Sizzle.js includes the following license: + +Copyright JS Foundation and other contributors, https://js.foundation/ + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/jquery/sizzle + +The following license applies to all parts of this software except as +documented below: + +==== + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +==== + +All files located in the node_modules and external directories are +externally maintained libraries used by this software which have their +own licenses; we recommend you read them, as their terms may differ from +the terms above. + +********************* + +``` diff --git a/docs/legal/jqueryUI.md b/docs/legal/jqueryUI.md new file mode 100644 index 0000000..8bda9d7 --- /dev/null +++ b/docs/legal/jqueryUI.md @@ -0,0 +1,49 @@ +## jQuery UI v1.13.2 + +### jQuery UI License +``` +Copyright jQuery Foundation and other contributors, https://jquery.org/ + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/jquery/jquery-ui + +The following license applies to all parts of this software except as +documented below: + +==== + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +==== + +Copyright and related rights for sample code are waived via CC0. Sample +code is defined as all source code contained within the demos directory. + +CC0: http://creativecommons.org/publicdomain/zero/1.0/ + +==== + +All files located in the node_modules and external directories are +externally maintained libraries used by this software which have their +own licenses; we recommend you read them, as their terms may differ from +the terms above. + +``` diff --git a/docs/legal/jszip.md b/docs/legal/jszip.md new file mode 100644 index 0000000..fad2cb1 --- /dev/null +++ b/docs/legal/jszip.md @@ -0,0 +1,653 @@ +## JSZip v3.7.1 + +JSZip is dual licensed. You may use it under the MIT license *or* the GPLv3 +license. + +### The MIT License +``` +Copyright (c) 2009-2016 Stuart Knightley, David Duponchel, Franz Buchinger, António Afonso + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +``` + +### GPL version 3 +``` + + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS +``` diff --git a/docs/legal/pako.md b/docs/legal/pako.md new file mode 100644 index 0000000..de339d8 --- /dev/null +++ b/docs/legal/pako.md @@ -0,0 +1,45 @@ +## Pako v1.0 + +### Pako License +
    +Copyright (C) 2014-2017 by Vitaly Puzrin and Andrei Tuputcyn
    +
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
    +
    +The above copyright notice and this permission notice shall be included in
    +all copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    +THE SOFTWARE.
    +(C) 1995-2013 Jean-loup Gailly and Mark Adler
    +(C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
    +
    +This software is provided 'as-is', without any express or implied
    +warranty. In no event will the authors be held liable for any damages
    +arising from the use of this software.
    +
    +Permission is granted to anyone to use this software for any purpose,
    +including commercial applications, and to alter it and redistribute it
    +freely, subject to the following restrictions:
    +
    +1. The origin of this software must not be misrepresented; you must not
    +claim that you wrote the original software. If you use this software
    +in a product, an acknowledgment in the product documentation would be
    +appreciated but is not required.
    +2. Altered source versions must be plainly marked as such, and must not be
    + misrepresented as being the original software.
    +3. This notice may not be removed or altered from any source distribution.
    +
    +
    + + diff --git a/docs/member-search-index.js b/docs/member-search-index.js index 1667147..6f30a02 100644 --- a/docs/member-search-index.js +++ b/docs/member-search-index.js @@ -1 +1 @@ -memberSearchIndex = [{"p":"com.nuix.superutilities.cases","c":"CaseIssueReaction","l":"Abort"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"abort()"},{"p":"com.nuix.superutilities.cases","c":"CaseLockedEventInfo","l":"abort()"},{"p":"com.nuix.superutilities.cases","c":"CaseOpenErrorEvent","l":"abort()"},{"p":"com.nuix.superutilities.cases","c":"WorkFunctionErrorEvent","l":"abort()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"abortScan()"},{"p":"com.nuix.superutilities.cases","c":"CaseConsumer","l":"acceptCase(Case, CaseInfo, int, int)","url":"acceptCase(nuix.Case,com.nuix.superutilities.cases.CaseInfo,int,int)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"add(int, String)","url":"add(int,java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"add(String)","url":"add(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"addAll(Collection)","url":"addAll(java.util.Collection)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"addAll(int, Collection)","url":"addAll(int,java.util.Collection)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"addAllBuiltInEntities()"},{"p":"com.nuix.superutilities.cases","c":"BulkCaseProcessor","l":"addCaseDirectory(File)","url":"addCaseDirectory(java.io.File)"},{"p":"com.nuix.superutilities.cases","c":"BulkCaseProcessor","l":"addCaseDirectory(String)","url":"addCaseDirectory(java.lang.String)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"addColCriterion(NamedQuery)","url":"addColCriterion(com.nuix.superutilities.reporting.NamedQuery)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"addColCriterion(String, String)","url":"addColCriterion(java.lang.String,java.lang.String)"},{"p":"com.nuix.superutilities.reporting","c":"ColorRing","l":"addColor(int, int, int)","url":"addColor(int,int,int)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"addEntityNames(Collection)","url":"addEntityNames(java.util.Collection)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"addExpression(String)","url":"addExpression(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"addItem(Item)","url":"addItem(nuix.Item)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"addItems(Collection)","url":"addItems(java.util.Collection)"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"addItemsToItemSet(Case, String, String, Collection)","url":"addItemsToItemSet(nuix.Case,java.lang.String,java.lang.String,java.util.Collection)"},{"p":"com.nuix.superutilities.regex","c":"ItemRegexMatchCollection","l":"addMatch(PatternInfo, String, boolean, String, String, int, int)","url":"addMatch(com.nuix.superutilities.regex.PatternInfo,java.lang.String,boolean,java.lang.String,java.lang.String,int,int)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"addMd5(byte[])"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"addMd5(String)","url":"addMd5(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"FreeSpaceMonitor","l":"addMonitoredLocation(String, double)","url":"addMonitoredLocation(java.lang.String,double)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"addNamedEntity(String)","url":"addNamedEntity(java.lang.String)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"addPattern(String, String)","url":"addPattern(java.lang.String,java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"addPhrase(String)","url":"addPhrase(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"addPhrases(Collection)","url":"addPhrases(java.util.Collection)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptLoadFile","l":"addRecord(OptRecord)","url":"addRecord(com.nuix.superutilities.loadfiles.OptRecord)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"addRowCriterion(NamedQuery)","url":"addRowCriterion(com.nuix.superutilities.reporting.NamedQuery)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"addRowCriterion(String, String)","url":"addRowCriterion(java.lang.String,java.lang.String)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"addScriptedValueGenerator(String, BiFunction)","url":"addScriptedValueGenerator(java.lang.String,java.util.function.BiFunction)"},{"p":"com.nuix.superutilities.reporting","c":"ColorRing","l":"addTintSeries(Color, int)","url":"addTintSeries(com.aspose.cells.Color,int)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationEvent","l":"AnnotationEvent()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"AnnotationHistoryRepository(File)","url":"%3Cinit%3E(java.io.File)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"AnnotationHistoryRepository(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepositorySummary","l":"AnnotationHistoryRepositorySummary()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"AnnotationRepository(File)","url":"%3Cinit%3E(java.io.File)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"AnnotationRepository(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationSyncSettings","l":"AnnotationSyncSettings()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.reporting","c":"SimpleWorksheet","l":"appendRow(List)","url":"appendRow(java.util.List)"},{"p":"com.nuix.superutilities.reporting","c":"SimpleWorksheet","l":"appendRow(List, Style)","url":"appendRow(java.util.List,com.aspose.cells.Style)"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"applyHighlight(MarkupSet)","url":"applyHighlight(nuix.MarkupSet)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"applyMarkupsFromDatabaseToCase(Case, boolean, AnnotationMatchingMethod)","url":"applyMarkupsFromDatabaseToCase(nuix.Case,boolean,com.nuix.superutilities.annotations.AnnotationMatchingMethod)"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"applyRedaction(MarkupSet)","url":"applyRedaction(nuix.MarkupSet)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"applyTagsFromDatabaseToCase(Case, AnnotationMatchingMethod)","url":"applyTagsFromDatabaseToCase(nuix.Case,com.nuix.superutilities.annotations.AnnotationMatchingMethod)"},{"p":"com.nuix.superutilities.cases","c":"CaseUtility","l":"archiveCase(File, File, boolean, int)","url":"archiveCase(java.io.File,java.io.File,boolean,int)"},{"p":"com.nuix.superutilities.cases","c":"CaseUtility","l":"archiveCase(String, String, boolean, int)","url":"archiveCase(java.lang.String,java.lang.String,boolean,int)"},{"p":"com.nuix.superutilities.reporting","c":"AsposeCellsColorHelper","l":"AsposeCellsColorHelper()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.reporting","c":"AsposeCellsStyleHelper","l":"AsposeCellsStyleHelper()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.reporting","c":"SimpleWorksheet","l":"autoFitColumns()"},{"p":"com.nuix.superutilities.reporting","c":"SimpleWorksheet","l":"autoFitRow(int)"},{"p":"com.nuix.superutilities.cases","c":"BulkCaseProcessor","l":"beforeOpeningCase(Consumer)","url":"beforeOpeningCase(java.util.function.Consumer)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"beforeSerialization(Consumer>)","url":"beforeSerialization(java.util.function.Consumer)"},{"p":"com.nuix.superutilities.misc","c":"FreeSpaceMonitor","l":"beginMonitoring()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationSyncSettings","l":"buildSettingsSummary()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"buildSummary()"},{"p":"com.nuix.superutilities.cases","c":"BulkCaseProcessor","l":"BulkCaseProcessor()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactor","l":"BulkRedactor()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorProgressInfo","l":"BulkRedactorProgressInfo()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"BulkRedactorSettings()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"bytesToDynamicSize(long, int)","url":"bytesToDynamicSize(long,int)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"bytesToGigaBytes(long, int)","url":"bytesToGigaBytes(long,int)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"bytesToHex(byte[])"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"bytesToKiloBytes(long, int)","url":"bytesToKiloBytes(long,int)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"bytesToMegaBytes(long, int)","url":"bytesToMegaBytes(long,int)"},{"p":"com.nuix.superutilities.misc","c":"LevenshteinDistance","l":"calculate(String, String)","url":"calculate(java.lang.String,java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"FuzzyTermInfo","l":"calculateJaroWinklerSimilarityTo(String)","url":"calculateJaroWinklerSimilarityTo(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"calculateLastDbEventStart()"},{"p":"com.nuix.superutilities.misc","c":"FuzzyTermInfo","l":"calculateLuceneLevenshteinSimilarityTo(String)","url":"calculateLuceneLevenshteinSimilarityTo(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"FuzzyTermInfo","l":"calculateNGramSimilarityTo(String)","url":"calculateNGramSimilarityTo(java.lang.String)"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"caseExists()"},{"p":"com.nuix.superutilities.cases","c":"CaseHistoryHelper","l":"CaseHistoryHelper(Case, List, DateTime, DateTime)","url":"%3Cinit%3E(nuix.Case,java.util.List,org.joda.time.DateTime,org.joda.time.DateTime)"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"CaseInfo(File)","url":"%3Cinit%3E(java.io.File)"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"CaseInfo(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.nuix.superutilities.cases","c":"CaseLockedEventInfo","l":"CaseLockedEventInfo(CaseInfo)","url":"%3Cinit%3E(com.nuix.superutilities.cases.CaseInfo)"},{"p":"com.nuix.superutilities.cases","c":"CaseLockInfo","l":"CaseLockInfo()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.cases","c":"CaseOpenErrorEvent","l":"CaseOpenErrorEvent(CaseInfo, Exception)","url":"%3Cinit%3E(com.nuix.superutilities.cases.CaseInfo,java.lang.Exception)"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"ChunkedDATExporter()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter.ChunkInfo","l":"chunkIndex"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter.ChunkInfo","l":"ChunkInfo(int)","url":"%3Cinit%3E(int)"},{"p":"com.nuix.superutilities.misc","c":"PlaceholderResolver","l":"cleanPathString(String)","url":"cleanPathString(java.lang.String)"},{"p":"com.nuix.superutilities.export","c":"PdfWorkCache","l":"cleanupTemporaryPdfs()"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"clear()"},{"p":"com.nuix.superutilities.misc","c":"PlaceholderResolver","l":"clear()"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"clearAllDynamicPlaholders()"},{"p":"com.nuix.superutilities.reporting","c":"ColorRing","l":"clearColors()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"clearEntityNames()"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"clearRowCriteria()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"close()"},{"p":"com.nuix.superutilities.loadfiles","c":"SimpleTextFileWriter","l":"close()"},{"p":"com.nuix.superutilities.misc","c":"SQLiteBacked","l":"close()"},{"p":"com.nuix.superutilities.reporting","c":"SimpleXlsx","l":"close()"},{"p":"com.nuix.superutilities.reporting","c":"ColorRing","l":"ColorRing()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.reporting","c":"ColumnValueGenerator","l":"ColumnValueGenerator()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"combineDigestFiles(File, Collection)","url":"combineDigestFiles(java.io.File,java.util.Collection)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"combineDigestFiles(String, Collection)","url":"combineDigestFiles(java.lang.String,java.util.Collection)"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"compareTo(NuixVersion)","url":"compareTo(com.nuix.superutilities.misc.NuixVersion)"},{"p":"com.nuix.superutilities.regex","c":"PatternInfo","l":"compile(boolean, boolean, boolean)","url":"compile(boolean,boolean,boolean)"},{"p":"com.nuix.superutilities.misc","c":"ZipHelper","l":"compressDirectoryToSevenZipFile(String, String)","url":"compressDirectoryToSevenZipFile(java.lang.String,java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"ZipHelper","l":"compressDirectoryToZipFile(String, String, int)","url":"compressDirectoryToZipFile(java.lang.String,java.lang.String,int)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"contains(Object)","url":"contains(java.lang.Object)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"containsAll(Collection)","url":"containsAll(java.util.Collection)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"containsMd5(byte[])"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"containsMd5(String)","url":"containsMd5(java.lang.String)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"convertItemToJsonString(Item)","url":"convertItemToJsonString(nuix.Item)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"convertSourceItemToJsonString(SourceItem)","url":"convertSourceItemToJsonString(nuix.SourceItem)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"convertToString(Object)","url":"convertToString(java.lang.Object)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"convertWorkerItemToJsonString(WorkerItem)","url":"convertWorkerItemToJsonString(nuix.WorkerItem)"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"createBulkCaseProcessor()"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"createCaseHistoryHelper(Case, List, DateTime, DateTime)","url":"createCaseHistoryHelper(nuix.Case,java.util.List,org.joda.time.DateTime,org.joda.time.DateTime)"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"createFreeSpaceMonitor()"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"createJsonExporter()"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"createRegexScanner()"},{"p":"com.nuix.superutilities.reporting","c":"SimpleXlsx","l":"createStyle()"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"createTemplateExporter(File)","url":"createTemplateExporter(java.io.File)"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"createTemplateExporter(String)","url":"createTemplateExporter(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"PdfUtility","l":"createWaterMarkedPdf(File, File, String, int, float, float)","url":"createWaterMarkedPdf(java.io.File,java.io.File,java.lang.String,int,float,float)"},{"p":"com.nuix.superutilities.misc","c":"PdfUtility","l":"createWaterMarkedPdf(String, String, String, int, float, float)","url":"createWaterMarkedPdf(java.lang.String,java.lang.String,java.lang.String,int,float,float)"},{"p":"com.nuix.superutilities.annotations","c":"CustodianEvent","l":"CustodianEvent()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"CustomExporter()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.annotations","c":"CustomMetadataEvent","l":"CustomMetadataEvent()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFile","l":"DatLoadFile()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFileReader","l":"DatLoadFileReader()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFileWriter","l":"DatLoadFileWriter(File)","url":"%3Cinit%3E(java.io.File)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"debugString(Exception)","url":"debugString(java.lang.Exception)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"debugString(Map)","url":"debugString(java.util.Map)"},{"p":"com.nuix.superutilities.items","c":"SuperItemUtility","l":"deduplicateCustomTieBreaker(Collection, BiFunction)","url":"deduplicateCustomTieBreaker(java.util.Collection,java.util.function.BiFunction)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"DigestList()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"DigestList(File...)","url":"%3Cinit%3E(java.io.File...)"},{"p":"com.nuix.superutilities.misc","c":"DriveSpaceInfo","l":"DriveSpaceInfo(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.nuix.superutilities.reporting","c":"SimpleWorksheet","l":"eachCell(int, int, int, int, Consumer)","url":"eachCell(int,int,int,int,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"eachDigest(File, Consumer)","url":"eachDigest(java.io.File,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"eachRecordedCustodianEvent(DateTime, Consumer)","url":"eachRecordedCustodianEvent(org.joda.time.DateTime,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"eachRecordedCustodianEvent(long, Consumer)","url":"eachRecordedCustodianEvent(long,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"eachRecordedCustomMetadataEvent(DateTime, Consumer)","url":"eachRecordedCustomMetadataEvent(org.joda.time.DateTime,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"eachRecordedCustomMetadataEvent(long, Consumer)","url":"eachRecordedCustomMetadataEvent(long,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"eachRecordedExclusionEvent(DateTime, Consumer)","url":"eachRecordedExclusionEvent(org.joda.time.DateTime,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"eachRecordedExclusionEvent(long, Consumer)","url":"eachRecordedExclusionEvent(long,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"eachRecordedItemSetEvent(DateTime, Consumer)","url":"eachRecordedItemSetEvent(org.joda.time.DateTime,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"eachRecordedItemSetEvent(long, Consumer)","url":"eachRecordedItemSetEvent(long,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"eachRecordedProductionSetEvent(DateTime, Consumer)","url":"eachRecordedProductionSetEvent(org.joda.time.DateTime,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"eachRecordedProductionSetEvent(long, Consumer)","url":"eachRecordedProductionSetEvent(long,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"eachRecordedTagEvent(DateTime, Consumer)","url":"eachRecordedTagEvent(org.joda.time.DateTime,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"eachRecordedTagEvent(long, Consumer)","url":"eachRecordedTagEvent(long,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.reporting","c":"AsposeCellsStyleHelper","l":"enableAllBorders(Style)","url":"enableAllBorders(com.aspose.cells.Style)"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"equals(Object)","url":"equals(java.lang.Object)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"equals(Object)","url":"equals(java.lang.Object)"},{"p":"com.nuix.superutilities.query","c":"QueryHelper","l":"escapeForSearch(String)","url":"escapeForSearch(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"escapeRegexSpecialCharacters(String)","url":"escapeRegexSpecialCharacters(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"escapeTagForSearch(String)","url":"escapeTagForSearch(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"ExclusionEvent","l":"ExclusionEvent()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"executeInsert(String, List)","url":"executeInsert(java.lang.String,java.util.List)"},{"p":"com.nuix.superutilities.misc","c":"SQLiteBacked","l":"executeInsert(String, List)","url":"executeInsert(java.lang.String,java.util.List)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"executeInsert(String, Object...)","url":"executeInsert(java.lang.String,java.lang.Object...)"},{"p":"com.nuix.superutilities.misc","c":"SQLiteBacked","l":"executeInsert(String, Object...)","url":"executeInsert(java.lang.String,java.lang.Object...)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"executeLongScalar(String)","url":"executeLongScalar(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"SQLiteBacked","l":"executeLongScalar(String)","url":"executeLongScalar(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"executeLongScalar(String, List)","url":"executeLongScalar(java.lang.String,java.util.List)"},{"p":"com.nuix.superutilities.misc","c":"SQLiteBacked","l":"executeLongScalar(String, List)","url":"executeLongScalar(java.lang.String,java.util.List)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"executeLongScalar(String, Object...)","url":"executeLongScalar(java.lang.String,java.lang.Object...)"},{"p":"com.nuix.superutilities.misc","c":"SQLiteBacked","l":"executeLongScalar(String, Object...)","url":"executeLongScalar(java.lang.String,java.lang.Object...)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"executeQuery(String, List, Consumer)","url":"executeQuery(java.lang.String,java.util.List,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.misc","c":"SQLiteBacked","l":"executeQuery(String, List, Consumer)","url":"executeQuery(java.lang.String,java.util.List,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"executeScalar(String, Object...)","url":"executeScalar(java.lang.String,java.lang.Object...)"},{"p":"com.nuix.superutilities.misc","c":"SQLiteBacked","l":"executeScalar(String, Object...)","url":"executeScalar(java.lang.String,java.lang.Object...)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"executeStringScalar(String)","url":"executeStringScalar(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"SQLiteBacked","l":"executeStringScalar(String)","url":"executeStringScalar(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"executeStringScalar(String, List)","url":"executeStringScalar(java.lang.String,java.util.List)"},{"p":"com.nuix.superutilities.misc","c":"SQLiteBacked","l":"executeStringScalar(String, List)","url":"executeStringScalar(java.lang.String,java.util.List)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"executeStringScalar(String, Object...)","url":"executeStringScalar(java.lang.String,java.lang.Object...)"},{"p":"com.nuix.superutilities.misc","c":"SQLiteBacked","l":"executeStringScalar(String, Object...)","url":"executeStringScalar(java.lang.String,java.lang.Object...)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"executeUpdate(String)","url":"executeUpdate(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"SQLiteBacked","l":"executeUpdate(String)","url":"executeUpdate(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"executeUpdate(String, List)","url":"executeUpdate(java.lang.String,java.util.List)"},{"p":"com.nuix.superutilities.misc","c":"SQLiteBacked","l":"executeUpdate(String, List)","url":"executeUpdate(java.lang.String,java.util.List)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"executeUpdate(String, Object...)","url":"executeUpdate(java.lang.String,java.lang.Object...)"},{"p":"com.nuix.superutilities.misc","c":"SQLiteBacked","l":"executeUpdate(String, Object...)","url":"executeUpdate(java.lang.String,java.lang.Object...)"},{"p":"com.nuix.superutilities.misc","c":"ExpandedTermInfo","l":"ExpandedTermInfo()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.misc","c":"TermExpander","l":"expandTerm(Case, boolean, boolean, String)","url":"expandTerm(nuix.Case,boolean,boolean,java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"TermExpander","l":"expandTerm(Case, boolean, boolean, String, String)","url":"expandTerm(nuix.Case,boolean,boolean,java.lang.String,java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"TermExpander","l":"expandTerm(Case, String)","url":"expandTerm(nuix.Case,java.lang.String)"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"export(List)","url":"export(java.util.List)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"exportItemAsJson(Item, File)","url":"exportItemAsJson(nuix.Item,java.io.File)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"exportItems(Case, File, List)","url":"exportItems(nuix.Case,java.io.File,java.util.List)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"exportItems(Case, String, List)","url":"exportItems(nuix.Case,java.lang.String,java.util.List)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"exportJson(String)","url":"exportJson(java.lang.String)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"exportJson(String, JsonExporter)","url":"exportJson(java.lang.String,com.nuix.superutilities.export.JsonExporter)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"exportNatives(String, Map)","url":"exportNatives(java.lang.String,java.util.Map)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"exportPdfs(String, Map)","url":"exportPdfs(java.lang.String,java.util.Map)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"exportSourceItemAsJson(SourceItem, File)","url":"exportSourceItemAsJson(nuix.SourceItem,java.io.File)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"exportText(String, Map)","url":"exportText(java.lang.String,java.util.Map)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"exportTiffs(String, Map)","url":"exportTiffs(java.lang.String,java.util.Map)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"exportWorkerItemAsJson(WorkerItem, File)","url":"exportWorkerItemAsJson(nuix.WorkerItem,java.io.File)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactor","l":"findAndMarkup(Case, BulkRedactorSettings, Collection, int)","url":"findAndMarkup(nuix.Case,com.nuix.superutilities.annotations.BulkRedactorSettings,java.util.Collection,int)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReport","l":"findBatchLoadsInDateRange(Case, DateTime, DateTime)","url":"findBatchLoadsInDateRange(nuix.Case,org.joda.time.DateTime,org.joda.time.DateTime)"},{"p":"com.nuix.superutilities.cases","c":"CaseUtility","l":"findCaseDirectories(File)","url":"findCaseDirectories(java.io.File)"},{"p":"com.nuix.superutilities.cases","c":"CaseUtility","l":"findCaseDirectories(String)","url":"findCaseDirectories(java.lang.String)"},{"p":"com.nuix.superutilities.cases","c":"CaseUtility","l":"findCaseDirectoryPaths(File)","url":"findCaseDirectoryPaths(java.io.File)"},{"p":"com.nuix.superutilities.cases","c":"CaseUtility","l":"findCaseDirectoryPaths(String)","url":"findCaseDirectoryPaths(java.lang.String)"},{"p":"com.nuix.superutilities.cases","c":"CaseUtility","l":"findCaseInformation(File)","url":"findCaseInformation(java.io.File)"},{"p":"com.nuix.superutilities.cases","c":"CaseUtility","l":"findCaseInformation(String)","url":"findCaseInformation(java.lang.String)"},{"p":"com.nuix.superutilities.items","c":"SuperItemUtility","l":"findContainerAncestor(Item)","url":"findContainerAncestor(nuix.Item)"},{"p":"com.nuix.superutilities.items","c":"SuperItemUtility","l":"findContainerAncestors(Collection)","url":"findContainerAncestors(java.util.Collection)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactor","l":"findExpressionsInPdfFile(File, Collection)","url":"findExpressionsInPdfFile(java.io.File,java.util.Collection)"},{"p":"com.nuix.superutilities.items","c":"SuperItemUtility","l":"findFamiliesWithoutItemsResponsiveToQuery(Case, Collection, String)","url":"findFamiliesWithoutItemsResponsiveToQuery(nuix.Case,java.util.Collection,java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"findMatchingItems(Case)","url":"findMatchingItems(nuix.Case)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"findMatchingItems(Case, int)","url":"findMatchingItems(nuix.Case,int)"},{"p":"com.nuix.superutilities.items","c":"SuperItemUtility","l":"findPhysicalFileAncestor(Item)","url":"findPhysicalFileAncestor(nuix.Item)"},{"p":"com.nuix.superutilities.items","c":"SuperItemUtility","l":"findPhysicalFileAncestors(Collection)","url":"findPhysicalFileAncestors(java.util.Collection)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"forEach(Consumer)","url":"forEach(java.util.function.Consumer)"},{"p":"com.nuix.superutilities.export","c":"PdfWorkCache","l":"forgetItem(Item)","url":"forgetItem(nuix.Item)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"formatAsTextualTable(List>)","url":"formatAsTextualTable(java.util.List)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"formatNumber(double)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"formatNumber(int)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"formatNumber(long)"},{"p":"com.nuix.superutilities.misc","c":"FreeSpaceMonitor","l":"FreeSpaceMonitor()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"fromCaseDirectories(List)","url":"fromCaseDirectories(java.util.List)"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"fromCasePaths(List)","url":"fromCasePaths(java.util.List)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptLoadFile","l":"fromFile(File)","url":"fromFile(java.io.File)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptLoadFile","l":"fromFile(String)","url":"fromFile(java.lang.String)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"fromLine(String)","url":"fromLine(java.lang.String)"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFile","l":"fromLine(String[], String)","url":"fromLine(java.lang.String[],java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"FuzzyTermInfo","l":"FuzzyTermInfo()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReport","l":"generate(Case, String, IntersectionReportSheetConfiguration)","url":"generate(nuix.Case,java.lang.String,com.nuix.superutilities.reporting.IntersectionReportSheetConfiguration)"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"generateMd5Bytes(Item)","url":"generateMd5Bytes(nuix.Item)"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"generateMd5String(Item)","url":"generateMd5String(nuix.Item)"},{"p":"com.nuix.superutilities.reporting","c":"ColumnValueGenerator","l":"generateValue(Case, String)","url":"generateValue(nuix.Case,java.lang.String)"},{"p":"com.nuix.superutilities.reporting","c":"ScriptedColumnValueGenerator","l":"generateValue(Case, String)","url":"generateValue(nuix.Case,java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"get(int)"},{"p":"com.nuix.superutilities.misc","c":"PlaceholderResolver","l":"get(String)","url":"get(java.lang.String)"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getAccessedDateTime()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getAccessedDateTimeString()"},{"p":"com.nuix.superutilities.annotations","c":"CustomMetadataEvent","l":"getAdded()"},{"p":"com.nuix.superutilities.annotations","c":"ItemSetEvent","l":"getAdded()"},{"p":"com.nuix.superutilities.annotations","c":"TagEvent","l":"getAdded()"},{"p":"com.nuix.superutilities.cases","c":"BulkCaseProcessor","l":"getAllowCaseMigration()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"getAlwaysCreateTagOnImport()"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"getApplyHighLights()"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"getApplyRedactions()"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"getAsposeSourcePageRectangle()"},{"p":"com.nuix.superutilities.reporting","c":"SimpleXlsx","l":"getAsposeWorkbook()"},{"p":"com.nuix.superutilities.reporting","c":"SimpleWorksheet","l":"getAsposeWorksheet()"},{"p":"com.nuix.superutilities.annotations","c":"CustodianEvent","l":"getAssigned()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationEvent","l":"getAssociatedItems(Case)","url":"getAssociatedItems(nuix.Case)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"getBatchLoadMaxDate()"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"getBatchLoadMinDate()"},{"p":"com.nuix.superutilities.annotations","c":"ItemSetEvent","l":"getBatchName()"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"getBox()"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"getBugfix()"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"getBuild()"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"getBulkAnnotater()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getCaptureContextualText()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getCaseDirectory()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getCaseDirectoryPath()"},{"p":"com.nuix.superutilities.cases","c":"CaseLockInfo","l":"getCaseInfo()"},{"p":"com.nuix.superutilities.cases","c":"CaseLockedEventInfo","l":"getCaseInfo()"},{"p":"com.nuix.superutilities.cases","c":"CaseOpenErrorEvent","l":"getCaseInfo()"},{"p":"com.nuix.superutilities.cases","c":"WorkFunctionErrorEvent","l":"getCaseInfo()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getCaseSensitive()"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"getCaseUtility()"},{"p":"com.nuix.superutilities.reporting","c":"SimpleWorksheet","l":"getCell(int, int)","url":"getCell(int,int)"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getChildCaseCount()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getChildCases()"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"getChunkSize()"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReport","l":"getColCategoryColorRing()"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"getColCriteria()"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"getColPrimaryCategoryLabel()"},{"p":"com.nuix.superutilities.reporting","c":"ColumnValueGenerator","l":"getColumnLabel()"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"getConcurrency()"},{"p":"com.nuix.superutilities.regex","c":"ItemRegexMatchCollection","l":"getContentMatches()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionResults","l":"getContentTextUpdatedCount()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getContextSize()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getContextualSubString(CharSequence, int, int, int)","url":"getContextualSubString(java.lang.CharSequence,int,int,int)"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getCreationDateTime()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getCreationDateTimeString()"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorProgressInfo","l":"getCurrent()"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"getCurrent()"},{"p":"com.nuix.superutilities.reporting","c":"SimpleWorksheet","l":"getCurrentRow()"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"getCurrentVersion()"},{"p":"com.nuix.superutilities.annotations","c":"CustodianEvent","l":"getCustodian()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"getCustomMetadataFieldPrefix()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getCustomMetadataToScan()"},{"p":"com.nuix.superutilities.loadfiles","c":"SimpleTextFileWriter","l":"getDestinationFile()"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"getDigestCount(File)","url":"getDigestCount(java.io.File)"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"getDigestCustomField()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getDotall()"},{"p":"com.nuix.superutilities.cases","c":"CaseHistoryHelper","l":"getEarliestEventStart(Case)","url":"getEarliestEventStart(nuix.Case)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"getEntityNames()"},{"p":"com.nuix.superutilities.cases","c":"CaseOpenErrorEvent","l":"getError()"},{"p":"com.nuix.superutilities.cases","c":"WorkFunctionErrorEvent","l":"getError()"},{"p":"com.nuix.superutilities.misc","c":"DriveSpaceInfo","l":"getError()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanError","l":"getException()"},{"p":"com.nuix.superutilities.annotations","c":"ExclusionEvent","l":"getExcluded()"},{"p":"com.nuix.superutilities.annotations","c":"ExclusionEvent","l":"getExclusionName()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationEvent","l":"getExpectedItemCount()"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"getExportDirectory()"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"getExportXlsx()"},{"p":"com.nuix.superutilities.regex","c":"PatternInfo","l":"getExpression()"},{"p":"com.nuix.superutilities.regex","c":"RegexMatch","l":"getExpression()"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"getExpressions()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getFbi2File()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getFbi2FilePath()"},{"p":"com.nuix.superutilities.annotations","c":"CustomMetadataEvent","l":"getFieldName()"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"getFilenamePrefix()"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"getFilenameTimestamp()"},{"p":"com.nuix.superutilities.loadfiles","c":"OptLoadFile","l":"getFirstPageRecords()"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"getFolder()"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"getFormatUtility()"},{"p":"com.nuix.superutilities.misc","c":"DriveSpaceInfo","l":"getFreeBytes()"},{"p":"com.nuix.superutilities.misc","c":"DriveSpaceInfo","l":"getFreeGigaBytes()"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"getFreezePanes()"},{"p":"com.nuix.superutilities.misc","c":"TermExpander","l":"getFuzzyResolutionAlgorithm()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getGuid()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"getGuidRefInsertBatchSize()"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFile","l":"getHeadersFromRecord(LinkedHashMap)","url":"getHeadersFromRecord(java.util.LinkedHashMap)"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"getHeadersOnFirstChunkOnly()"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"getHeight()"},{"p":"com.nuix.superutilities.cases","c":"CaseLockInfo","l":"getHost()"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"getHtmlText(String)","url":"getHtmlText(java.lang.String)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"getId()"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"getIncludeChildGuids()"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"getIncludeCustomMetadata()"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"getIncludeItemText()"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"getIncludeParentGuid()"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"getIncludePathGuids()"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"getIncludeProperties()"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"getIncludeTags()"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"getIncludeText()"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"getInstance()"},{"p":"com.nuix.superutilities.cases","c":"CaseUtility","l":"getInstance()"},{"p":"com.nuix.superutilities.items","c":"SuperItemUtility","l":"getInstance()"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"getInstance()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"getIntegerInfo(String)","url":"getIntegerInfo(java.lang.String)"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getInvestigator()"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"getItem()"},{"p":"com.nuix.superutilities.regex","c":"ItemRegexMatchCollection","l":"getItem(Case)","url":"getItem(nuix.Case)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanError","l":"getItem(Case)","url":"getItem(nuix.Case)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanError","l":"getItemGuid()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"getItemId(Item)","url":"getItemId(nuix.Item)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"getItemMarkupCount()"},{"p":"com.nuix.superutilities.items","c":"SuperItemUtility","l":"getItemsAndNeighboringSiblings(List, int, int)","url":"getItemsAndNeighboringSiblings(java.util.List,int,int)"},{"p":"com.nuix.superutilities.annotations","c":"ItemSetEvent","l":"getItemSetName()"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"getItemUtility()"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"getJarDirectory()"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"getJarDirectoryPath()"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"getJarFile()"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"getJarFilePath()"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"getKeepOriginalDat()"},{"p":"com.nuix.superutilities.reporting","c":"ColumnValueGenerator","l":"getLabel()"},{"p":"com.nuix.superutilities.misc","c":"DriveSpaceInfo","l":"getLastUpdated()"},{"p":"com.nuix.superutilities.cases","c":"CaseHistoryHelper","l":"getLatestEventStart(Case)","url":"getLatestEventStart(nuix.Case)"},{"p":"com.nuix.superutilities.regex","c":"RegexMatch","l":"getLocation()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanError","l":"getLocation()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getLockProperties()"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"getMajor()"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"getMarkupSet(Case)","url":"getMarkupSet(nuix.Case)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"getMarkupSetId(MarkupSet)","url":"getMarkupSetId(nuix.MarkupSet)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"getMarkupSetName()"},{"p":"com.nuix.superutilities.regex","c":"ItemRegexMatchCollection","l":"getMatchCount()"},{"p":"com.nuix.superutilities.misc","c":"ExpandedTermInfo","l":"getMatchedTerm()"},{"p":"com.nuix.superutilities.regex","c":"RegexMatch","l":"getMatchEnd()"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorProgressInfo","l":"getMatches()"},{"p":"com.nuix.superutilities.regex","c":"ItemRegexMatchCollection","l":"getMatches()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getMatchNamedEntityValues()"},{"p":"com.nuix.superutilities.regex","c":"RegexMatch","l":"getMatchStart()"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"getMinor()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getMultiline()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getName()"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"getName()"},{"p":"com.nuix.superutilities.reporting","c":"NamedQuery","l":"getName()"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"getNamedEntityTypes()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getNamedEntityTypes()"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"getNuixUtilities()"},{"p":"com.nuix.superutilities.misc","c":"ExpandedTermInfo","l":"getOcurrences()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"getOnlyRecordChanges()"},{"p":"com.nuix.superutilities.annotations","c":"ItemSetEvent","l":"getOrCreateRelatedItemSet(Case)","url":"getOrCreateRelatedItemSet(nuix.Case)"},{"p":"com.nuix.superutilities.misc","c":"ExpandedTermInfo","l":"getOriginalTerm()"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"getPageNumber()"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"getPages()"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"getPath()"},{"p":"com.nuix.superutilities.misc","c":"DriveSpaceInfo","l":"getPathString()"},{"p":"com.nuix.superutilities.regex","c":"PatternInfo","l":"getPattern()"},{"p":"com.nuix.superutilities.regex","c":"RegexMatch","l":"getPatternInfo()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanError","l":"getPatternInfo()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getPatterns()"},{"p":"com.nuix.superutilities.export","c":"PdfWorkCache","l":"getPdfPath(Item)","url":"getPdfPath(nuix.Item)"},{"p":"com.nuix.superutilities.items","c":"SuperItemUtility","l":"getPhysicalAncestorPath(Item)","url":"getPhysicalAncestorPath(nuix.Item)"},{"p":"com.nuix.superutilities.misc","c":"PlaceholderResolver","l":"getPlaceholderData()"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"getPrettyPrint()"},{"p":"com.nuix.superutilities.cases","c":"CaseLockInfo","l":"getProduct()"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"getProfile()"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"getProfile()"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"getProfile()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getPropertiesToScan()"},{"p":"com.nuix.superutilities.regex","c":"ItemRegexMatchCollection","l":"getPropertyMatches()"},{"p":"com.nuix.superutilities.reporting","c":"NamedQuery","l":"getQuery()"},{"p":"com.nuix.superutilities.cases","c":"CaseLockedEventInfo","l":"getReaction()"},{"p":"com.nuix.superutilities.cases","c":"CaseOpenErrorEvent","l":"getReaction()"},{"p":"com.nuix.superutilities.cases","c":"WorkFunctionErrorEvent","l":"getReaction()"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"getRecordDigest()"},{"p":"com.nuix.superutilities.loadfiles","c":"OptLoadFile","l":"getRecords()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"getRecordTimeOfRedaction()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"getRedactContentText()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"getRedactionReplacementTemplate()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"getRedactProperties()"},{"p":"com.nuix.superutilities.export","c":"PdfWorkCache","l":"getRegenerateStored()"},{"p":"com.nuix.superutilities.annotations","c":"ItemSetEvent","l":"getRelatedItemSet(Case)","url":"getRelatedItemSet(nuix.Case)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"getRowCategoryLabel()"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"getRowCriteria()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getSavedByName()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getSavedByVersion()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getScanContent()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getScanCustomMetadata()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getScanProperties()"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"getScopeQuery()"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"getSerializeNulls()"},{"p":"com.nuix.superutilities.annotations","c":"ItemSetEvent","l":"getSettings()"},{"p":"com.nuix.superutilities.reporting","c":"SimpleXlsx","l":"getSheet(String)","url":"getSheet(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"ExpandedTermInfo","l":"getSimilarity()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"getSnapshotFirstSync()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationEvent","l":"getSourceRepo()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"getSpecificProperties()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getStoreCount()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getStringCustomMetadata(Item, Set)","url":"getStringCustomMetadata(nuix.Item,java.util.Set)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getStringProperties(Item, Set)","url":"getStringProperties(nuix.Item,java.util.Set)"},{"p":"com.nuix.superutilities.reporting","c":"SimpleWorksheet","l":"getStyle(int, int)","url":"getStyle(int,int)"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"getSuperItemUtility()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationSyncSettings","l":"getSyncCustodianEvents()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationSyncSettings","l":"getSyncCustomMetadataEvents()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationSyncSettings","l":"getSyncExclusionEvents()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationSyncSettings","l":"getSyncItemSetEvents()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationSyncSettings","l":"getSyncProductionSetEvents()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationSyncSettings","l":"getSyncTagEvents()"},{"p":"com.nuix.superutilities.annotations","c":"TagEvent","l":"getTag()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"getTagId(String)","url":"getTagId(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"getTagsForGuid(String)","url":"getTagsForGuid(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"getTagsForMd5(String)","url":"getTagsForMd5(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"FuzzyTermInfo","l":"getTargetSimilarity()"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"getTempDirectory()"},{"p":"com.nuix.superutilities.misc","c":"FuzzyTermInfo","l":"getTerm()"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"getText()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"getTextInfo(String)","url":"getTextInfo(java.lang.String)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"getTimeOfRedactionFieldName()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationEvent","l":"getTimeStamp()"},{"p":"com.nuix.superutilities.reporting","c":"AsposeCellsColorHelper","l":"getTint(Color, float)","url":"getTint(com.aspose.cells.Color,float)"},{"p":"com.nuix.superutilities.reporting","c":"AsposeCellsColorHelper","l":"getTint(int, int, int, float)","url":"getTint(int,int,int,float)"},{"p":"com.nuix.superutilities.regex","c":"PatternInfo","l":"getTitle()"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorProgressInfo","l":"getTotal()"},{"p":"com.nuix.superutilities.misc","c":"DriveSpaceInfo","l":"getTotalBytes()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"getTotalEventCount()"},{"p":"com.nuix.superutilities.misc","c":"DriveSpaceInfo","l":"getTotalGigaBytes()"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"getUnitBase()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionResults","l":"getUpdatedItemCount()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionResults","l":"getUpdatedProperties()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionResults","l":"getUpdatedPropertyNames()"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"getUseExistingValueWhenPresent()"},{"p":"com.nuix.superutilities.cases","c":"CaseLockInfo","l":"getUser()"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"getUseSIUnits()"},{"p":"com.nuix.superutilities.annotations","c":"CustomMetadataEvent","l":"getValue()"},{"p":"com.nuix.superutilities.regex","c":"RegexMatch","l":"getValue()"},{"p":"com.nuix.superutilities.reporting","c":"SimpleWorksheet","l":"getValue(int, int)","url":"getValue(int,int)"},{"p":"com.nuix.superutilities.annotations","c":"CustomMetadataEvent","l":"getValueAsByteArray()"},{"p":"com.nuix.superutilities.annotations","c":"CustomMetadataEvent","l":"getValueAsDateTime()"},{"p":"com.nuix.superutilities.annotations","c":"CustomMetadataEvent","l":"getValueAsDouble()"},{"p":"com.nuix.superutilities.annotations","c":"CustomMetadataEvent","l":"getValueAsInteger()"},{"p":"com.nuix.superutilities.annotations","c":"CustomMetadataEvent","l":"getValueAsLong()"},{"p":"com.nuix.superutilities.annotations","c":"CustomMetadataEvent","l":"getValueAsString()"},{"p":"com.nuix.superutilities.regex","c":"RegexMatch","l":"getValueContext()"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"getValueGenerators()"},{"p":"com.nuix.superutilities.annotations","c":"CustomMetadataEvent","l":"getValueType()"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"getVolume()"},{"p":"com.nuix.superutilities.loadfiles","c":"OptLoadFile","l":"getVolumeNames()"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"getWidth()"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"getX()"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"getY()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationMatchingMethod","l":"GUID"},{"p":"com.nuix.superutilities.misc","c":"DriveSpaceInfo","l":"hadError()"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"hasBatchLoadDateCriteria()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"hashCode()"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"hashCode()"},{"p":"com.nuix.superutilities.cases","c":"CaseHistoryHelper","l":"hasNext()"},{"p":"com.nuix.superutilities.reporting","c":"ColorRing","l":"hasNext()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"hasSameGuidAs(Case)","url":"hasSameGuidAs(nuix.Case)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"hexToBytes(String)","url":"hexToBytes(java.lang.String)"},{"p":"com.nuix.superutilities.export","c":"TemplateExporter","l":"htmlToPdf(String, File)","url":"htmlToPdf(java.lang.String,java.io.File)"},{"p":"com.nuix.superutilities.export","c":"TemplateExporter","l":"htmlToPdf(String, String)","url":"htmlToPdf(java.lang.String,java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"importCaseLevelDigestList(Case, String)","url":"importCaseLevelDigestList(nuix.Case,java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"importFile(File)","url":"importFile(java.io.File)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"importFile(String)","url":"importFile(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"importSystemLevelDigestList(String)","url":"importSystemLevelDigestList(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"importUserLevelDigestList(String)","url":"importUserLevelDigestList(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"indexOf(Object)","url":"indexOf(java.lang.Object)"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"init(Utilities, String)","url":"init(nuix.Utilities,java.lang.String)"},{"p":"com.nuix.superutilities.reporting","c":"SimpleXlsx","l":"initializeAspose()"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReport","l":"IntersectionReport(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"IntersectionReportSheetConfiguration()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"isAtLeast(NuixVersion)","url":"isAtLeast(com.nuix.superutilities.misc.NuixVersion)"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"isAtLeast(String)","url":"isAtLeast(java.lang.String)"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"isCompound()"},{"p":"com.nuix.superutilities.regex","c":"RegexMatch","l":"isContentMatch()"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"isEmpty()"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"isEqualTo(NuixVersion)","url":"isEqualTo(com.nuix.superutilities.misc.NuixVersion)"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"isEqualTo(String)","url":"isEqualTo(java.lang.String)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"isFirstPage()"},{"p":"com.nuix.superutilities.misc","c":"FuzzyTermInfo","l":"isFuzzyTerm(String)","url":"isFuzzyTerm(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"isGreaterThan(NuixVersion)","url":"isGreaterThan(com.nuix.superutilities.misc.NuixVersion)"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"isGreaterThan(String)","url":"isGreaterThan(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"isLessThan(NuixVersion)","url":"isLessThan(com.nuix.superutilities.misc.NuixVersion)"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"isLessThan(String)","url":"isLessThan(java.lang.String)"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"isLocked()"},{"p":"com.nuix.superutilities.regex","c":"ItemRegexMatchCollection","l":"ItemRegexMatchCollection(Item)","url":"%3Cinit%3E(nuix.Item)"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter.ChunkInfo","l":"items"},{"p":"com.nuix.superutilities.items","c":"SuperItemUtility","l":"itemsAreSiblings(Item, Item)","url":"itemsAreSiblings(nuix.Item,nuix.Item)"},{"p":"com.nuix.superutilities.annotations","c":"ItemSetEvent","l":"ItemSetEvent()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"iterator()"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"iterator()"},{"p":"com.nuix.superutilities.misc","c":"SimilarityCalculation","l":"JaroWinkler"},{"p":"com.nuix.superutilities.query","c":"QueryHelper","l":"joinByAnd(Collection)","url":"joinByAnd(java.util.Collection)"},{"p":"com.nuix.superutilities.query","c":"QueryHelper","l":"joinByOr(Collection)","url":"joinByOr(java.util.Collection)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"JsonExporter()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"lastIndexOf(Object)","url":"lastIndexOf(java.lang.Object)"},{"p":"com.nuix.superutilities.misc","c":"LevenshteinDistance","l":"LevenshteinDistance()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"listIterator()"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"listIterator(int)"},{"p":"com.nuix.superutilities.misc","c":"SimilarityCalculation","l":"LuceneLevenshstein"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"makeGuidPath(Item, File, String)","url":"makeGuidPath(nuix.Item,java.io.File,java.lang.String)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"mapAddress(Address)","url":"mapAddress(nuix.Address)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"mapAddresses(List
    )","url":"mapAddresses(java.util.List)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"mapCommunication(Communication)","url":"mapCommunication(nuix.Communication)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"mapItem(Item)","url":"mapItem(nuix.Item)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"mapItemType(ItemType)","url":"mapItemType(nuix.ItemType)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"mapProperties(Map)","url":"mapProperties(java.util.Map)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"mapSourceItem(SourceItem)","url":"mapSourceItem(nuix.SourceItem)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"mapWorkerItem(WorkerItem)","url":"mapWorkerItem(nuix.WorkerItem)"},{"p":"com.nuix.superutilities.query","c":"QueryHelper","l":"markupSetQuery(MarkupSet)","url":"markupSetQuery(nuix.MarkupSet)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationMatchingMethod","l":"MD5"},{"p":"com.nuix.superutilities.reporting","c":"SimpleWorksheet","l":"mergeCols(int, int, int)","url":"mergeCols(int,int,int)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionResults","l":"mergeOther(NamedEntityRedactionResults)","url":"mergeOther(com.nuix.superutilities.namedentities.NamedEntityRedactionResults)"},{"p":"com.nuix.superutilities.misc","c":"PdfUtility","l":"mergePdfFiles(File, List, boolean, List)","url":"mergePdfFiles(java.io.File,java.util.List,boolean,java.util.List)"},{"p":"com.nuix.superutilities.misc","c":"PdfUtility","l":"mergePdfFiles(String, List, boolean, List)","url":"mergePdfFiles(java.lang.String,java.util.List,boolean,java.util.List)"},{"p":"com.nuix.superutilities.misc","c":"FreeSpaceMonitorEventCallback","l":"monitorEventOccurred(FreeSpaceMonitor, DriveSpaceInfo)","url":"monitorEventOccurred(com.nuix.superutilities.misc.FreeSpaceMonitor,com.nuix.superutilities.misc.DriveSpaceInfo)"},{"p":"com.nuix.superutilities.query","c":"QueryHelper","l":"namedEntityQuery(Collection)","url":"namedEntityQuery(java.util.Collection)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionResults","l":"NamedEntityRedactionResults()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"NamedEntityRedactionSettings()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityUtility","l":"NamedEntityUtility()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.reporting","c":"NamedQuery","l":"NamedQuery()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.reporting","c":"NamedQuery","l":"NamedQuery(String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"NamedStringList()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.cases","c":"CaseHistoryHelper","l":"next()"},{"p":"com.nuix.superutilities.reporting","c":"ColorRing","l":"next()"},{"p":"com.nuix.superutilities.misc","c":"SimilarityCalculation","l":"NGram"},{"p":"com.nuix.superutilities.query","c":"QueryHelper","l":"notJoinByAnd(Collection)","url":"notJoinByAnd(java.util.Collection)"},{"p":"com.nuix.superutilities.query","c":"QueryHelper","l":"notJoinByOr(Collection)","url":"notJoinByOr(java.util.Collection)"},{"p":"com.nuix.superutilities.misc","c":"SimilarityCalculation","l":"Nuix"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"NuixImageAnnotationRegion()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"NuixVersion()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"NuixVersion(int)","url":"%3Cinit%3E(int)"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"NuixVersion(int, int)","url":"%3Cinit%3E(int,int)"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"NuixVersion(int, int, int)","url":"%3Cinit%3E(int,int,int)"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"NuixVersion(int, int, int, int)","url":"%3Cinit%3E(int,int,int,int)"},{"p":"com.nuix.superutilities.cases","c":"BulkCaseProcessor","l":"onCaseIsLocked(Consumer)","url":"onCaseIsLocked(java.util.function.Consumer)"},{"p":"com.nuix.superutilities.cases","c":"BulkCaseProcessor","l":"onErrorOpeningCase(Consumer)","url":"onErrorOpeningCase(java.util.function.Consumer)"},{"p":"com.nuix.superutilities.cases","c":"BulkCaseProcessor","l":"onUserFunctionError(Consumer)","url":"onUserFunctionError(java.util.function.Consumer)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptLoadFile","l":"OptLoadFile()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"OptRecord()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.query","c":"QueryHelper","l":"orTagQuery(Collection)","url":"orTagQuery(java.util.Collection)"},{"p":"com.nuix.superutilities.query","c":"QueryHelper","l":"orTagQuery(String...)","url":"orTagQuery(java.lang.String...)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"parallelStream()"},{"p":"com.nuix.superutilities.query","c":"QueryHelper","l":"parenThenJoinByAnd(Collection)","url":"parenThenJoinByAnd(java.util.Collection)"},{"p":"com.nuix.superutilities.query","c":"QueryHelper","l":"parenThenJoinByOr(Collection)","url":"parenThenJoinByOr(java.util.Collection)"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"parse(String)","url":"parse(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"FuzzyTermInfo","l":"parseFuzzyTerm(String)","url":"parseFuzzyTerm(java.lang.String)"},{"p":"com.nuix.superutilities.regex","c":"PatternInfo","l":"PatternInfo(String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"PdfUtility","l":"PdfUtility()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.export","c":"PdfWorkCache","l":"PdfWorkCache(File)","url":"%3Cinit%3E(java.io.File)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"phraseToExpression(String)","url":"phraseToExpression(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"PlaceholderResolver","l":"PlaceholderResolver()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.annotations","c":"ProductionSetEvent","l":"ProductionSetEvent()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"ProfileDigester()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"ProfileDigester(MetadataProfile)","url":"%3Cinit%3E(nuix.MetadataProfile)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportProgressCallback","l":"progressUpdated(int, int)","url":"progressUpdated(int,int)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionProgressCallback","l":"progressUpdated(int, int, NamedEntityRedactionResults)","url":"progressUpdated(int,int,com.nuix.superutilities.namedentities.NamedEntityRedactionResults)"},{"p":"com.nuix.superutilities.query","c":"QueryHelper","l":"QueryHelper()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityUtility","l":"recordRedactedCopies(Case, Collection, NamedEntityRedactionSettings)","url":"recordRedactedCopies(nuix.Case,java.util.Collection,com.nuix.superutilities.namedentities.NamedEntityRedactionSettings)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityUtility","l":"recordRedactedCopies(Case, NamedEntityRedactionSettings)","url":"recordRedactedCopies(nuix.Case,com.nuix.superutilities.namedentities.NamedEntityRedactionSettings)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityUtility","l":"recordRedactedCopies(Collection, NamedEntityRedactionSettings)","url":"recordRedactedCopies(java.util.Collection,com.nuix.superutilities.namedentities.NamedEntityRedactionSettings)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityUtility","l":"recordRedactedCopies(Item, NamedEntityRedactionSettings)","url":"recordRedactedCopies(nuix.Item,com.nuix.superutilities.namedentities.NamedEntityRedactionSettings)"},{"p":"com.nuix.superutilities.misc","c":"DriveSpaceInfo","l":"refresh()"},{"p":"com.nuix.superutilities.regex","c":"RegexMatch","l":"RegexMatch(PatternInfo, String, boolean, String, String, int, int)","url":"%3Cinit%3E(com.nuix.superutilities.regex.PatternInfo,java.lang.String,boolean,java.lang.String,java.lang.String,int,int)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanError","l":"RegexScanError(Item, PatternInfo, String, Exception)","url":"%3Cinit%3E(nuix.Item,com.nuix.superutilities.regex.PatternInfo,java.lang.String,java.lang.Exception)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"RegexScanner()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"remove(int)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"remove(Object)","url":"remove(java.lang.Object)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"removeAll(Collection)","url":"removeAll(java.util.Collection)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"removeDynamicPlaceholder(String)","url":"removeDynamicPlaceholder(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"removeIf(Predicate)","url":"removeIf(java.util.function.Predicate)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"removeItem(Item)","url":"removeItem(nuix.Item)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"removeItems(Collection)","url":"removeItems(java.util.Collection)"},{"p":"com.nuix.superutilities.items","c":"SuperItemUtility","l":"removeItemsResponsiveToQuery(Case, Collection, String)","url":"removeItemsResponsiveToQuery(nuix.Case,java.util.Collection,java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"removeMd5(byte[])"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"removeMd5(String)","url":"removeMd5(java.lang.String)"},{"p":"com.nuix.superutilities.export","c":"TemplateExporter","l":"render(Item)","url":"render(nuix.Item)"},{"p":"com.nuix.superutilities.export","c":"TemplateExporter","l":"render(Item, Map)","url":"render(nuix.Item,java.util.Map)"},{"p":"com.nuix.superutilities.export","c":"TemplateExporter","l":"renderToFile(Item, File, Map)","url":"renderToFile(nuix.Item,java.io.File,java.util.Map)"},{"p":"com.nuix.superutilities.export","c":"TemplateExporter","l":"renderToFile(Item, String, Map)","url":"renderToFile(nuix.Item,java.lang.String,java.util.Map)"},{"p":"com.nuix.superutilities.export","c":"TemplateExporter","l":"renderToPdf(Item, File, Map)","url":"renderToPdf(nuix.Item,java.io.File,java.util.Map)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"replaceAll(UnaryOperator)","url":"replaceAll(java.util.function.UnaryOperator)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationEvent","l":"replay(Case)","url":"replay(nuix.Case)"},{"p":"com.nuix.superutilities.annotations","c":"CustodianEvent","l":"replay(Case)","url":"replay(nuix.Case)"},{"p":"com.nuix.superutilities.annotations","c":"CustomMetadataEvent","l":"replay(Case)","url":"replay(nuix.Case)"},{"p":"com.nuix.superutilities.annotations","c":"ExclusionEvent","l":"replay(Case)","url":"replay(nuix.Case)"},{"p":"com.nuix.superutilities.annotations","c":"ItemSetEvent","l":"replay(Case)","url":"replay(nuix.Case)"},{"p":"com.nuix.superutilities.annotations","c":"ProductionSetEvent","l":"replay(Case)","url":"replay(nuix.Case)"},{"p":"com.nuix.superutilities.annotations","c":"TagEvent","l":"replay(Case)","url":"replay(nuix.Case)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"resolvePlaceholders(String, Map)","url":"resolvePlaceholders(java.lang.String,java.util.Map)"},{"p":"com.nuix.superutilities.misc","c":"PlaceholderResolver","l":"resolveTemplate(String)","url":"resolveTemplate(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"PlaceholderResolver","l":"resolveTemplateMultiValues(String, List)","url":"resolveTemplateMultiValues(java.lang.String,java.util.List)"},{"p":"com.nuix.superutilities.misc","c":"PlaceholderResolver","l":"resolveTemplatePath(String)","url":"resolveTemplatePath(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"PlaceholderResolver","l":"resolveTemplatePathMultiValues(String, List)","url":"resolveTemplatePathMultiValues(java.lang.String,java.util.List)"},{"p":"com.nuix.superutilities.reporting","c":"ColorRing","l":"restart()"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"retainAll(Collection)","url":"retainAll(java.util.Collection)"},{"p":"com.nuix.superutilities.cases","c":"CaseIssueReaction","l":"Retry"},{"p":"com.nuix.superutilities.cases","c":"CaseLockedEventInfo","l":"retry()"},{"p":"com.nuix.superutilities.cases","c":"CaseOpenErrorEvent","l":"retry()"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"round(double, int)","url":"round(double,int)"},{"p":"com.nuix.superutilities.reporting","c":"SimpleXlsx","l":"save()"},{"p":"com.nuix.superutilities.reporting","c":"SimpleXlsx","l":"saveAs(String)","url":"saveAs(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"saveCaseLevelDigestList(Case, String)","url":"saveCaseLevelDigestList(nuix.Case,java.lang.String)"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"saveDiagnostics(File)","url":"saveDiagnostics(java.io.File)"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"saveDiagnostics(String)","url":"saveDiagnostics(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"saveFile(File)","url":"saveFile(java.io.File)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityUtility","l":"saveRedactionProfile(File, NamedEntityRedactionResults, NamedEntityRedactionSettings)","url":"saveRedactionProfile(java.io.File,com.nuix.superutilities.namedentities.NamedEntityRedactionResults,com.nuix.superutilities.namedentities.NamedEntityRedactionSettings)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityUtility","l":"saveRedactionProfile(String, NamedEntityRedactionResults, NamedEntityRedactionSettings)","url":"saveRedactionProfile(java.lang.String,com.nuix.superutilities.namedentities.NamedEntityRedactionResults,com.nuix.superutilities.namedentities.NamedEntityRedactionSettings)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"saveSystemLevelDigestList(String)","url":"saveSystemLevelDigestList(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"saveUserLevelDigestList(String)","url":"saveUserLevelDigestList(java.lang.String)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"scanItems(Collection)","url":"scanItems(java.util.Collection)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"scanItems(Collection, Consumer)","url":"scanItems(java.util.Collection,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"scanItemsParallel(Collection, Consumer)","url":"scanItemsParallel(java.util.Collection,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"scanItemsParallel(Collection, Consumer, int)","url":"scanItemsParallel(java.util.Collection,java.util.function.Consumer,int)"},{"p":"com.nuix.superutilities.reporting","c":"ScriptedColumnValueGenerator","l":"ScriptedColumnValueGenerator(String, BiFunction)","url":"%3Cinit%3E(java.lang.String,java.util.function.BiFunction)"},{"p":"com.nuix.superutilities.reporting","c":"ScriptedColumnValueGenerator","l":"ScriptedColumnValueGenerator(String, String, BiFunction)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.util.function.BiFunction)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"secondsToElapsedString(Double)","url":"secondsToElapsedString(java.lang.Double)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"secondsToElapsedString(long)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"set(int, String)","url":"set(int,java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"PlaceholderResolver","l":"set(String, String)","url":"set(java.lang.String,java.lang.String)"},{"p":"com.nuix.superutilities.cases","c":"BulkCaseProcessor","l":"setAllowCaseMigration(boolean)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"setAlwaysCreateTagOnImport(boolean)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"setApplyHighLights(boolean)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"setApplyRedactions(boolean)"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"setAsposeSourcePageRectangle(Rectangle)","url":"setAsposeSourcePageRectangle(com.aspose.pdf.Rectangle)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"setBatchLoadMaxDate(DateTime)","url":"setBatchLoadMaxDate(org.joda.time.DateTime)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"setBatchLoadMinDate(DateTime)","url":"setBatchLoadMinDate(org.joda.time.DateTime)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"setBox(String)","url":"setBox(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"setBugfix(int)"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"setBuild(int)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"setCaptureContextualText(boolean)"},{"p":"com.nuix.superutilities.cases","c":"CaseLockInfo","l":"setCaseInfo(CaseInfo)","url":"setCaseInfo(com.nuix.superutilities.cases.CaseInfo)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"setCaseSensitive(boolean)"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"setChunkSize(int)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReport","l":"setColCategoryColorRing(ColorRing)","url":"setColCategoryColorRing(com.nuix.superutilities.reporting.ColorRing)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"setColCriteria(List)","url":"setColCriteria(java.util.List)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"setColPrimaryCategoryLabel(String)","url":"setColPrimaryCategoryLabel(java.lang.String)"},{"p":"com.nuix.superutilities.reporting","c":"ColumnValueGenerator","l":"setColumnLabel(String)","url":"setColumnLabel(java.lang.String)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"setColumnRemovals(Collection)","url":"setColumnRemovals(java.util.Collection)"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"setConcurrency(int)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"setContextSize(int)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorProgressInfo","l":"setCurrent(int)"},{"p":"com.nuix.superutilities.reporting","c":"SimpleWorksheet","l":"setCurrentRow(int)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"setCustomMetadataFieldPrefix(String)","url":"setCustomMetadataFieldPrefix(java.lang.String)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"setCustomMetadataToScan(List)","url":"setCustomMetadataToScan(java.util.List)"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"setDigestCustomField(String)","url":"setDigestCustomField(java.lang.String)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"setDotall(boolean)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"setDynamicPlaceholder(String, BiFunction)","url":"setDynamicPlaceholder(java.lang.String,java.util.function.BiFunction)"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"setExportDirectory(File)","url":"setExportDirectory(java.io.File)"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"setExportDirectory(String)","url":"setExportDirectory(java.lang.String)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"setExportXlsx(boolean)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"setExpressions(Collection)","url":"setExpressions(java.util.Collection)"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"setFilenamePrefix(String)","url":"setFilenamePrefix(java.lang.String)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"setFirstPage(boolean)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"setFolder(String)","url":"setFolder(java.lang.String)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"setFreezePanes(boolean)"},{"p":"com.nuix.superutilities.misc","c":"PlaceholderResolver","l":"setFromItem(Item)","url":"setFromItem(nuix.Item)"},{"p":"com.nuix.superutilities.misc","c":"TermExpander","l":"setFuzzyResolutionAlgorithm(SimilarityCalculation)","url":"setFuzzyResolutionAlgorithm(com.nuix.superutilities.misc.SimilarityCalculation)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"setGuidRefInsertBatchSize(int)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"setHeaderRenames(Map)","url":"setHeaderRenames(java.util.Map)"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"setHeadersOnFirstChunkOnly(boolean)"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"setHeight(double)"},{"p":"com.nuix.superutilities.cases","c":"CaseLockInfo","l":"setHost(String)","url":"setHost(java.lang.String)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"setId(String)","url":"setId(java.lang.String)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"setImagingOptions(Map)","url":"setImagingOptions(java.util.Map)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"setIncludeChildGuids(boolean)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"setIncludeCustomMetadata(boolean)"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"setIncludeItemText(boolean)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"setIncludeParentGuid(boolean)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"setIncludePathGuids(boolean)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"setIncludeProperties(boolean)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"setIncludeTags(boolean)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"setIncludeText(boolean)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"setIntegerInfo(String, Long)","url":"setIntegerInfo(java.lang.String,java.lang.Long)"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"setItem(Item)","url":"setItem(nuix.Item)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"setKeepOriginalDat(boolean)"},{"p":"com.nuix.superutilities.reporting","c":"ColumnValueGenerator","l":"setLabel(String)","url":"setLabel(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"setMajor(int)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"setMarkupSetName(String)","url":"setMarkupSetName(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"ExpandedTermInfo","l":"setMatchedTerm(String)","url":"setMatchedTerm(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorProgressInfo","l":"setMatches(int)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"setMatchNamedEntityValues(boolean)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"setMaxToStringLength(int)"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"setMinor(int)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"setMultiline(boolean)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"setName(String)","url":"setName(java.lang.String)"},{"p":"com.nuix.superutilities.reporting","c":"NamedQuery","l":"setName(String)","url":"setName(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"setNamedEntityTypes(Collection)","url":"setNamedEntityTypes(java.util.Collection)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"setNamedEntityTypes(Collection)","url":"setNamedEntityTypes(java.util.Collection)"},{"p":"com.nuix.superutilities.misc","c":"ExpandedTermInfo","l":"setOcurrences(long)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"setOnlyRecordChanges(boolean)"},{"p":"com.nuix.superutilities.misc","c":"ExpandedTermInfo","l":"setOriginalTerm(String)","url":"setOriginalTerm(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"setPageNumber(int)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"setPages(int)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"setParallelProcessingSettings(Map)","url":"setParallelProcessingSettings(java.util.Map)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"setPath(String)","url":"setPath(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"PlaceholderResolver","l":"setPath(String, String)","url":"setPath(java.lang.String,java.lang.String)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"setPatterns(List)","url":"setPatterns(java.util.List)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"setPrettyPrint(boolean)"},{"p":"com.nuix.superutilities.cases","c":"CaseLockInfo","l":"setProduct(String)","url":"setProduct(java.lang.String)"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"setProfile(MetadataProfile)","url":"setProfile(nuix.MetadataProfile)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"setProfile(MetadataProfile)","url":"setProfile(nuix.MetadataProfile)"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"setProfile(MetadataProfile)","url":"setProfile(nuix.MetadataProfile)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"setPropertiesToScan(List)","url":"setPropertiesToScan(java.util.List)"},{"p":"com.nuix.superutilities.reporting","c":"NamedQuery","l":"setQuery(String)","url":"setQuery(java.lang.String)"},{"p":"com.nuix.superutilities.cases","c":"CaseLockedEventInfo","l":"setReaction(CaseIssueReaction)","url":"setReaction(com.nuix.superutilities.cases.CaseIssueReaction)"},{"p":"com.nuix.superutilities.cases","c":"CaseOpenErrorEvent","l":"setReaction(CaseIssueReaction)","url":"setReaction(com.nuix.superutilities.cases.CaseIssueReaction)"},{"p":"com.nuix.superutilities.cases","c":"WorkFunctionErrorEvent","l":"setReaction(CaseIssueReaction)","url":"setReaction(com.nuix.superutilities.cases.CaseIssueReaction)"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"setRecordDigest(boolean)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptLoadFile","l":"setRecords(List)","url":"setRecords(java.util.List)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"setRecordTimeOfRedaction(boolean)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"setRedactContentText(boolean)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"setRedactionReplacementTemplate(String)","url":"setRedactionReplacementTemplate(java.lang.String)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"setRedactProperties(boolean)"},{"p":"com.nuix.superutilities.export","c":"PdfWorkCache","l":"setRegenerateStored(boolean)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"setRowCategoryLabel(String)","url":"setRowCategoryLabel(java.lang.String)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"setRowCriteria(List)","url":"setRowCriteria(java.util.List)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"setScanContent(boolean)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"setScanCustomMetadata(boolean)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"setScanProperties(boolean)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"setScopeQuery(String)","url":"setScopeQuery(java.lang.String)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"setSerializeNulls(boolean)"},{"p":"com.nuix.superutilities.misc","c":"ExpandedTermInfo","l":"setSimilarity(float)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"setSnapshotFirstSync(boolean)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"setSpecificProperties(Collection)","url":"setSpecificProperties(java.util.Collection)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"setStampingOptions(Map)","url":"setStampingOptions(java.util.Map)"},{"p":"com.nuix.superutilities.reporting","c":"SimpleWorksheet","l":"setStyle(int, int, Style)","url":"setStyle(int,int,com.aspose.cells.Style)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationSyncSettings","l":"setSyncCustodianEvents(boolean)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationSyncSettings","l":"setSyncCustomMetadataEvents(boolean)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationSyncSettings","l":"setSyncExclusionEvents(boolean)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationSyncSettings","l":"setSyncItemSetEvents(boolean)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"setSyncPoint(DateTime)","url":"setSyncPoint(org.joda.time.DateTime)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"setSyncPointFromDestinationCaseLastEvent(Case)","url":"setSyncPointFromDestinationCaseLastEvent(nuix.Case)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"setSyncPointToNow()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationSyncSettings","l":"setSyncProductionSetEvents(boolean)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationSyncSettings","l":"setSyncTagEvents(boolean)"},{"p":"com.nuix.superutilities.misc","c":"FuzzyTermInfo","l":"setTargetSimilarity(float)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"setTempDirectory(File)","url":"setTempDirectory(java.io.File)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"setTempDirectory(String)","url":"setTempDirectory(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"FuzzyTermInfo","l":"setTerm(String)","url":"setTerm(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"setText(String)","url":"setText(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"setTextInfo(String, String)","url":"setTextInfo(java.lang.String,java.lang.String)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"setTimeOfRedactionFieldName(String)","url":"setTimeOfRedactionFieldName(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorProgressInfo","l":"setTotal(int)"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"setUseExistingValueWhenPresent(boolean)"},{"p":"com.nuix.superutilities.cases","c":"CaseLockInfo","l":"setUser(String)","url":"setUser(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"setUseSIUnits(boolean)"},{"p":"com.nuix.superutilities.reporting","c":"SimpleWorksheet","l":"setValue(int, int, Object)","url":"setValue(int,int,java.lang.Object)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"setValueGenerators(List)","url":"setValueGenerators(java.util.List)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"setVolume(String)","url":"setVolume(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"setWidth(double)"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"setX(double)"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"setY(double)"},{"p":"com.nuix.superutilities.misc","c":"FreeSpaceMonitor","l":"shutdownMonitoring()"},{"p":"com.nuix.superutilities.cases","c":"BulkCaseProcessor","l":"signalAbort()"},{"p":"com.nuix.superutilities.loadfiles","c":"SimpleTextFileReader","l":"SimpleTextFileReader()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.loadfiles","c":"SimpleTextFileWriter","l":"SimpleTextFileWriter(File)","url":"%3Cinit%3E(java.io.File)"},{"p":"com.nuix.superutilities.reporting","c":"SimpleXlsx","l":"SimpleXlsx(File)","url":"%3Cinit%3E(java.io.File)"},{"p":"com.nuix.superutilities.reporting","c":"SimpleXlsx","l":"SimpleXlsx(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"size()"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"size()"},{"p":"com.nuix.superutilities.cases","c":"CaseIssueReaction","l":"SkipCase"},{"p":"com.nuix.superutilities.cases","c":"CaseLockedEventInfo","l":"skipCase()"},{"p":"com.nuix.superutilities.cases","c":"CaseOpenErrorEvent","l":"skipCase()"},{"p":"com.nuix.superutilities.cases","c":"WorkFunctionErrorEvent","l":"skipCase()"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"sort(Comparator)","url":"sort(java.util.Comparator)"},{"p":"com.nuix.superutilities.items","c":"SuperItemUtility","l":"splitAndMaintainFamilies(Collection, int, Consumer>)","url":"splitAndMaintainFamilies(java.util.Collection,int,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"spliterator()"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFile","l":"splitLine(String)","url":"splitLine(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"splitPhrase(String)","url":"splitPhrase(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"SQLiteBacked","l":"SQLiteBacked(File)","url":"%3Cinit%3E(java.io.File)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"storeAllMarkupSets(Case)","url":"storeAllMarkupSets(nuix.Case)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"storeAllTags(Case)","url":"storeAllTags(nuix.Case)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"storeMarkupSet(Case, MarkupSet)","url":"storeMarkupSet(nuix.Case,nuix.MarkupSet)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"storeTag(Case, String)","url":"storeTag(nuix.Case,java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"stream()"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"subList(int, int)","url":"subList(int,int)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"syncHistory(Case, AnnotationSyncSettings)","url":"syncHistory(nuix.Case,com.nuix.superutilities.annotations.AnnotationSyncSettings)"},{"p":"com.nuix.superutilities.annotations","c":"TagEvent","l":"TagEvent()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionResults","l":"tallyContentTextUdpated()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionResults","l":"tallyUpdatedItem()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionResults","l":"tallyUpdatedProperty(String)","url":"tallyUpdatedProperty(java.lang.String)"},{"p":"com.nuix.superutilities.export","c":"TemplateExporter","l":"TemplateExporter(File)","url":"%3Cinit%3E(java.io.File)"},{"p":"com.nuix.superutilities.misc","c":"TermExpander","l":"TermExpander()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"termToRegex(String)","url":"termToRegex(java.lang.String)"},{"p":"com.nuix.superutilities.reporting","c":"AsposeCellsColorHelper","l":"tintChannel(int, float)","url":"tintChannel(int,float)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"toArray()"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"toArray(T[])"},{"p":"com.nuix.superutilities.loadfiles","c":"OptLoadFile","l":"toFile(File)","url":"toFile(java.io.File)"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFile","l":"toHeaderLine(LinkedHashMap)","url":"toHeaderLine(java.util.LinkedHashMap)"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFile","l":"toHeaderLine(List)","url":"toHeaderLine(java.util.List)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"tokenizeText(String)","url":"tokenizeText(java.lang.String)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"toLine()"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFile","l":"toLine(LinkedHashMap)","url":"toLine(java.util.LinkedHashMap)"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFile","l":"toLine(String[])","url":"toLine(java.lang.String[])"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepositorySummary","l":"toString()"},{"p":"com.nuix.superutilities.annotations","c":"CustodianEvent","l":"toString()"},{"p":"com.nuix.superutilities.annotations","c":"CustomMetadataEvent","l":"toString()"},{"p":"com.nuix.superutilities.annotations","c":"ExclusionEvent","l":"toString()"},{"p":"com.nuix.superutilities.annotations","c":"ItemSetEvent","l":"toString()"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"toString()"},{"p":"com.nuix.superutilities.annotations","c":"ProductionSetEvent","l":"toString()"},{"p":"com.nuix.superutilities.annotations","c":"TagEvent","l":"toString()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"toString()"},{"p":"com.nuix.superutilities.cases","c":"CaseLockInfo","l":"toString()"},{"p":"com.nuix.superutilities.misc","c":"DriveSpaceInfo","l":"toString()"},{"p":"com.nuix.superutilities.misc","c":"ExpandedTermInfo","l":"toString()"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"toString()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionResults","l":"toString()"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFile","l":"transpose(File, File, Consumer>)","url":"transpose(java.io.File,java.io.File,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptLoadFile","l":"transpose(File, File, Consumer)","url":"transpose(java.io.File,java.io.File,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.items","c":"SuperItemUtility","l":"unionMany(List>)","url":"unionMany(java.util.List)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationMatchingMethod","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"com.nuix.superutilities.cases","c":"CaseIssueReaction","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"SimilarityCalculation","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationMatchingMethod","l":"values()"},{"p":"com.nuix.superutilities.cases","c":"CaseIssueReaction","l":"values()"},{"p":"com.nuix.superutilities.misc","c":"SimilarityCalculation","l":"values()"},{"p":"com.nuix.superutilities.misc","c":"PdfUtility","l":"waterMarkPrintedImages(File, Collection, String, int, float, float, BiConsumer)","url":"waterMarkPrintedImages(java.io.File,java.util.Collection,java.lang.String,int,float,float,java.util.function.BiConsumer)"},{"p":"com.nuix.superutilities.misc","c":"PdfUtility","l":"waterMarkPrintedImages(String, Collection, String, int, float, float, BiConsumer)","url":"waterMarkPrintedImages(java.lang.String,java.util.Collection,java.lang.String,int,float,float,java.util.function.BiConsumer)"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"whenErrorLogged(BiConsumer)","url":"whenErrorLogged(java.util.function.BiConsumer)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"whenErrorOccurs(Consumer)","url":"whenErrorOccurs(java.util.function.Consumer)"},{"p":"com.nuix.superutilities.misc","c":"FreeSpaceMonitor","l":"whenErrorOccurs(FreeSpaceMonitorEventCallback)","url":"whenErrorOccurs(com.nuix.superutilities.misc.FreeSpaceMonitorEventCallback)"},{"p":"com.nuix.superutilities.misc","c":"FreeSpaceMonitor","l":"whenFreeSpaceBelowThreshold(FreeSpaceMonitorEventCallback)","url":"whenFreeSpaceBelowThreshold(com.nuix.superutilities.misc.FreeSpaceMonitorEventCallback)"},{"p":"com.nuix.superutilities.misc","c":"FreeSpaceMonitor","l":"whenFreeSpaceIssueResolved(FreeSpaceMonitorEventCallback)","url":"whenFreeSpaceIssueResolved(com.nuix.superutilities.misc.FreeSpaceMonitorEventCallback)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityUtility","l":"whenMessageGenerated(Consumer)","url":"whenMessageGenerated(java.util.function.Consumer)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReport","l":"whenMessageGenerated(Consumer)","url":"whenMessageGenerated(java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"whenMessageLogged(Consumer)","url":"whenMessageLogged(java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactor","l":"whenMessageLogged(Consumer)","url":"whenMessageLogged(java.util.function.Consumer)"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"whenMessageLogged(Consumer)","url":"whenMessageLogged(java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"whenProgressUpdated(BiConsumer)","url":"whenProgressUpdated(java.util.function.BiConsumer)"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"whenProgressUpdated(BiConsumer)","url":"whenProgressUpdated(java.util.function.BiConsumer)"},{"p":"com.nuix.superutilities.misc","c":"TermExpander","l":"whenProgressUpdated(BiConsumer)","url":"whenProgressUpdated(java.util.function.BiConsumer)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactor","l":"whenProgressUpdated(Consumer)","url":"whenProgressUpdated(java.util.function.Consumer)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"whenProgressUpdated(Consumer)","url":"whenProgressUpdated(java.util.function.Consumer)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReport","l":"whenProgressUpdated(IntersectionReportProgressCallback)","url":"whenProgressUpdated(com.nuix.superutilities.reporting.IntersectionReportProgressCallback)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityUtility","l":"whenProgressUpdated(NamedEntityRedactionProgressCallback)","url":"whenProgressUpdated(com.nuix.superutilities.namedentities.NamedEntityRedactionProgressCallback)"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"withCase(boolean, Consumer)","url":"withCase(boolean,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"withCase(Consumer)","url":"withCase(java.util.function.Consumer)"},{"p":"com.nuix.superutilities.cases","c":"BulkCaseProcessor","l":"withEachCase(Case, CaseConsumer)","url":"withEachCase(nuix.Case,com.nuix.superutilities.cases.CaseConsumer)"},{"p":"com.nuix.superutilities.cases","c":"BulkCaseProcessor","l":"withEachCase(CaseConsumer)","url":"withEachCase(com.nuix.superutilities.cases.CaseConsumer)"},{"p":"com.nuix.superutilities.loadfiles","c":"SimpleTextFileReader","l":"withEachLine(File, Consumer)","url":"withEachLine(java.io.File,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFileReader","l":"withEachRecord(File, Consumer>)","url":"withEachRecord(java.io.File,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.cases","c":"WorkFunctionErrorEvent","l":"WorkFunctionErrorEvent(CaseInfo, Exception)","url":"%3Cinit%3E(com.nuix.superutilities.cases.CaseInfo,java.lang.Exception)"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFileWriter","l":"writeDatLine(String[])","url":"writeDatLine(java.lang.String[])"},{"p":"com.nuix.superutilities.loadfiles","c":"SimpleTextFileWriter","l":"writeLine(String)","url":"writeLine(java.lang.String)"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFileWriter","l":"writeRecordKeys(LinkedHashMap)","url":"writeRecordKeys(java.util.LinkedHashMap)"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFileWriter","l":"writeRecordValues(LinkedHashMap)","url":"writeRecordValues(java.util.LinkedHashMap)"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFileWriter","l":"writeValues(List)","url":"writeValues(java.util.List)"},{"p":"com.nuix.superutilities.query","c":"QueryHelper","l":"yearMonthRangeQuery(int, int)","url":"yearMonthRangeQuery(int,int)"},{"p":"com.nuix.superutilities.query","c":"QueryHelper","l":"yearRangeQuery(int)"},{"p":"com.nuix.superutilities.misc","c":"ZipHelper","l":"ZipHelper()","url":"%3Cinit%3E()"}] \ No newline at end of file +memberSearchIndex = [{"p":"com.nuix.superutilities.cases","c":"CaseIssueReaction","l":"Abort"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"abort()"},{"p":"com.nuix.superutilities.cases","c":"CaseLockedEventInfo","l":"abort()"},{"p":"com.nuix.superutilities.cases","c":"CaseOpenErrorEvent","l":"abort()"},{"p":"com.nuix.superutilities.cases","c":"WorkFunctionErrorEvent","l":"abort()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"abortScan()"},{"p":"com.nuix.superutilities.cases","c":"CaseConsumer","l":"acceptCase(Case, CaseInfo, int, int)","url":"acceptCase(nuix.Case,com.nuix.superutilities.cases.CaseInfo,int,int)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"add(int, String)","url":"add(int,java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"add(String)","url":"add(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"addAll(Collection)","url":"addAll(java.util.Collection)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"addAll(int, Collection)","url":"addAll(int,java.util.Collection)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"addAllBuiltInEntities()"},{"p":"com.nuix.superutilities.cases","c":"BulkCaseProcessor","l":"addCaseDirectory(File)","url":"addCaseDirectory(java.io.File)"},{"p":"com.nuix.superutilities.cases","c":"BulkCaseProcessor","l":"addCaseDirectory(String)","url":"addCaseDirectory(java.lang.String)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"addColCriterion(NamedQuery)","url":"addColCriterion(com.nuix.superutilities.reporting.NamedQuery)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"addColCriterion(String, String)","url":"addColCriterion(java.lang.String,java.lang.String)"},{"p":"com.nuix.superutilities.reporting","c":"ColorRing","l":"addColor(int, int, int)","url":"addColor(int,int,int)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"addEntityNames(Collection)","url":"addEntityNames(java.util.Collection)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"addExpression(String)","url":"addExpression(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"addItem(Item)","url":"addItem(nuix.Item)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"addItems(Collection)","url":"addItems(java.util.Collection)"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"addItemsToItemSet(Case, String, String, Collection)","url":"addItemsToItemSet(nuix.Case,java.lang.String,java.lang.String,java.util.Collection)"},{"p":"com.nuix.superutilities.regex","c":"ItemRegexMatchCollection","l":"addMatch(PatternInfo, String, boolean, String, String, int, int)","url":"addMatch(com.nuix.superutilities.regex.PatternInfo,java.lang.String,boolean,java.lang.String,java.lang.String,int,int)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"addMd5(byte[])"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"addMd5(String)","url":"addMd5(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"FreeSpaceMonitor","l":"addMonitoredLocation(String, double)","url":"addMonitoredLocation(java.lang.String,double)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"addNamedEntity(String)","url":"addNamedEntity(java.lang.String)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"addPattern(String, String)","url":"addPattern(java.lang.String,java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"addPhrase(String)","url":"addPhrase(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"addPhrases(Collection)","url":"addPhrases(java.util.Collection)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptLoadFile","l":"addRecord(OptRecord)","url":"addRecord(com.nuix.superutilities.loadfiles.OptRecord)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"addRowCriterion(NamedQuery)","url":"addRowCriterion(com.nuix.superutilities.reporting.NamedQuery)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"addRowCriterion(String, String)","url":"addRowCriterion(java.lang.String,java.lang.String)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"addScriptedValueGenerator(String, BiFunction)","url":"addScriptedValueGenerator(java.lang.String,java.util.function.BiFunction)"},{"p":"com.nuix.superutilities.reporting","c":"ColorRing","l":"addTintSeries(Color, int)","url":"addTintSeries(com.aspose.cells.Color,int)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationEvent","l":"AnnotationEvent()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"AnnotationHistoryRepository(File)","url":"%3Cinit%3E(java.io.File)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"AnnotationHistoryRepository(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepositorySummary","l":"AnnotationHistoryRepositorySummary()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"AnnotationRepository(File)","url":"%3Cinit%3E(java.io.File)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"AnnotationRepository(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationSyncSettings","l":"AnnotationSyncSettings()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.reporting","c":"SimpleWorksheet","l":"appendRow(List)","url":"appendRow(java.util.List)"},{"p":"com.nuix.superutilities.reporting","c":"SimpleWorksheet","l":"appendRow(List, Style)","url":"appendRow(java.util.List,com.aspose.cells.Style)"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"applyHighlight(MarkupSet)","url":"applyHighlight(nuix.MarkupSet)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"applyMarkupsFromDatabaseToCase(Case, boolean, AnnotationMatchingMethod)","url":"applyMarkupsFromDatabaseToCase(nuix.Case,boolean,com.nuix.superutilities.annotations.AnnotationMatchingMethod)"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"applyRedaction(MarkupSet)","url":"applyRedaction(nuix.MarkupSet)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"applyTagsFromDatabaseToCase(Case, AnnotationMatchingMethod)","url":"applyTagsFromDatabaseToCase(nuix.Case,com.nuix.superutilities.annotations.AnnotationMatchingMethod)"},{"p":"com.nuix.superutilities.cases","c":"CaseUtility","l":"archiveCase(File, File, boolean, int)","url":"archiveCase(java.io.File,java.io.File,boolean,int)"},{"p":"com.nuix.superutilities.cases","c":"CaseUtility","l":"archiveCase(String, String, boolean, int)","url":"archiveCase(java.lang.String,java.lang.String,boolean,int)"},{"p":"com.nuix.superutilities.reporting","c":"AsposeCellsColorHelper","l":"AsposeCellsColorHelper()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.reporting","c":"AsposeCellsStyleHelper","l":"AsposeCellsStyleHelper()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.reporting","c":"SimpleWorksheet","l":"autoFitColumns()"},{"p":"com.nuix.superutilities.reporting","c":"SimpleWorksheet","l":"autoFitRow(int)"},{"p":"com.nuix.superutilities.cases","c":"BulkCaseProcessor","l":"beforeOpeningCase(Consumer)","url":"beforeOpeningCase(java.util.function.Consumer)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"beforeSerialization(Consumer>)","url":"beforeSerialization(java.util.function.Consumer)"},{"p":"com.nuix.superutilities.misc","c":"FreeSpaceMonitor","l":"beginMonitoring()"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"binaryCategory"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"booleanCategory"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationSyncSettings","l":"buildSettingsSummary()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"buildSummary()"},{"p":"com.nuix.superutilities.cases","c":"BulkCaseProcessor","l":"BulkCaseProcessor()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactor","l":"BulkRedactor()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorProgressInfo","l":"BulkRedactorProgressInfo()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"BulkRedactorSettings()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"bytesToDynamicSize(long, int)","url":"bytesToDynamicSize(long,int)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"bytesToGigaBytes(long, int)","url":"bytesToGigaBytes(long,int)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"bytesToHex(byte[])"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"bytesToKiloBytes(long, int)","url":"bytesToKiloBytes(long,int)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"bytesToMegaBytes(long, int)","url":"bytesToMegaBytes(long,int)"},{"p":"com.nuix.superutilities.misc","c":"LevenshteinDistance","l":"calculate(String, String)","url":"calculate(java.lang.String,java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"FuzzyTermInfo","l":"calculateJaroWinklerSimilarityTo(String)","url":"calculateJaroWinklerSimilarityTo(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"calculateLastDbEventStart()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"caseExists()"},{"p":"com.nuix.superutilities.cases","c":"CaseHistoryHelper","l":"CaseHistoryHelper(Case, List, DateTime, DateTime)","url":"%3Cinit%3E(nuix.Case,java.util.List,org.joda.time.DateTime,org.joda.time.DateTime)"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"CaseInfo(File)","url":"%3Cinit%3E(java.io.File)"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"CaseInfo(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.nuix.superutilities.cases","c":"CaseLockedEventInfo","l":"CaseLockedEventInfo(CaseInfo)","url":"%3Cinit%3E(com.nuix.superutilities.cases.CaseInfo)"},{"p":"com.nuix.superutilities.cases","c":"CaseLockInfo","l":"CaseLockInfo()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.cases","c":"CaseOpenErrorEvent","l":"CaseOpenErrorEvent(CaseInfo, Exception)","url":"%3Cinit%3E(com.nuix.superutilities.cases.CaseInfo,java.lang.Exception)"},{"p":"com.nuix.superutilities.cases","c":"CaseUtility","l":"CaseUtility()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"ChunkedDATExporter()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter.ChunkInfo","l":"chunkIndex"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter.ChunkInfo","l":"ChunkInfo(int)","url":"%3Cinit%3E(int)"},{"p":"com.nuix.superutilities.misc","c":"PlaceholderResolver","l":"cleanPathString(String)","url":"cleanPathString(java.lang.String)"},{"p":"com.nuix.superutilities.export","c":"PdfWorkCache","l":"cleanupTemporaryPdfs()"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"clear()"},{"p":"com.nuix.superutilities.misc","c":"PlaceholderResolver","l":"clear()"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"clearAllDynamicPlaholders()"},{"p":"com.nuix.superutilities.reporting","c":"ColorRing","l":"clearColors()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"clearEntityNames()"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"clearRowCriteria()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"close()"},{"p":"com.nuix.superutilities.loadfiles","c":"SimpleTextFileWriter","l":"close()"},{"p":"com.nuix.superutilities.misc","c":"SQLiteBacked","l":"close()"},{"p":"com.nuix.superutilities.reporting","c":"SimpleXlsx","l":"close()"},{"p":"com.nuix.superutilities.reporting","c":"ColorRing","l":"ColorRing()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.reporting","c":"ColumnValueGenerator","l":"columnLabel"},{"p":"com.nuix.superutilities.reporting","c":"ColumnValueGenerator","l":"ColumnValueGenerator()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"combineDigestFiles(File, Collection)","url":"combineDigestFiles(java.io.File,java.util.Collection)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"combineDigestFiles(String, Collection)","url":"combineDigestFiles(java.lang.String,java.util.Collection)"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"compareTo(NuixVersion)","url":"compareTo(com.nuix.superutilities.misc.NuixVersion)"},{"p":"com.nuix.superutilities.regex","c":"PatternInfo","l":"compile(boolean, boolean, boolean)","url":"compile(boolean,boolean,boolean)"},{"p":"com.nuix.superutilities.misc","c":"ZipHelper","l":"compressDirectoryToSevenZipFile(String, String)","url":"compressDirectoryToSevenZipFile(java.lang.String,java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"ZipHelper","l":"compressDirectoryToZipFile(String, String, int)","url":"compressDirectoryToZipFile(java.lang.String,java.lang.String,int)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"contains(Object)","url":"contains(java.lang.Object)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"containsAll(Collection)","url":"containsAll(java.util.Collection)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"containsMd5(byte[])"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"containsMd5(String)","url":"containsMd5(java.lang.String)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"convertItemToJsonString(Item)","url":"convertItemToJsonString(nuix.Item)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"convertSourceItemToJsonString(SourceItem)","url":"convertSourceItemToJsonString(nuix.SourceItem)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"convertToString(Object)","url":"convertToString(java.lang.Object)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"convertWorkerItemToJsonString(WorkerItem)","url":"convertWorkerItemToJsonString(nuix.WorkerItem)"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"createBulkCaseProcessor()"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"createCaseHistoryHelper(Case, List, DateTime, DateTime)","url":"createCaseHistoryHelper(nuix.Case,java.util.List,org.joda.time.DateTime,org.joda.time.DateTime)"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"createFreeSpaceMonitor()"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"createJsonExporter()"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"createRegexScanner()"},{"p":"com.nuix.superutilities.reporting","c":"SimpleXlsx","l":"createStyle()"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"createTemplateExporter(File)","url":"createTemplateExporter(java.io.File)"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"createTemplateExporter(String)","url":"createTemplateExporter(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"PdfUtility","l":"createWaterMarkedPdf(File, File, String, int, float, float)","url":"createWaterMarkedPdf(java.io.File,java.io.File,java.lang.String,int,float,float)"},{"p":"com.nuix.superutilities.misc","c":"PdfUtility","l":"createWaterMarkedPdf(String, String, String, int, float, float)","url":"createWaterMarkedPdf(java.lang.String,java.lang.String,java.lang.String,int,float,float)"},{"p":"com.nuix.superutilities.annotations","c":"CustodianEvent","l":"CustodianEvent()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"CustomExporter()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.annotations","c":"CustomMetadataEvent","l":"CustomMetadataEvent()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"dateTimeCategory"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFile","l":"DatLoadFile()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFileReader","l":"DatLoadFileReader()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFileWriter","l":"DatLoadFileWriter(File)","url":"%3Cinit%3E(java.io.File)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"debugString(Exception)","url":"debugString(java.lang.Exception)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"debugString(Map)","url":"debugString(java.util.Map)"},{"p":"com.nuix.superutilities.items","c":"SuperItemUtility","l":"deduplicateCustomTieBreaker(Collection, BiFunction)","url":"deduplicateCustomTieBreaker(java.util.Collection,java.util.function.BiFunction)"},{"p":"com.nuix.superutilities.loadfiles","c":"SimpleTextFileWriter","l":"destinationFile"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"determineStoreCount()"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"DigestList()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"DigestList(File...)","url":"%3Cinit%3E(java.io.File...)"},{"p":"com.nuix.superutilities.misc","c":"DriveSpaceInfo","l":"DriveSpaceInfo(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"durationCategory"},{"p":"com.nuix.superutilities.reporting","c":"SimpleWorksheet","l":"eachCell(int, int, int, int, Consumer)","url":"eachCell(int,int,int,int,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"eachDigest(File, Consumer)","url":"eachDigest(java.io.File,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"eachRecordedCustodianEvent(DateTime, Consumer)","url":"eachRecordedCustodianEvent(org.joda.time.DateTime,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"eachRecordedCustodianEvent(long, Consumer)","url":"eachRecordedCustodianEvent(long,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"eachRecordedCustomMetadataEvent(DateTime, Consumer)","url":"eachRecordedCustomMetadataEvent(org.joda.time.DateTime,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"eachRecordedCustomMetadataEvent(long, Consumer)","url":"eachRecordedCustomMetadataEvent(long,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"eachRecordedExclusionEvent(DateTime, Consumer)","url":"eachRecordedExclusionEvent(org.joda.time.DateTime,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"eachRecordedExclusionEvent(long, Consumer)","url":"eachRecordedExclusionEvent(long,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"eachRecordedItemSetEvent(DateTime, Consumer)","url":"eachRecordedItemSetEvent(org.joda.time.DateTime,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"eachRecordedItemSetEvent(long, Consumer)","url":"eachRecordedItemSetEvent(long,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"eachRecordedProductionSetEvent(DateTime, Consumer)","url":"eachRecordedProductionSetEvent(org.joda.time.DateTime,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"eachRecordedProductionSetEvent(long, Consumer)","url":"eachRecordedProductionSetEvent(long,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"eachRecordedTagEvent(DateTime, Consumer)","url":"eachRecordedTagEvent(org.joda.time.DateTime,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"eachRecordedTagEvent(long, Consumer)","url":"eachRecordedTagEvent(long,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.reporting","c":"AsposeCellsStyleHelper","l":"enableAllBorders(Style)","url":"enableAllBorders(com.aspose.cells.Style)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"encounteredPropertyNameCounts"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"equals(Object)","url":"equals(java.lang.Object)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"equals(Object)","url":"equals(java.lang.Object)"},{"p":"com.nuix.superutilities.query","c":"QueryHelper","l":"escapeForSearch(String)","url":"escapeForSearch(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"escapeRegexSpecialCharacters(String)","url":"escapeRegexSpecialCharacters(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"escapeTagForSearch(String)","url":"escapeTagForSearch(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"ExclusionEvent","l":"ExclusionEvent()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"executeInsert(String, List)","url":"executeInsert(java.lang.String,java.util.List)"},{"p":"com.nuix.superutilities.misc","c":"SQLiteBacked","l":"executeInsert(String, List)","url":"executeInsert(java.lang.String,java.util.List)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"executeInsert(String, Object...)","url":"executeInsert(java.lang.String,java.lang.Object...)"},{"p":"com.nuix.superutilities.misc","c":"SQLiteBacked","l":"executeInsert(String, Object...)","url":"executeInsert(java.lang.String,java.lang.Object...)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"executeLongScalar(String, List)","url":"executeLongScalar(java.lang.String,java.util.List)"},{"p":"com.nuix.superutilities.misc","c":"SQLiteBacked","l":"executeLongScalar(String, List)","url":"executeLongScalar(java.lang.String,java.util.List)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"executeLongScalar(String, Object...)","url":"executeLongScalar(java.lang.String,java.lang.Object...)"},{"p":"com.nuix.superutilities.misc","c":"SQLiteBacked","l":"executeLongScalar(String, Object...)","url":"executeLongScalar(java.lang.String,java.lang.Object...)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"executeLongScalar(String)","url":"executeLongScalar(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"SQLiteBacked","l":"executeLongScalar(String)","url":"executeLongScalar(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"executeQuery(String, List, Consumer)","url":"executeQuery(java.lang.String,java.util.List,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.misc","c":"SQLiteBacked","l":"executeQuery(String, List, Consumer)","url":"executeQuery(java.lang.String,java.util.List,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"executeScalar(String, Object...)","url":"executeScalar(java.lang.String,java.lang.Object...)"},{"p":"com.nuix.superutilities.misc","c":"SQLiteBacked","l":"executeScalar(String, Object...)","url":"executeScalar(java.lang.String,java.lang.Object...)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"executeStringScalar(String, List)","url":"executeStringScalar(java.lang.String,java.util.List)"},{"p":"com.nuix.superutilities.misc","c":"SQLiteBacked","l":"executeStringScalar(String, List)","url":"executeStringScalar(java.lang.String,java.util.List)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"executeStringScalar(String, Object...)","url":"executeStringScalar(java.lang.String,java.lang.Object...)"},{"p":"com.nuix.superutilities.misc","c":"SQLiteBacked","l":"executeStringScalar(String, Object...)","url":"executeStringScalar(java.lang.String,java.lang.Object...)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"executeStringScalar(String)","url":"executeStringScalar(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"SQLiteBacked","l":"executeStringScalar(String)","url":"executeStringScalar(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"executeUpdate(String, List)","url":"executeUpdate(java.lang.String,java.util.List)"},{"p":"com.nuix.superutilities.misc","c":"SQLiteBacked","l":"executeUpdate(String, List)","url":"executeUpdate(java.lang.String,java.util.List)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"executeUpdate(String, Object...)","url":"executeUpdate(java.lang.String,java.lang.Object...)"},{"p":"com.nuix.superutilities.misc","c":"SQLiteBacked","l":"executeUpdate(String, Object...)","url":"executeUpdate(java.lang.String,java.lang.Object...)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"executeUpdate(String)","url":"executeUpdate(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"SQLiteBacked","l":"executeUpdate(String)","url":"executeUpdate(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"ExpandedTermInfo","l":"ExpandedTermInfo()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.misc","c":"TermExpander","l":"expandTerm(Case, boolean, boolean, String, String)","url":"expandTerm(nuix.Case,boolean,boolean,java.lang.String,java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"TermExpander","l":"expandTerm(Case, boolean, boolean, String)","url":"expandTerm(nuix.Case,boolean,boolean,java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"TermExpander","l":"expandTerm(Case, String)","url":"expandTerm(nuix.Case,java.lang.String)"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"export(List)","url":"export(java.util.List)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"exportItemAsJson(Item, File)","url":"exportItemAsJson(nuix.Item,java.io.File)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"exportItems(Case, File, List)","url":"exportItems(nuix.Case,java.io.File,java.util.List)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"exportItems(Case, String, List)","url":"exportItems(nuix.Case,java.lang.String,java.util.List)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"exportJson(String, JsonExporter)","url":"exportJson(java.lang.String,com.nuix.superutilities.export.JsonExporter)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"exportJson(String)","url":"exportJson(java.lang.String)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"exportNatives(String, Map)","url":"exportNatives(java.lang.String,java.util.Map)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"exportPdfs(String, Map)","url":"exportPdfs(java.lang.String,java.util.Map)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"exportSourceItemAsJson(SourceItem, File)","url":"exportSourceItemAsJson(nuix.SourceItem,java.io.File)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"exportText(String, Map)","url":"exportText(java.lang.String,java.util.Map)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"exportTiffs(String, Map)","url":"exportTiffs(java.lang.String,java.util.Map)"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"exportToFile(ChunkedDATExporter.ChunkInfo)","url":"exportToFile(com.nuix.superutilities.export.ChunkedDATExporter.ChunkInfo)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"exportWorkerItemAsJson(WorkerItem, File)","url":"exportWorkerItemAsJson(nuix.WorkerItem,java.io.File)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactor","l":"findAndMarkup(Case, BulkRedactorSettings, Collection, int)","url":"findAndMarkup(nuix.Case,com.nuix.superutilities.annotations.BulkRedactorSettings,java.util.Collection,int)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReport","l":"findBatchLoadsInDateRange(Case, DateTime, DateTime)","url":"findBatchLoadsInDateRange(nuix.Case,org.joda.time.DateTime,org.joda.time.DateTime)"},{"p":"com.nuix.superutilities.cases","c":"CaseUtility","l":"findCaseDirectories(File)","url":"findCaseDirectories(java.io.File)"},{"p":"com.nuix.superutilities.cases","c":"CaseUtility","l":"findCaseDirectories(String)","url":"findCaseDirectories(java.lang.String)"},{"p":"com.nuix.superutilities.cases","c":"CaseUtility","l":"findCaseDirectoryPaths(File)","url":"findCaseDirectoryPaths(java.io.File)"},{"p":"com.nuix.superutilities.cases","c":"CaseUtility","l":"findCaseDirectoryPaths(String)","url":"findCaseDirectoryPaths(java.lang.String)"},{"p":"com.nuix.superutilities.cases","c":"CaseUtility","l":"findCaseInformation(File)","url":"findCaseInformation(java.io.File)"},{"p":"com.nuix.superutilities.cases","c":"CaseUtility","l":"findCaseInformation(String)","url":"findCaseInformation(java.lang.String)"},{"p":"com.nuix.superutilities.items","c":"SuperItemUtility","l":"findContainerAncestor(Item)","url":"findContainerAncestor(nuix.Item)"},{"p":"com.nuix.superutilities.items","c":"SuperItemUtility","l":"findContainerAncestors(Collection)","url":"findContainerAncestors(java.util.Collection)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactor","l":"findExpressionsInPdfFile(File, Collection)","url":"findExpressionsInPdfFile(java.io.File,java.util.Collection)"},{"p":"com.nuix.superutilities.items","c":"SuperItemUtility","l":"findFamiliesWithoutItemsResponsiveToQuery(Case, Collection, String)","url":"findFamiliesWithoutItemsResponsiveToQuery(nuix.Case,java.util.Collection,java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"findMatchingItems(Case, int)","url":"findMatchingItems(nuix.Case,int)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"findMatchingItems(Case)","url":"findMatchingItems(nuix.Case)"},{"p":"com.nuix.superutilities.items","c":"SuperItemUtility","l":"findPhysicalFileAncestor(Item)","url":"findPhysicalFileAncestor(nuix.Item)"},{"p":"com.nuix.superutilities.items","c":"SuperItemUtility","l":"findPhysicalFileAncestors(Collection)","url":"findPhysicalFileAncestors(java.util.Collection)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"fireProgressUpdated(int)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"fireScanError(RegexScanError)","url":"fireScanError(com.nuix.superutilities.regex.RegexScanError)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"floatCategory"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"forEach(Consumer)","url":"forEach(java.util.function.Consumer)"},{"p":"com.nuix.superutilities.export","c":"PdfWorkCache","l":"forgetItem(Item)","url":"forgetItem(nuix.Item)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"formatAsTextualTable(List>)","url":"formatAsTextualTable(java.util.List)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"formatNumber(double)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"formatNumber(int)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"formatNumber(long)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"FormatUtility()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.misc","c":"FreeSpaceMonitor","l":"FreeSpaceMonitor()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"fromCaseDirectories(List)","url":"fromCaseDirectories(java.util.List)"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"fromCasePaths(List)","url":"fromCasePaths(java.util.List)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptLoadFile","l":"fromFile(File)","url":"fromFile(java.io.File)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptLoadFile","l":"fromFile(String)","url":"fromFile(java.lang.String)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"fromLine(String)","url":"fromLine(java.lang.String)"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFile","l":"fromLine(String[], String)","url":"fromLine(java.lang.String[],java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"FuzzyTermInfo","l":"FuzzyTermInfo()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.loadfiles","c":"SimpleTextFileWriter","l":"fw"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReport","l":"generate(Case, String, IntersectionReportSheetConfiguration)","url":"generate(nuix.Case,java.lang.String,com.nuix.superutilities.reporting.IntersectionReportSheetConfiguration)"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"generateMd5Bytes(Item)","url":"generateMd5Bytes(nuix.Item)"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"generateMd5String(Item)","url":"generateMd5String(nuix.Item)"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"generateRecord(Item)","url":"generateRecord(nuix.Item)"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"generateRecord(List)","url":"generateRecord(java.util.List)"},{"p":"com.nuix.superutilities.reporting","c":"ColumnValueGenerator","l":"generateValue(Case, String)","url":"generateValue(nuix.Case,java.lang.String)"},{"p":"com.nuix.superutilities.reporting","c":"ScriptedColumnValueGenerator","l":"generateValue(Case, String)","url":"generateValue(nuix.Case,java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"get(int)"},{"p":"com.nuix.superutilities.misc","c":"PlaceholderResolver","l":"get(String)","url":"get(java.lang.String)"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getAccessedDateTime()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getAccessedDateTimeString()"},{"p":"com.nuix.superutilities.annotations","c":"CustomMetadataEvent","l":"getAdded()"},{"p":"com.nuix.superutilities.annotations","c":"ItemSetEvent","l":"getAdded()"},{"p":"com.nuix.superutilities.annotations","c":"TagEvent","l":"getAdded()"},{"p":"com.nuix.superutilities.cases","c":"BulkCaseProcessor","l":"getAllowCaseMigration()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"getAlwaysCreateTagOnImport()"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"getApplyHighLights()"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"getApplyRedactions()"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"getAsposeSourcePageRectangle()"},{"p":"com.nuix.superutilities.reporting","c":"SimpleXlsx","l":"getAsposeWorkbook()"},{"p":"com.nuix.superutilities.reporting","c":"SimpleWorksheet","l":"getAsposeWorksheet()"},{"p":"com.nuix.superutilities.annotations","c":"CustodianEvent","l":"getAssigned()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationEvent","l":"getAssociatedItems(Case)","url":"getAssociatedItems(nuix.Case)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"getBatchLoadMaxDate()"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"getBatchLoadMinDate()"},{"p":"com.nuix.superutilities.annotations","c":"ItemSetEvent","l":"getBatchName()"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"getBox()"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"getBugfix()"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"getBuild()"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"getBulkAnnotater()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getCaptureContextualText()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getCaseDirectory()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getCaseDirectoryPath()"},{"p":"com.nuix.superutilities.cases","c":"CaseLockInfo","l":"getCaseInfo()"},{"p":"com.nuix.superutilities.cases","c":"CaseLockedEventInfo","l":"getCaseInfo()"},{"p":"com.nuix.superutilities.cases","c":"CaseOpenErrorEvent","l":"getCaseInfo()"},{"p":"com.nuix.superutilities.cases","c":"WorkFunctionErrorEvent","l":"getCaseInfo()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getCaseSensitive()"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"getCaseUtility()"},{"p":"com.nuix.superutilities.reporting","c":"SimpleWorksheet","l":"getCell(int, int)","url":"getCell(int,int)"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getChildCaseCount()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getChildCases()"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"getChunkSize()"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReport","l":"getColCategoryColorRing()"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"getColCriteria()"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"getColPrimaryCategoryLabel()"},{"p":"com.nuix.superutilities.reporting","c":"ColumnValueGenerator","l":"getColumnLabel()"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"getConcurrency()"},{"p":"com.nuix.superutilities.regex","c":"ItemRegexMatchCollection","l":"getContentMatches()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionResults","l":"getContentTextUpdatedCount()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getContextSize()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getContextualSubString(CharSequence, int, int, int)","url":"getContextualSubString(java.lang.CharSequence,int,int,int)"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getCreationDateTime()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getCreationDateTimeString()"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorProgressInfo","l":"getCurrent()"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"getCurrent()"},{"p":"com.nuix.superutilities.reporting","c":"SimpleWorksheet","l":"getCurrentRow()"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"getCurrentVersion()"},{"p":"com.nuix.superutilities.annotations","c":"CustodianEvent","l":"getCustodian()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"getCustomMetadataFieldPrefix()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getCustomMetadataToScan()"},{"p":"com.nuix.superutilities.loadfiles","c":"SimpleTextFileWriter","l":"getDestinationFile()"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"getDigestCount(File)","url":"getDigestCount(java.io.File)"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"getDigestCustomField()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getDotall()"},{"p":"com.nuix.superutilities.cases","c":"CaseHistoryHelper","l":"getEarliestEventStart(Case)","url":"getEarliestEventStart(nuix.Case)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"getEntityNames()"},{"p":"com.nuix.superutilities.cases","c":"CaseOpenErrorEvent","l":"getError()"},{"p":"com.nuix.superutilities.cases","c":"WorkFunctionErrorEvent","l":"getError()"},{"p":"com.nuix.superutilities.misc","c":"DriveSpaceInfo","l":"getError()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanError","l":"getException()"},{"p":"com.nuix.superutilities.annotations","c":"ExclusionEvent","l":"getExcluded()"},{"p":"com.nuix.superutilities.annotations","c":"ExclusionEvent","l":"getExclusionName()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationEvent","l":"getExpectedItemCount()"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"getExportDirectory()"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"getExportXlsx()"},{"p":"com.nuix.superutilities.regex","c":"PatternInfo","l":"getExpression()"},{"p":"com.nuix.superutilities.regex","c":"RegexMatch","l":"getExpression()"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"getExpressions()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getFbi2File()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getFbi2FilePath()"},{"p":"com.nuix.superutilities.annotations","c":"CustomMetadataEvent","l":"getFieldName()"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"getFilenamePrefix()"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"getFilenameTimestamp()"},{"p":"com.nuix.superutilities.loadfiles","c":"OptLoadFile","l":"getFirstPageRecords()"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"getFolder()"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"getFormatUtility()"},{"p":"com.nuix.superutilities.misc","c":"DriveSpaceInfo","l":"getFreeBytes()"},{"p":"com.nuix.superutilities.misc","c":"DriveSpaceInfo","l":"getFreeGigaBytes()"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"getFreezePanes()"},{"p":"com.nuix.superutilities.misc","c":"TermExpander","l":"getFuzzyResolutionAlgorithm()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getGuid()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"getGuidRefInsertBatchSize()"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFile","l":"getHeadersFromRecord(LinkedHashMap)","url":"getHeadersFromRecord(java.util.LinkedHashMap)"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"getHeadersOnFirstChunkOnly()"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"getHeight()"},{"p":"com.nuix.superutilities.cases","c":"CaseLockInfo","l":"getHost()"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"getHtmlText(String)","url":"getHtmlText(java.lang.String)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"getId()"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"getIncludeChildGuids()"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"getIncludeCustomMetadata()"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"getIncludeItemText()"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"getIncludeParentGuid()"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"getIncludePathGuids()"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"getIncludeProperties()"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"getIncludeTags()"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"getIncludeText()"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"getInstance()"},{"p":"com.nuix.superutilities.cases","c":"CaseUtility","l":"getInstance()"},{"p":"com.nuix.superutilities.items","c":"SuperItemUtility","l":"getInstance()"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"getInstance()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"getIntegerInfo(String)","url":"getIntegerInfo(java.lang.String)"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getInvestigator()"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"getItem()"},{"p":"com.nuix.superutilities.regex","c":"ItemRegexMatchCollection","l":"getItem(Case)","url":"getItem(nuix.Case)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanError","l":"getItem(Case)","url":"getItem(nuix.Case)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanError","l":"getItemGuid()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"getItemId(Item)","url":"getItemId(nuix.Item)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"getItemMarkupCount()"},{"p":"com.nuix.superutilities.items","c":"SuperItemUtility","l":"getItemsAndNeighboringSiblings(List, int, int)","url":"getItemsAndNeighboringSiblings(java.util.List,int,int)"},{"p":"com.nuix.superutilities.annotations","c":"ItemSetEvent","l":"getItemSetName()"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"getItemUtility()"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"getJarDirectory()"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"getJarDirectoryPath()"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"getJarFile()"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"getJarFilePath()"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"getKeepOriginalDat()"},{"p":"com.nuix.superutilities.reporting","c":"ColumnValueGenerator","l":"getLabel()"},{"p":"com.nuix.superutilities.misc","c":"DriveSpaceInfo","l":"getLastUpdated()"},{"p":"com.nuix.superutilities.cases","c":"CaseHistoryHelper","l":"getLatestEventStart(Case)","url":"getLatestEventStart(nuix.Case)"},{"p":"com.nuix.superutilities.regex","c":"RegexMatch","l":"getLocation()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanError","l":"getLocation()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getLockProperties()"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"getMajor()"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"getMarkupSet(Case)","url":"getMarkupSet(nuix.Case)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"getMarkupSetId(MarkupSet)","url":"getMarkupSetId(nuix.MarkupSet)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"getMarkupSetName()"},{"p":"com.nuix.superutilities.regex","c":"ItemRegexMatchCollection","l":"getMatchCount()"},{"p":"com.nuix.superutilities.misc","c":"ExpandedTermInfo","l":"getMatchedTerm()"},{"p":"com.nuix.superutilities.regex","c":"RegexMatch","l":"getMatchEnd()"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorProgressInfo","l":"getMatches()"},{"p":"com.nuix.superutilities.regex","c":"ItemRegexMatchCollection","l":"getMatches()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getMatchNamedEntityValues()"},{"p":"com.nuix.superutilities.regex","c":"RegexMatch","l":"getMatchStart()"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"getMinor()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getMultiline()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getName()"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"getName()"},{"p":"com.nuix.superutilities.reporting","c":"NamedQuery","l":"getName()"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"getNamedEntityTypes()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getNamedEntityTypes()"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"getNuixUtilities()"},{"p":"com.nuix.superutilities.misc","c":"ExpandedTermInfo","l":"getOcurrences()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"getOnlyRecordChanges()"},{"p":"com.nuix.superutilities.annotations","c":"ItemSetEvent","l":"getOrCreateRelatedItemSet(Case)","url":"getOrCreateRelatedItemSet(nuix.Case)"},{"p":"com.nuix.superutilities.misc","c":"ExpandedTermInfo","l":"getOriginalTerm()"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"getPageNumber()"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"getPages()"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"getPath()"},{"p":"com.nuix.superutilities.misc","c":"DriveSpaceInfo","l":"getPathString()"},{"p":"com.nuix.superutilities.regex","c":"PatternInfo","l":"getPattern()"},{"p":"com.nuix.superutilities.regex","c":"RegexMatch","l":"getPatternInfo()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanError","l":"getPatternInfo()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getPatterns()"},{"p":"com.nuix.superutilities.export","c":"PdfWorkCache","l":"getPdfPath(Item)","url":"getPdfPath(nuix.Item)"},{"p":"com.nuix.superutilities.items","c":"SuperItemUtility","l":"getPhysicalAncestorPath(Item)","url":"getPhysicalAncestorPath(nuix.Item)"},{"p":"com.nuix.superutilities.misc","c":"PlaceholderResolver","l":"getPlaceholderData()"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"getPrettyPrint()"},{"p":"com.nuix.superutilities.cases","c":"CaseLockInfo","l":"getProduct()"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"getProfile()"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"getProfile()"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"getProfile()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getPropertiesToScan()"},{"p":"com.nuix.superutilities.regex","c":"ItemRegexMatchCollection","l":"getPropertyMatches()"},{"p":"com.nuix.superutilities.reporting","c":"NamedQuery","l":"getQuery()"},{"p":"com.nuix.superutilities.cases","c":"CaseLockedEventInfo","l":"getReaction()"},{"p":"com.nuix.superutilities.cases","c":"CaseOpenErrorEvent","l":"getReaction()"},{"p":"com.nuix.superutilities.cases","c":"WorkFunctionErrorEvent","l":"getReaction()"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"getRecordDigest()"},{"p":"com.nuix.superutilities.loadfiles","c":"OptLoadFile","l":"getRecords()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"getRecordTimeOfRedaction()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"getRedactContentText()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"getRedactionReplacementTemplate()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"getRedactProperties()"},{"p":"com.nuix.superutilities.export","c":"PdfWorkCache","l":"getRegenerateStored()"},{"p":"com.nuix.superutilities.annotations","c":"ItemSetEvent","l":"getRelatedItemSet(Case)","url":"getRelatedItemSet(nuix.Case)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"getRowCategoryLabel()"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"getRowCriteria()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getSavedByName()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getSavedByVersion()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getScanContent()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getScanCustomMetadata()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getScanProperties()"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"getScopeQuery()"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"getSerializeNulls()"},{"p":"com.nuix.superutilities.annotations","c":"ItemSetEvent","l":"getSettings()"},{"p":"com.nuix.superutilities.reporting","c":"SimpleXlsx","l":"getSheet(String)","url":"getSheet(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"ExpandedTermInfo","l":"getSimilarity()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"getSnapshotFirstSync()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationEvent","l":"getSourceRepo()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"getSpecificProperties()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"getStoreCount()"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getStringCustomMetadata(Item, Set)","url":"getStringCustomMetadata(nuix.Item,java.util.Set)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"getStringProperties(Item, Set)","url":"getStringProperties(nuix.Item,java.util.Set)"},{"p":"com.nuix.superutilities.reporting","c":"SimpleWorksheet","l":"getStyle(int, int)","url":"getStyle(int,int)"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"getSuperItemUtility()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationSyncSettings","l":"getSyncCustodianEvents()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationSyncSettings","l":"getSyncCustomMetadataEvents()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationSyncSettings","l":"getSyncExclusionEvents()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationSyncSettings","l":"getSyncItemSetEvents()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationSyncSettings","l":"getSyncProductionSetEvents()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationSyncSettings","l":"getSyncTagEvents()"},{"p":"com.nuix.superutilities.annotations","c":"TagEvent","l":"getTag()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"getTagId(String)","url":"getTagId(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"getTagsForGuid(String)","url":"getTagsForGuid(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"getTagsForMd5(String)","url":"getTagsForMd5(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"FuzzyTermInfo","l":"getTargetSimilarity()"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"getTempDirectory()"},{"p":"com.nuix.superutilities.misc","c":"FuzzyTermInfo","l":"getTerm()"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"getText()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"getTextInfo(String)","url":"getTextInfo(java.lang.String)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"getTimeOfRedactionFieldName()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationEvent","l":"getTimeStamp()"},{"p":"com.nuix.superutilities.reporting","c":"AsposeCellsColorHelper","l":"getTint(Color, float)","url":"getTint(com.aspose.cells.Color,float)"},{"p":"com.nuix.superutilities.reporting","c":"AsposeCellsColorHelper","l":"getTint(int, int, int, float)","url":"getTint(int,int,int,float)"},{"p":"com.nuix.superutilities.regex","c":"PatternInfo","l":"getTitle()"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorProgressInfo","l":"getTotal()"},{"p":"com.nuix.superutilities.misc","c":"DriveSpaceInfo","l":"getTotalBytes()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"getTotalEventCount()"},{"p":"com.nuix.superutilities.misc","c":"DriveSpaceInfo","l":"getTotalGigaBytes()"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"getUnitBase()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionResults","l":"getUpdatedItemCount()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionResults","l":"getUpdatedProperties()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionResults","l":"getUpdatedPropertyNames()"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"getUseExistingValueWhenPresent()"},{"p":"com.nuix.superutilities.cases","c":"CaseLockInfo","l":"getUser()"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"getUseSIUnits()"},{"p":"com.nuix.superutilities.annotations","c":"CustomMetadataEvent","l":"getValue()"},{"p":"com.nuix.superutilities.regex","c":"RegexMatch","l":"getValue()"},{"p":"com.nuix.superutilities.reporting","c":"SimpleWorksheet","l":"getValue(int, int)","url":"getValue(int,int)"},{"p":"com.nuix.superutilities.annotations","c":"CustomMetadataEvent","l":"getValueAsByteArray()"},{"p":"com.nuix.superutilities.annotations","c":"CustomMetadataEvent","l":"getValueAsDateTime()"},{"p":"com.nuix.superutilities.annotations","c":"CustomMetadataEvent","l":"getValueAsDouble()"},{"p":"com.nuix.superutilities.annotations","c":"CustomMetadataEvent","l":"getValueAsInteger()"},{"p":"com.nuix.superutilities.annotations","c":"CustomMetadataEvent","l":"getValueAsLong()"},{"p":"com.nuix.superutilities.annotations","c":"CustomMetadataEvent","l":"getValueAsString()"},{"p":"com.nuix.superutilities.regex","c":"RegexMatch","l":"getValueContext()"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"getValueGenerators()"},{"p":"com.nuix.superutilities.annotations","c":"CustomMetadataEvent","l":"getValueType()"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"getVolume()"},{"p":"com.nuix.superutilities.loadfiles","c":"OptLoadFile","l":"getVolumeNames()"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"getWidth()"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"getX()"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"getY()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationMatchingMethod","l":"GUID"},{"p":"com.nuix.superutilities.misc","c":"DriveSpaceInfo","l":"hadError()"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"hasBatchLoadDateCriteria()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"hashCode()"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"hashCode()"},{"p":"com.nuix.superutilities.cases","c":"CaseHistoryHelper","l":"hasNext()"},{"p":"com.nuix.superutilities.reporting","c":"ColorRing","l":"hasNext()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"hasSameGuidAs(Case)","url":"hasSameGuidAs(nuix.Case)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"hexToBytes(String)","url":"hexToBytes(java.lang.String)"},{"p":"com.nuix.superutilities.export","c":"TemplateExporter","l":"htmlToPdf(String, File)","url":"htmlToPdf(java.lang.String,java.io.File)"},{"p":"com.nuix.superutilities.export","c":"TemplateExporter","l":"htmlToPdf(String, String)","url":"htmlToPdf(java.lang.String,java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"importCaseLevelDigestList(Case, String)","url":"importCaseLevelDigestList(nuix.Case,java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"importFile(File)","url":"importFile(java.io.File)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"importFile(String)","url":"importFile(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"importSystemLevelDigestList(String)","url":"importSystemLevelDigestList(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"importUserLevelDigestList(String)","url":"importUserLevelDigestList(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"indexOf(Object)","url":"indexOf(java.lang.Object)"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"init(Utilities, String)","url":"init(nuix.Utilities,java.lang.String)"},{"p":"com.nuix.superutilities.reporting","c":"SimpleXlsx","l":"initializeAspose()"},{"p":"com.nuix.superutilities.cases","c":"CaseUtility","l":"instance"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"integerCategory"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReport","l":"IntersectionReport(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"IntersectionReportSheetConfiguration()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"isAtLeast(NuixVersion)","url":"isAtLeast(com.nuix.superutilities.misc.NuixVersion)"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"isAtLeast(String)","url":"isAtLeast(java.lang.String)"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"isCompound()"},{"p":"com.nuix.superutilities.regex","c":"RegexMatch","l":"isContentMatch()"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"isEmpty()"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"isEqualTo(NuixVersion)","url":"isEqualTo(com.nuix.superutilities.misc.NuixVersion)"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"isEqualTo(String)","url":"isEqualTo(java.lang.String)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"isFirstPage()"},{"p":"com.nuix.superutilities.misc","c":"FuzzyTermInfo","l":"isFuzzyTerm(String)","url":"isFuzzyTerm(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"isGreaterThan(NuixVersion)","url":"isGreaterThan(com.nuix.superutilities.misc.NuixVersion)"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"isGreaterThan(String)","url":"isGreaterThan(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"isLessThan(NuixVersion)","url":"isLessThan(com.nuix.superutilities.misc.NuixVersion)"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"isLessThan(String)","url":"isLessThan(java.lang.String)"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"isLocked()"},{"p":"com.nuix.superutilities.regex","c":"ItemRegexMatchCollection","l":"ItemRegexMatchCollection(Item)","url":"%3Cinit%3E(nuix.Item)"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter.ChunkInfo","l":"items"},{"p":"com.nuix.superutilities.items","c":"SuperItemUtility","l":"itemsAreSiblings(Item, Item)","url":"itemsAreSiblings(nuix.Item,nuix.Item)"},{"p":"com.nuix.superutilities.annotations","c":"ItemSetEvent","l":"ItemSetEvent()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"itemTypeMapCache"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"iterator()"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"iterator()"},{"p":"com.nuix.superutilities.misc","c":"SimilarityCalculation","l":"JaroWinkler"},{"p":"com.nuix.superutilities.query","c":"QueryHelper","l":"joinByAnd(Collection)","url":"joinByAnd(java.util.Collection)"},{"p":"com.nuix.superutilities.query","c":"QueryHelper","l":"joinByOr(Collection)","url":"joinByOr(java.util.Collection)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"JsonExporter()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.reporting","c":"ColumnValueGenerator","l":"label"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"lastIndexOf(Object)","url":"lastIndexOf(java.lang.Object)"},{"p":"com.nuix.superutilities.misc","c":"LevenshteinDistance","l":"LevenshteinDistance()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"listIterator()"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"listIterator(int)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"longCategory"},{"p":"com.nuix.superutilities.misc","c":"SimilarityCalculation","l":"LuceneLevenshstein"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"makeGuidPath(Item, File, String)","url":"makeGuidPath(nuix.Item,java.io.File,java.lang.String)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"mapAddress(Address)","url":"mapAddress(nuix.Address)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"mapAddresses(List
    )","url":"mapAddresses(java.util.List)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"mapCommunication(Communication)","url":"mapCommunication(nuix.Communication)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"mapItem(Item)","url":"mapItem(nuix.Item)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"mapItemType(ItemType)","url":"mapItemType(nuix.ItemType)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"mapProperties(Map)","url":"mapProperties(java.util.Map)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"mapSourceItem(SourceItem)","url":"mapSourceItem(nuix.SourceItem)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"mapWorkerItem(WorkerItem)","url":"mapWorkerItem(nuix.WorkerItem)"},{"p":"com.nuix.superutilities.query","c":"QueryHelper","l":"markupSetQuery(MarkupSet)","url":"markupSetQuery(nuix.MarkupSet)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationMatchingMethod","l":"MD5"},{"p":"com.nuix.superutilities.reporting","c":"SimpleWorksheet","l":"mergeCols(int, int, int)","url":"mergeCols(int,int,int)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionResults","l":"mergeOther(NamedEntityRedactionResults)","url":"mergeOther(com.nuix.superutilities.namedentities.NamedEntityRedactionResults)"},{"p":"com.nuix.superutilities.misc","c":"PdfUtility","l":"mergePdfFiles(File, List, boolean, List)","url":"mergePdfFiles(java.io.File,java.util.List,boolean,java.util.List)"},{"p":"com.nuix.superutilities.misc","c":"PdfUtility","l":"mergePdfFiles(String, List, boolean, List)","url":"mergePdfFiles(java.lang.String,java.util.List,boolean,java.util.List)"},{"p":"com.nuix.superutilities.misc","c":"FreeSpaceMonitorEventCallback","l":"monitorEventOccurred(FreeSpaceMonitor, DriveSpaceInfo)","url":"monitorEventOccurred(com.nuix.superutilities.misc.FreeSpaceMonitor,com.nuix.superutilities.misc.DriveSpaceInfo)"},{"p":"com.nuix.superutilities.query","c":"QueryHelper","l":"namedEntityQuery(Collection)","url":"namedEntityQuery(java.util.Collection)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionResults","l":"NamedEntityRedactionResults()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"NamedEntityRedactionSettings()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityUtility","l":"NamedEntityUtility()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.reporting","c":"NamedQuery","l":"NamedQuery()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.reporting","c":"NamedQuery","l":"NamedQuery(String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"NamedStringList()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.cases","c":"CaseHistoryHelper","l":"next()"},{"p":"com.nuix.superutilities.reporting","c":"ColorRing","l":"next()"},{"p":"com.nuix.superutilities.misc","c":"SimilarityCalculation","l":"NGram"},{"p":"com.nuix.superutilities.query","c":"QueryHelper","l":"notJoinByAnd(Collection)","url":"notJoinByAnd(java.util.Collection)"},{"p":"com.nuix.superutilities.query","c":"QueryHelper","l":"notJoinByOr(Collection)","url":"notJoinByOr(java.util.Collection)"},{"p":"com.nuix.superutilities.misc","c":"SimilarityCalculation","l":"Nuix"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"NuixImageAnnotationRegion()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"NuixVersion()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"NuixVersion(int, int, int, int)","url":"%3Cinit%3E(int,int,int,int)"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"NuixVersion(int, int, int)","url":"%3Cinit%3E(int,int,int)"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"NuixVersion(int, int)","url":"%3Cinit%3E(int,int)"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"NuixVersion(int)","url":"%3Cinit%3E(int)"},{"p":"com.nuix.superutilities.cases","c":"BulkCaseProcessor","l":"onCaseIsLocked(Consumer)","url":"onCaseIsLocked(java.util.function.Consumer)"},{"p":"com.nuix.superutilities.cases","c":"BulkCaseProcessor","l":"onErrorOpeningCase(Consumer)","url":"onErrorOpeningCase(java.util.function.Consumer)"},{"p":"com.nuix.superutilities.cases","c":"BulkCaseProcessor","l":"onUserFunctionError(Consumer)","url":"onUserFunctionError(java.util.function.Consumer)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptLoadFile","l":"OptLoadFile()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"OptRecord()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.query","c":"QueryHelper","l":"orTagQuery(Collection)","url":"orTagQuery(java.util.Collection)"},{"p":"com.nuix.superutilities.query","c":"QueryHelper","l":"orTagQuery(String...)","url":"orTagQuery(java.lang.String...)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"otherCategory"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"parallelStream()"},{"p":"com.nuix.superutilities.query","c":"QueryHelper","l":"parenThenJoinByAnd(Collection)","url":"parenThenJoinByAnd(java.util.Collection)"},{"p":"com.nuix.superutilities.query","c":"QueryHelper","l":"parenThenJoinByOr(Collection)","url":"parenThenJoinByOr(java.util.Collection)"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"parse(String)","url":"parse(java.lang.String)"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"parseFbi2File()"},{"p":"com.nuix.superutilities.misc","c":"FuzzyTermInfo","l":"parseFuzzyTerm(String)","url":"parseFuzzyTerm(java.lang.String)"},{"p":"com.nuix.superutilities.regex","c":"PatternInfo","l":"PatternInfo(String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"PdfUtility","l":"PdfUtility()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.export","c":"PdfWorkCache","l":"PdfWorkCache(File)","url":"%3Cinit%3E(java.io.File)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"phraseToExpression(String)","url":"phraseToExpression(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"PlaceholderResolver","l":"PlaceholderResolver()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.annotations","c":"ProductionSetEvent","l":"ProductionSetEvent()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"ProfileDigester()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"ProfileDigester(MetadataProfile)","url":"%3Cinit%3E(nuix.MetadataProfile)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionProgressCallback","l":"progressUpdated(int, int, NamedEntityRedactionResults)","url":"progressUpdated(int,int,com.nuix.superutilities.namedentities.NamedEntityRedactionResults)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportProgressCallback","l":"progressUpdated(int, int)","url":"progressUpdated(int,int)"},{"p":"com.nuix.superutilities.loadfiles","c":"SimpleTextFileWriter","l":"pw"},{"p":"com.nuix.superutilities.query","c":"QueryHelper","l":"QueryHelper()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityUtility","l":"recordRedactedCopies(Case, Collection, NamedEntityRedactionSettings)","url":"recordRedactedCopies(nuix.Case,java.util.Collection,com.nuix.superutilities.namedentities.NamedEntityRedactionSettings)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityUtility","l":"recordRedactedCopies(Case, NamedEntityRedactionSettings)","url":"recordRedactedCopies(nuix.Case,com.nuix.superutilities.namedentities.NamedEntityRedactionSettings)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityUtility","l":"recordRedactedCopies(Collection, NamedEntityRedactionSettings)","url":"recordRedactedCopies(java.util.Collection,com.nuix.superutilities.namedentities.NamedEntityRedactionSettings)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityUtility","l":"recordRedactedCopies(Item, NamedEntityRedactionSettings)","url":"recordRedactedCopies(nuix.Item,com.nuix.superutilities.namedentities.NamedEntityRedactionSettings)"},{"p":"com.nuix.superutilities.misc","c":"DriveSpaceInfo","l":"refresh()"},{"p":"com.nuix.superutilities.regex","c":"RegexMatch","l":"RegexMatch(PatternInfo, String, boolean, String, String, int, int)","url":"%3Cinit%3E(com.nuix.superutilities.regex.PatternInfo,java.lang.String,boolean,java.lang.String,java.lang.String,int,int)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanError","l":"RegexScanError(Item, PatternInfo, String, Exception)","url":"%3Cinit%3E(nuix.Item,com.nuix.superutilities.regex.PatternInfo,java.lang.String,java.lang.Exception)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"RegexScanner()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"remove(int)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"remove(Object)","url":"remove(java.lang.Object)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"removeAll(Collection)","url":"removeAll(java.util.Collection)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"removeDynamicPlaceholder(String)","url":"removeDynamicPlaceholder(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"removeIf(Predicate)","url":"removeIf(java.util.function.Predicate)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"removeItem(Item)","url":"removeItem(nuix.Item)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"removeItems(Collection)","url":"removeItems(java.util.Collection)"},{"p":"com.nuix.superutilities.items","c":"SuperItemUtility","l":"removeItemsResponsiveToQuery(Case, Collection, String)","url":"removeItemsResponsiveToQuery(nuix.Case,java.util.Collection,java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"removeMd5(byte[])"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"removeMd5(String)","url":"removeMd5(java.lang.String)"},{"p":"com.nuix.superutilities.export","c":"TemplateExporter","l":"render(Item, Map)","url":"render(nuix.Item,java.util.Map)"},{"p":"com.nuix.superutilities.export","c":"TemplateExporter","l":"render(Item)","url":"render(nuix.Item)"},{"p":"com.nuix.superutilities.export","c":"TemplateExporter","l":"renderToFile(Item, File, Map)","url":"renderToFile(nuix.Item,java.io.File,java.util.Map)"},{"p":"com.nuix.superutilities.export","c":"TemplateExporter","l":"renderToFile(Item, String, Map)","url":"renderToFile(nuix.Item,java.lang.String,java.util.Map)"},{"p":"com.nuix.superutilities.export","c":"TemplateExporter","l":"renderToPdf(Item, File, Map)","url":"renderToPdf(nuix.Item,java.io.File,java.util.Map)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"replaceAll(UnaryOperator)","url":"replaceAll(java.util.function.UnaryOperator)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationEvent","l":"replay(Case)","url":"replay(nuix.Case)"},{"p":"com.nuix.superutilities.annotations","c":"CustodianEvent","l":"replay(Case)","url":"replay(nuix.Case)"},{"p":"com.nuix.superutilities.annotations","c":"CustomMetadataEvent","l":"replay(Case)","url":"replay(nuix.Case)"},{"p":"com.nuix.superutilities.annotations","c":"ExclusionEvent","l":"replay(Case)","url":"replay(nuix.Case)"},{"p":"com.nuix.superutilities.annotations","c":"ItemSetEvent","l":"replay(Case)","url":"replay(nuix.Case)"},{"p":"com.nuix.superutilities.annotations","c":"ProductionSetEvent","l":"replay(Case)","url":"replay(nuix.Case)"},{"p":"com.nuix.superutilities.annotations","c":"TagEvent","l":"replay(Case)","url":"replay(nuix.Case)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"resolvePlaceholders(String, Map)","url":"resolvePlaceholders(java.lang.String,java.util.Map)"},{"p":"com.nuix.superutilities.misc","c":"PlaceholderResolver","l":"resolveTemplate(String)","url":"resolveTemplate(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"PlaceholderResolver","l":"resolveTemplateMultiValues(String, List)","url":"resolveTemplateMultiValues(java.lang.String,java.util.List)"},{"p":"com.nuix.superutilities.misc","c":"PlaceholderResolver","l":"resolveTemplatePath(String)","url":"resolveTemplatePath(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"PlaceholderResolver","l":"resolveTemplatePathMultiValues(String, List)","url":"resolveTemplatePathMultiValues(java.lang.String,java.util.List)"},{"p":"com.nuix.superutilities.reporting","c":"ColorRing","l":"restart()"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"retainAll(Collection)","url":"retainAll(java.util.Collection)"},{"p":"com.nuix.superutilities.cases","c":"CaseIssueReaction","l":"Retry"},{"p":"com.nuix.superutilities.cases","c":"CaseLockedEventInfo","l":"retry()"},{"p":"com.nuix.superutilities.cases","c":"CaseOpenErrorEvent","l":"retry()"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"round(double, int)","url":"round(double,int)"},{"p":"com.nuix.superutilities.reporting","c":"SimpleXlsx","l":"save()"},{"p":"com.nuix.superutilities.reporting","c":"SimpleXlsx","l":"saveAs(String)","url":"saveAs(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"saveCaseLevelDigestList(Case, String)","url":"saveCaseLevelDigestList(nuix.Case,java.lang.String)"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"saveDiagnostics(File)","url":"saveDiagnostics(java.io.File)"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"saveDiagnostics(String)","url":"saveDiagnostics(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"saveFile(File)","url":"saveFile(java.io.File)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityUtility","l":"saveRedactionProfile(File, NamedEntityRedactionResults, NamedEntityRedactionSettings)","url":"saveRedactionProfile(java.io.File,com.nuix.superutilities.namedentities.NamedEntityRedactionResults,com.nuix.superutilities.namedentities.NamedEntityRedactionSettings)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityUtility","l":"saveRedactionProfile(String, NamedEntityRedactionResults, NamedEntityRedactionSettings)","url":"saveRedactionProfile(java.lang.String,com.nuix.superutilities.namedentities.NamedEntityRedactionResults,com.nuix.superutilities.namedentities.NamedEntityRedactionSettings)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"saveSystemLevelDigestList(String)","url":"saveSystemLevelDigestList(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"saveUserLevelDigestList(String)","url":"saveUserLevelDigestList(java.lang.String)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"scanItem(Item)","url":"scanItem(nuix.Item)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"scanItems(Collection, Consumer)","url":"scanItems(java.util.Collection,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"scanItems(Collection)","url":"scanItems(java.util.Collection)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"scanItemsParallel(Collection, Consumer, int)","url":"scanItemsParallel(java.util.Collection,java.util.function.Consumer,int)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"scanItemsParallel(Collection, Consumer)","url":"scanItemsParallel(java.util.Collection,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.reporting","c":"ScriptedColumnValueGenerator","l":"ScriptedColumnValueGenerator(String, BiFunction)","url":"%3Cinit%3E(java.lang.String,java.util.function.BiFunction)"},{"p":"com.nuix.superutilities.reporting","c":"ScriptedColumnValueGenerator","l":"ScriptedColumnValueGenerator(String, String, BiFunction)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.util.function.BiFunction)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"secondsToElapsedString(Double)","url":"secondsToElapsedString(java.lang.Double)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"secondsToElapsedString(long)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"set(int, String)","url":"set(int,java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"PlaceholderResolver","l":"set(String, String)","url":"set(java.lang.String,java.lang.String)"},{"p":"com.nuix.superutilities.cases","c":"BulkCaseProcessor","l":"setAllowCaseMigration(boolean)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"setAlwaysCreateTagOnImport(boolean)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"setApplyHighLights(boolean)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"setApplyRedactions(boolean)"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"setAsposeSourcePageRectangle(Rectangle)","url":"setAsposeSourcePageRectangle(com.aspose.pdf.Rectangle)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"setBatchLoadMaxDate(DateTime)","url":"setBatchLoadMaxDate(org.joda.time.DateTime)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"setBatchLoadMinDate(DateTime)","url":"setBatchLoadMinDate(org.joda.time.DateTime)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"setBox(String)","url":"setBox(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"setBugfix(int)"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"setBuild(int)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"setCaptureContextualText(boolean)"},{"p":"com.nuix.superutilities.cases","c":"CaseLockInfo","l":"setCaseInfo(CaseInfo)","url":"setCaseInfo(com.nuix.superutilities.cases.CaseInfo)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"setCaseSensitive(boolean)"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"setChunkSize(int)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReport","l":"setColCategoryColorRing(ColorRing)","url":"setColCategoryColorRing(com.nuix.superutilities.reporting.ColorRing)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"setColCriteria(List)","url":"setColCriteria(java.util.List)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"setColPrimaryCategoryLabel(String)","url":"setColPrimaryCategoryLabel(java.lang.String)"},{"p":"com.nuix.superutilities.reporting","c":"ColumnValueGenerator","l":"setColumnLabel(String)","url":"setColumnLabel(java.lang.String)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"setColumnRemovals(Collection)","url":"setColumnRemovals(java.util.Collection)"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"setConcurrency(int)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"setContextSize(int)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorProgressInfo","l":"setCurrent(int)"},{"p":"com.nuix.superutilities.reporting","c":"SimpleWorksheet","l":"setCurrentRow(int)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"setCustomMetadataFieldPrefix(String)","url":"setCustomMetadataFieldPrefix(java.lang.String)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"setCustomMetadataToScan(List)","url":"setCustomMetadataToScan(java.util.List)"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"setDigestCustomField(String)","url":"setDigestCustomField(java.lang.String)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"setDotall(boolean)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"setDynamicPlaceholder(String, BiFunction)","url":"setDynamicPlaceholder(java.lang.String,java.util.function.BiFunction)"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"setExportDirectory(File)","url":"setExportDirectory(java.io.File)"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"setExportDirectory(String)","url":"setExportDirectory(java.lang.String)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"setExportXlsx(boolean)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"setExpressions(Collection)","url":"setExpressions(java.util.Collection)"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"setFilenamePrefix(String)","url":"setFilenamePrefix(java.lang.String)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"setFirstPage(boolean)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"setFolder(String)","url":"setFolder(java.lang.String)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"setFreezePanes(boolean)"},{"p":"com.nuix.superutilities.misc","c":"PlaceholderResolver","l":"setFromItem(Item)","url":"setFromItem(nuix.Item)"},{"p":"com.nuix.superutilities.misc","c":"TermExpander","l":"setFuzzyResolutionAlgorithm(SimilarityCalculation)","url":"setFuzzyResolutionAlgorithm(com.nuix.superutilities.misc.SimilarityCalculation)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"setGuidRefInsertBatchSize(int)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"setHeaderRenames(Map)","url":"setHeaderRenames(java.util.Map)"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"setHeadersOnFirstChunkOnly(boolean)"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"setHeight(double)"},{"p":"com.nuix.superutilities.cases","c":"CaseLockInfo","l":"setHost(String)","url":"setHost(java.lang.String)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"setId(String)","url":"setId(java.lang.String)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"setImagingOptions(Map)","url":"setImagingOptions(java.util.Map)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"setIncludeChildGuids(boolean)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"setIncludeCustomMetadata(boolean)"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"setIncludeItemText(boolean)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"setIncludeParentGuid(boolean)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"setIncludePathGuids(boolean)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"setIncludeProperties(boolean)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"setIncludeTags(boolean)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"setIncludeText(boolean)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"setIntegerInfo(String, Long)","url":"setIntegerInfo(java.lang.String,java.lang.Long)"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"setItem(Item)","url":"setItem(nuix.Item)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"setKeepOriginalDat(boolean)"},{"p":"com.nuix.superutilities.reporting","c":"ColumnValueGenerator","l":"setLabel(String)","url":"setLabel(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"setMajor(int)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"setMarkupSetName(String)","url":"setMarkupSetName(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"ExpandedTermInfo","l":"setMatchedTerm(String)","url":"setMatchedTerm(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorProgressInfo","l":"setMatches(int)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"setMatchNamedEntityValues(boolean)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"setMaxToStringLength(int)"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"setMinor(int)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"setMultiline(boolean)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"setName(String)","url":"setName(java.lang.String)"},{"p":"com.nuix.superutilities.reporting","c":"NamedQuery","l":"setName(String)","url":"setName(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"setNamedEntityTypes(Collection)","url":"setNamedEntityTypes(java.util.Collection)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"setNamedEntityTypes(Collection)","url":"setNamedEntityTypes(java.util.Collection)"},{"p":"com.nuix.superutilities.misc","c":"ExpandedTermInfo","l":"setOcurrences(long)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"setOnlyRecordChanges(boolean)"},{"p":"com.nuix.superutilities.misc","c":"ExpandedTermInfo","l":"setOriginalTerm(String)","url":"setOriginalTerm(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"setPageNumber(int)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"setPages(int)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"setParallelProcessingSettings(Map)","url":"setParallelProcessingSettings(java.util.Map)"},{"p":"com.nuix.superutilities.misc","c":"PlaceholderResolver","l":"setPath(String, String)","url":"setPath(java.lang.String,java.lang.String)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"setPath(String)","url":"setPath(java.lang.String)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"setPatterns(List)","url":"setPatterns(java.util.List)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"setPrettyPrint(boolean)"},{"p":"com.nuix.superutilities.cases","c":"CaseLockInfo","l":"setProduct(String)","url":"setProduct(java.lang.String)"},{"p":"com.nuix.superutilities.export","c":"ChunkedDATExporter","l":"setProfile(MetadataProfile)","url":"setProfile(nuix.MetadataProfile)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"setProfile(MetadataProfile)","url":"setProfile(nuix.MetadataProfile)"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"setProfile(MetadataProfile)","url":"setProfile(nuix.MetadataProfile)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"setPropertiesToScan(List)","url":"setPropertiesToScan(java.util.List)"},{"p":"com.nuix.superutilities.reporting","c":"NamedQuery","l":"setQuery(String)","url":"setQuery(java.lang.String)"},{"p":"com.nuix.superutilities.cases","c":"CaseLockedEventInfo","l":"setReaction(CaseIssueReaction)","url":"setReaction(com.nuix.superutilities.cases.CaseIssueReaction)"},{"p":"com.nuix.superutilities.cases","c":"CaseOpenErrorEvent","l":"setReaction(CaseIssueReaction)","url":"setReaction(com.nuix.superutilities.cases.CaseIssueReaction)"},{"p":"com.nuix.superutilities.cases","c":"WorkFunctionErrorEvent","l":"setReaction(CaseIssueReaction)","url":"setReaction(com.nuix.superutilities.cases.CaseIssueReaction)"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"setRecordDigest(boolean)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptLoadFile","l":"setRecords(List)","url":"setRecords(java.util.List)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"setRecordTimeOfRedaction(boolean)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"setRedactContentText(boolean)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"setRedactionReplacementTemplate(String)","url":"setRedactionReplacementTemplate(java.lang.String)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"setRedactProperties(boolean)"},{"p":"com.nuix.superutilities.export","c":"PdfWorkCache","l":"setRegenerateStored(boolean)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"setRowCategoryLabel(String)","url":"setRowCategoryLabel(java.lang.String)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"setRowCriteria(List)","url":"setRowCriteria(java.util.List)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"setScanContent(boolean)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"setScanCustomMetadata(boolean)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"setScanProperties(boolean)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"setScopeQuery(String)","url":"setScopeQuery(java.lang.String)"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"setSerializeNulls(boolean)"},{"p":"com.nuix.superutilities.misc","c":"ExpandedTermInfo","l":"setSimilarity(Double)","url":"setSimilarity(java.lang.Double)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"setSnapshotFirstSync(boolean)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"setSpecificProperties(Collection)","url":"setSpecificProperties(java.util.Collection)"},{"p":"com.nuix.superutilities.export","c":"CustomExporter","l":"setStampingOptions(Map)","url":"setStampingOptions(java.util.Map)"},{"p":"com.nuix.superutilities.reporting","c":"SimpleWorksheet","l":"setStyle(int, int, Style)","url":"setStyle(int,int,com.aspose.cells.Style)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationSyncSettings","l":"setSyncCustodianEvents(boolean)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationSyncSettings","l":"setSyncCustomMetadataEvents(boolean)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationSyncSettings","l":"setSyncExclusionEvents(boolean)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationSyncSettings","l":"setSyncItemSetEvents(boolean)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"setSyncPoint(DateTime)","url":"setSyncPoint(org.joda.time.DateTime)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"setSyncPointFromDestinationCaseLastEvent(Case)","url":"setSyncPointFromDestinationCaseLastEvent(nuix.Case)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"setSyncPointToNow()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationSyncSettings","l":"setSyncProductionSetEvents(boolean)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationSyncSettings","l":"setSyncTagEvents(boolean)"},{"p":"com.nuix.superutilities.misc","c":"FuzzyTermInfo","l":"setTargetSimilarity(float)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"setTempDirectory(File)","url":"setTempDirectory(java.io.File)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"setTempDirectory(String)","url":"setTempDirectory(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"FuzzyTermInfo","l":"setTerm(String)","url":"setTerm(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"setText(String)","url":"setText(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"setTextInfo(String, String)","url":"setTextInfo(java.lang.String,java.lang.String)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionSettings","l":"setTimeOfRedactionFieldName(String)","url":"setTimeOfRedactionFieldName(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorProgressInfo","l":"setTotal(int)"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"setUseExistingValueWhenPresent(boolean)"},{"p":"com.nuix.superutilities.cases","c":"CaseLockInfo","l":"setUser(String)","url":"setUser(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"setUseSIUnits(boolean)"},{"p":"com.nuix.superutilities.reporting","c":"SimpleWorksheet","l":"setValue(int, int, Object)","url":"setValue(int,int,java.lang.Object)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReportSheetConfiguration","l":"setValueGenerators(List)","url":"setValueGenerators(java.util.List)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"setVolume(String)","url":"setVolume(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"setWidth(double)"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"setX(double)"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"setY(double)"},{"p":"com.nuix.superutilities.misc","c":"FreeSpaceMonitor","l":"shutdownMonitoring()"},{"p":"com.nuix.superutilities.cases","c":"BulkCaseProcessor","l":"signalAbort()"},{"p":"com.nuix.superutilities.loadfiles","c":"SimpleTextFileReader","l":"SimpleTextFileReader()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.loadfiles","c":"SimpleTextFileWriter","l":"SimpleTextFileWriter(File)","url":"%3Cinit%3E(java.io.File)"},{"p":"com.nuix.superutilities.reporting","c":"SimpleXlsx","l":"SimpleXlsx(File)","url":"%3Cinit%3E(java.io.File)"},{"p":"com.nuix.superutilities.reporting","c":"SimpleXlsx","l":"SimpleXlsx(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"DigestList","l":"size()"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"size()"},{"p":"com.nuix.superutilities.cases","c":"CaseIssueReaction","l":"SkipCase"},{"p":"com.nuix.superutilities.cases","c":"CaseLockedEventInfo","l":"skipCase()"},{"p":"com.nuix.superutilities.cases","c":"CaseOpenErrorEvent","l":"skipCase()"},{"p":"com.nuix.superutilities.cases","c":"WorkFunctionErrorEvent","l":"skipCase()"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"sort(Comparator)","url":"sort(java.util.Comparator)"},{"p":"com.nuix.superutilities.items","c":"SuperItemUtility","l":"splitAndMaintainFamilies(Collection, int, Consumer>)","url":"splitAndMaintainFamilies(java.util.Collection,int,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"spliterator()"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFile","l":"splitLine(String)","url":"splitLine(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"splitPhrase(String)","url":"splitPhrase(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"SQLiteBacked","l":"SQLiteBacked(File)","url":"%3Cinit%3E(java.io.File)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"storeAllMarkupSets(Case)","url":"storeAllMarkupSets(nuix.Case)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"storeAllTags(Case)","url":"storeAllTags(nuix.Case)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"storeMarkupSet(Case, MarkupSet)","url":"storeMarkupSet(nuix.Case,nuix.MarkupSet)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"storeTag(Case, String)","url":"storeTag(nuix.Case,java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"stream()"},{"p":"com.nuix.superutilities.export","c":"JsonExporter","l":"stringCategory"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"subList(int, int)","url":"subList(int,int)"},{"p":"com.nuix.superutilities.items","c":"SuperItemUtility","l":"SuperItemUtility()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities","c":"SuperUtilities","l":"SuperUtilities()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepository","l":"syncHistory(Case, AnnotationSyncSettings)","url":"syncHistory(nuix.Case,com.nuix.superutilities.annotations.AnnotationSyncSettings)"},{"p":"com.nuix.superutilities.annotations","c":"TagEvent","l":"TagEvent()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionResults","l":"tallyContentTextUdpated()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionResults","l":"tallyUpdatedItem()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionResults","l":"tallyUpdatedProperty(String)","url":"tallyUpdatedProperty(java.lang.String)"},{"p":"com.nuix.superutilities.export","c":"TemplateExporter","l":"TemplateExporter(File)","url":"%3Cinit%3E(java.io.File)"},{"p":"com.nuix.superutilities.misc","c":"TermExpander","l":"TermExpander()","url":"%3Cinit%3E()"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactorSettings","l":"termToRegex(String)","url":"termToRegex(java.lang.String)"},{"p":"com.nuix.superutilities.reporting","c":"AsposeCellsColorHelper","l":"tintChannel(int, float)","url":"tintChannel(int,float)"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"toArray()"},{"p":"com.nuix.superutilities.misc","c":"NamedStringList","l":"toArray(T[])"},{"p":"com.nuix.superutilities.loadfiles","c":"OptLoadFile","l":"toFile(File)","url":"toFile(java.io.File)"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFile","l":"toHeaderLine(LinkedHashMap)","url":"toHeaderLine(java.util.LinkedHashMap)"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFile","l":"toHeaderLine(List)","url":"toHeaderLine(java.util.List)"},{"p":"com.nuix.superutilities.misc","c":"FormatUtility","l":"tokenizeText(String)","url":"tokenizeText(java.lang.String)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptRecord","l":"toLine()"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFile","l":"toLine(LinkedHashMap)","url":"toLine(java.util.LinkedHashMap)"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFile","l":"toLine(String[])","url":"toLine(java.lang.String[])"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationHistoryRepositorySummary","l":"toString()"},{"p":"com.nuix.superutilities.annotations","c":"CustodianEvent","l":"toString()"},{"p":"com.nuix.superutilities.annotations","c":"CustomMetadataEvent","l":"toString()"},{"p":"com.nuix.superutilities.annotations","c":"ExclusionEvent","l":"toString()"},{"p":"com.nuix.superutilities.annotations","c":"ItemSetEvent","l":"toString()"},{"p":"com.nuix.superutilities.annotations","c":"NuixImageAnnotationRegion","l":"toString()"},{"p":"com.nuix.superutilities.annotations","c":"ProductionSetEvent","l":"toString()"},{"p":"com.nuix.superutilities.annotations","c":"TagEvent","l":"toString()"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"toString()"},{"p":"com.nuix.superutilities.cases","c":"CaseLockInfo","l":"toString()"},{"p":"com.nuix.superutilities.misc","c":"DriveSpaceInfo","l":"toString()"},{"p":"com.nuix.superutilities.misc","c":"ExpandedTermInfo","l":"toString()"},{"p":"com.nuix.superutilities.misc","c":"NuixVersion","l":"toString()"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityRedactionResults","l":"toString()"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFile","l":"transpose(File, File, Consumer>)","url":"transpose(java.io.File,java.io.File,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.loadfiles","c":"OptLoadFile","l":"transpose(File, File, Consumer)","url":"transpose(java.io.File,java.io.File,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.items","c":"SuperItemUtility","l":"unionMany(List>)","url":"unionMany(java.util.List)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationMatchingMethod","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"com.nuix.superutilities.cases","c":"CaseIssueReaction","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"com.nuix.superutilities.misc","c":"SimilarityCalculation","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationMatchingMethod","l":"values()"},{"p":"com.nuix.superutilities.cases","c":"CaseIssueReaction","l":"values()"},{"p":"com.nuix.superutilities.misc","c":"SimilarityCalculation","l":"values()"},{"p":"com.nuix.superutilities.misc","c":"PdfUtility","l":"waterMarkPrintedImages(File, Collection, String, int, float, float, BiConsumer)","url":"waterMarkPrintedImages(java.io.File,java.util.Collection,java.lang.String,int,float,float,java.util.function.BiConsumer)"},{"p":"com.nuix.superutilities.misc","c":"PdfUtility","l":"waterMarkPrintedImages(String, Collection, String, int, float, float, BiConsumer)","url":"waterMarkPrintedImages(java.lang.String,java.util.Collection,java.lang.String,int,float,float,java.util.function.BiConsumer)"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"whenErrorLogged(BiConsumer)","url":"whenErrorLogged(java.util.function.BiConsumer)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"whenErrorOccurs(Consumer)","url":"whenErrorOccurs(java.util.function.Consumer)"},{"p":"com.nuix.superutilities.misc","c":"FreeSpaceMonitor","l":"whenErrorOccurs(FreeSpaceMonitorEventCallback)","url":"whenErrorOccurs(com.nuix.superutilities.misc.FreeSpaceMonitorEventCallback)"},{"p":"com.nuix.superutilities.misc","c":"FreeSpaceMonitor","l":"whenFreeSpaceBelowThreshold(FreeSpaceMonitorEventCallback)","url":"whenFreeSpaceBelowThreshold(com.nuix.superutilities.misc.FreeSpaceMonitorEventCallback)"},{"p":"com.nuix.superutilities.misc","c":"FreeSpaceMonitor","l":"whenFreeSpaceIssueResolved(FreeSpaceMonitorEventCallback)","url":"whenFreeSpaceIssueResolved(com.nuix.superutilities.misc.FreeSpaceMonitorEventCallback)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityUtility","l":"whenMessageGenerated(Consumer)","url":"whenMessageGenerated(java.util.function.Consumer)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReport","l":"whenMessageGenerated(Consumer)","url":"whenMessageGenerated(java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"whenMessageLogged(Consumer)","url":"whenMessageLogged(java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactor","l":"whenMessageLogged(Consumer)","url":"whenMessageLogged(java.util.function.Consumer)"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"whenMessageLogged(Consumer)","url":"whenMessageLogged(java.util.function.Consumer)"},{"p":"com.nuix.superutilities.annotations","c":"AnnotationRepository","l":"whenProgressUpdated(BiConsumer)","url":"whenProgressUpdated(java.util.function.BiConsumer)"},{"p":"com.nuix.superutilities.misc","c":"ProfileDigester","l":"whenProgressUpdated(BiConsumer)","url":"whenProgressUpdated(java.util.function.BiConsumer)"},{"p":"com.nuix.superutilities.misc","c":"TermExpander","l":"whenProgressUpdated(BiConsumer)","url":"whenProgressUpdated(java.util.function.BiConsumer)"},{"p":"com.nuix.superutilities.annotations","c":"BulkRedactor","l":"whenProgressUpdated(Consumer)","url":"whenProgressUpdated(java.util.function.Consumer)"},{"p":"com.nuix.superutilities.regex","c":"RegexScanner","l":"whenProgressUpdated(Consumer)","url":"whenProgressUpdated(java.util.function.Consumer)"},{"p":"com.nuix.superutilities.reporting","c":"IntersectionReport","l":"whenProgressUpdated(IntersectionReportProgressCallback)","url":"whenProgressUpdated(com.nuix.superutilities.reporting.IntersectionReportProgressCallback)"},{"p":"com.nuix.superutilities.namedentities","c":"NamedEntityUtility","l":"whenProgressUpdated(NamedEntityRedactionProgressCallback)","url":"whenProgressUpdated(com.nuix.superutilities.namedentities.NamedEntityRedactionProgressCallback)"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"withCase(boolean, Consumer)","url":"withCase(boolean,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.cases","c":"CaseInfo","l":"withCase(Consumer)","url":"withCase(java.util.function.Consumer)"},{"p":"com.nuix.superutilities.cases","c":"BulkCaseProcessor","l":"withEachCase(Case, CaseConsumer)","url":"withEachCase(nuix.Case,com.nuix.superutilities.cases.CaseConsumer)"},{"p":"com.nuix.superutilities.cases","c":"BulkCaseProcessor","l":"withEachCase(CaseConsumer)","url":"withEachCase(com.nuix.superutilities.cases.CaseConsumer)"},{"p":"com.nuix.superutilities.loadfiles","c":"SimpleTextFileReader","l":"withEachLine(File, Consumer)","url":"withEachLine(java.io.File,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFileReader","l":"withEachRecord(File, Consumer>)","url":"withEachRecord(java.io.File,java.util.function.Consumer)"},{"p":"com.nuix.superutilities.cases","c":"WorkFunctionErrorEvent","l":"WorkFunctionErrorEvent(CaseInfo, Exception)","url":"%3Cinit%3E(com.nuix.superutilities.cases.CaseInfo,java.lang.Exception)"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFileWriter","l":"writeDatLine(String[])","url":"writeDatLine(java.lang.String[])"},{"p":"com.nuix.superutilities.loadfiles","c":"SimpleTextFileWriter","l":"writeLine(String)","url":"writeLine(java.lang.String)"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFileWriter","l":"writeRecordKeys(LinkedHashMap)","url":"writeRecordKeys(java.util.LinkedHashMap)"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFileWriter","l":"writeRecordValues(LinkedHashMap)","url":"writeRecordValues(java.util.LinkedHashMap)"},{"p":"com.nuix.superutilities.loadfiles","c":"DatLoadFileWriter","l":"writeValues(List)","url":"writeValues(java.util.List)"},{"p":"com.nuix.superutilities.query","c":"QueryHelper","l":"yearMonthRangeQuery(int, int)","url":"yearMonthRangeQuery(int,int)"},{"p":"com.nuix.superutilities.query","c":"QueryHelper","l":"yearRangeQuery(int)"},{"p":"com.nuix.superutilities.misc","c":"ZipHelper","l":"ZipHelper()","url":"%3Cinit%3E()"}] \ No newline at end of file diff --git a/docs/member-search-index.zip b/docs/member-search-index.zip index 143c8521c828b3c0afb3c59c6c0536115ef172c2..639a5164b5dcc378a04bea684413b3427cc2d97c 100644 GIT binary patch delta 11698 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 IEdT%j0D{)Dl>h($ delta 11456 zcmV;xEI-q|T)J8gP)h>@6aWYa2mp42OjVH%Fn`4u;DA2B=!ZM(%V97B$4(}hwPUZl zv)Q}FKFBS)TNAa^BdHVj9PYm#i=-reNh*G*oq333lclQSSFu=CEdKLnW`Uq5Wh z{jxY_FU$IPAl0$S@~p{7z1$=F*!v`bZv0vT3ripyfF&zj`XG=7;~g z9Dm1@6h+x2@L7xRsw;UUhqBI^vN{Qr37}m3`y^7Gz1wp0g`{u4lA`%gJePsk?hmAR zTUBMn5C$OoTvlJ+9ShcJ-UutQB`*TuBmBPF&^{%Vj0TE48hT9!<+$%rZ8qf4K*a)n zTwbt|r~P?(krfU5@$VG$SZTnF6#HV7@PD#H2iO?0DTeo1y%GF=O!g#QHC0w@Z?n4V z#57$n-gu3~o~ZaO`I;>Aq}VQ7h$u8|qAv;NL`mzj~j|_vWhl>%B{t_EGJ5n)oRx8tXy)iSvasvMGFs3^Rl9H zxq>bgynHAcQq_Fe9$DRLM@U1($8)wlR*AGJ0QEAzt}^-sEnTqj`rDCICzV4PW|EDi zjOC2X^Zv357X?o5VGpUJb4~G=)qf-ZyC+#zi𝔥#jUn%UAyu#sL7fmc^4z2*{v* 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 a000000000000000lMgN^2Hq?H0000uc=?+E diff --git a/docs/overview-frame.html b/docs/overview-frame.html deleted file mode 100644 index cd43da5..0000000 --- a/docs/overview-frame.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - -Overview List - - - - - - -

     

    - - diff --git a/docs/overview-summary.html b/docs/overview-summary.html index bb38d94..68510af 100644 --- a/docs/overview-summary.html +++ b/docs/overview-summary.html @@ -3,18 +3,16 @@ -Generated Documentation (Untitled) - - - - - +SuperUtilities API + + + - +