B C D E I M P S
All Classes All Packages
All Classes All Packages
All Classes All Packages
B
- BinaryFileBuffer - Class in com.google.code.externalsorting
-
This is essentially a thin wrapper on top of a BufferedReader...
- BinaryFileBuffer(BufferedReader) - Constructor for class com.google.code.externalsorting.BinaryFileBuffer
C
- close() - Method in class com.google.code.externalsorting.BinaryFileBuffer
- close() - Method in class com.google.code.externalsorting.csv.CSVRecordBuffer
- close() - Method in interface com.google.code.externalsorting.IOStringStack
- com.google.code.externalsorting - package com.google.code.externalsorting
- com.google.code.externalsorting.csv - package com.google.code.externalsorting.csv
- CsvExternalSort - Class in com.google.code.externalsorting.csv
- CsvExternalSort() - Constructor for class com.google.code.externalsorting.csv.CsvExternalSort
- CSVRecordBuffer - Class in com.google.code.externalsorting.csv
- CSVRecordBuffer(CSVParser) - Constructor for class com.google.code.externalsorting.csv.CSVRecordBuffer
D
- defaultcomparator - Static variable in class com.google.code.externalsorting.ExternalSort
-
default comparator between strings.
- DEFAULTMAXTEMPFILES - Static variable in class com.google.code.externalsorting.csv.CsvExternalSort
-
Default maximal number of temporary files allowed.
- DEFAULTMAXTEMPFILES - Static variable in class com.google.code.externalsorting.ExternalSort
-
Default maximal number of temporary files allowed.
E
- empty() - Method in class com.google.code.externalsorting.BinaryFileBuffer
- empty() - Method in class com.google.code.externalsorting.csv.CSVRecordBuffer
- empty() - Method in interface com.google.code.externalsorting.IOStringStack
- estimateAvailableMemory() - Static method in class com.google.code.externalsorting.csv.CsvExternalSort
-
This method calls the garbage collector and then returns the free memory.
- estimateAvailableMemory() - Static method in class com.google.code.externalsorting.ExternalSort
-
This method calls the garbage collector and then returns the free memory.
- estimateBestSizeOfBlocks(long, int, long) - Static method in class com.google.code.externalsorting.csv.CsvExternalSort
-
we divide the file into small blocks.
- estimateBestSizeOfBlocks(long, int, long) - Static method in class com.google.code.externalsorting.ExternalSort
-
we divide the file into small blocks.
- estimatedSizeOf(Object) - Static method in class com.google.code.externalsorting.csv.SizeEstimator
-
Estimates the size of a object in bytes.
- estimatedSizeOf(String) - Static method in class com.google.code.externalsorting.StringSizeEstimator
-
Estimates the size of a
String
object in bytes. - ExternalSort - Class in com.google.code.externalsorting
-
Goal: offer a generic external-memory sorting program in Java.
- ExternalSort() - Constructor for class com.google.code.externalsorting.ExternalSort
I
- IOStringStack - Interface in com.google.code.externalsorting
-
General interface to abstract away BinaryFileBuffer so that users of the library can roll their own.
M
- main(String[]) - Static method in class com.google.code.externalsorting.ExternalSort
- mergeSortedFiles(BufferedWriter, Comparator<String>, boolean, List<IOStringStack>) - Static method in class com.google.code.externalsorting.ExternalSort
-
This merges several BinaryFileBuffer to an output writer.
- mergeSortedFiles(BufferedWriter, Comparator<CSVRecord>, boolean, ArrayList<CSVRecordBuffer>) - Static method in class com.google.code.externalsorting.csv.CsvExternalSort
- mergeSortedFiles(List<File>, BufferedWriter, Comparator<String>, Charset, boolean, boolean) - Static method in class com.google.code.externalsorting.ExternalSort
-
This merges a bunch of temporary flat files
- mergeSortedFiles(List<File>, File) - Static method in class com.google.code.externalsorting.ExternalSort
-
This merges a bunch of temporary flat files
- mergeSortedFiles(List<File>, File, Comparator<String>) - Static method in class com.google.code.externalsorting.ExternalSort
-
This merges a bunch of temporary flat files
- mergeSortedFiles(List<File>, File, Comparator<String>, boolean) - Static method in class com.google.code.externalsorting.ExternalSort
-
This merges a bunch of temporary flat files
- mergeSortedFiles(List<File>, File, Comparator<String>, Charset) - Static method in class com.google.code.externalsorting.ExternalSort
-
This merges a bunch of temporary flat files
- mergeSortedFiles(List<File>, File, Comparator<String>, Charset, boolean) - Static method in class com.google.code.externalsorting.ExternalSort
-
This merges a bunch of temporary flat files
- mergeSortedFiles(List<File>, File, Comparator<String>, Charset, boolean, boolean, boolean) - Static method in class com.google.code.externalsorting.ExternalSort
-
This merges a bunch of temporary flat files
- mergeSortedFiles(List<File>, File, Comparator<CSVRecord>, Charset, boolean, boolean) - Static method in class com.google.code.externalsorting.csv.CsvExternalSort
P
- peek() - Method in class com.google.code.externalsorting.BinaryFileBuffer
- peek() - Method in class com.google.code.externalsorting.csv.CSVRecordBuffer
- peek() - Method in interface com.google.code.externalsorting.IOStringStack
- pop() - Method in class com.google.code.externalsorting.BinaryFileBuffer
- pop() - Method in class com.google.code.externalsorting.csv.CSVRecordBuffer
- pop() - Method in interface com.google.code.externalsorting.IOStringStack
S
- SizeEstimator - Class in com.google.code.externalsorting.csv
- sort(File, File) - Static method in class com.google.code.externalsorting.ExternalSort
-
This sorts a file (input) to an output file (output) using default parameters
- sort(File, File, Comparator<String>) - Static method in class com.google.code.externalsorting.ExternalSort
-
This sorts a file (input) to an output file (output) using customized comparator
- sortAndSave(List<String>, Comparator<String>, Charset, File) - Static method in class com.google.code.externalsorting.ExternalSort
-
Sort a list and save it to a temporary file
- sortAndSave(List<String>, Comparator<String>, Charset, File, boolean, boolean, boolean) - Static method in class com.google.code.externalsorting.ExternalSort
-
Sort a list and save it to a temporary file
- sortAndSave(List<CSVRecord>, Comparator<CSVRecord>, Charset, File, boolean) - Static method in class com.google.code.externalsorting.csv.CsvExternalSort
- sortInBatch(BufferedReader, long) - Static method in class com.google.code.externalsorting.ExternalSort
-
This will simply load the file by blocks of lines, then sort them in-memory, and write the result to temporary files that have to be merged later.
- sortInBatch(BufferedReader, long, Comparator<String>, boolean) - Static method in class com.google.code.externalsorting.ExternalSort
-
This will simply load the file by blocks of lines, then sort them in-memory, and write the result to temporary files that have to be merged later.
- sortInBatch(BufferedReader, long, Comparator<String>, int, long, Charset, File, boolean, int, boolean, boolean) - Static method in class com.google.code.externalsorting.ExternalSort
-
This will simply load the file by blocks of lines, then sort them in-memory, and write the result to temporary files that have to be merged later.
- sortInBatch(BufferedReader, long, Comparator<CSVRecord>, int, long, Charset, File, boolean, int) - Static method in class com.google.code.externalsorting.csv.CsvExternalSort
- sortInBatch(File) - Static method in class com.google.code.externalsorting.ExternalSort
-
This will simply load the file by blocks of lines, then sort them in-memory, and write the result to temporary files that have to be merged later.
- sortInBatch(File, Comparator<String>) - Static method in class com.google.code.externalsorting.ExternalSort
-
This will simply load the file by blocks of lines, then sort them in-memory, and write the result to temporary files that have to be merged later.
- sortInBatch(File, Comparator<String>, boolean) - Static method in class com.google.code.externalsorting.ExternalSort
-
This will simply load the file by blocks of lines, then sort them in-memory, and write the result to temporary files that have to be merged later.
- sortInBatch(File, Comparator<String>, int, Charset, File, boolean) - Static method in class com.google.code.externalsorting.ExternalSort
-
This will simply load the file by blocks of lines, then sort them in-memory, and write the result to temporary files that have to be merged later.
- sortInBatch(File, Comparator<String>, int, Charset, File, boolean, int) - Static method in class com.google.code.externalsorting.ExternalSort
-
This will simply load the file by blocks of lines, then sort them in-memory, and write the result to temporary files that have to be merged later.
- sortInBatch(File, Comparator<String>, int, Charset, File, boolean, int, boolean) - Static method in class com.google.code.externalsorting.ExternalSort
-
This will simply load the file by blocks of lines, then sort them in-memory, and write the result to temporary files that have to be merged later.
- sortInBatch(File, Comparator<String>, int, Charset, File, boolean, int, boolean, boolean) - Static method in class com.google.code.externalsorting.ExternalSort
-
This will simply load the file by blocks of lines, then sort them in-memory, and write the result to temporary files that have to be merged later.
- sortInBatch(File, Comparator<String>, File, boolean, int) - Static method in class com.google.code.externalsorting.ExternalSort
-
This will simply load the file by blocks of lines, then sort them in-memory, and write the result to temporary files that have to be merged later.
- sortInBatch(File, Comparator<String>, Charset, File, boolean, int) - Static method in class com.google.code.externalsorting.ExternalSort
-
This will simply load the file by blocks of lines, then sort them in-memory, and write the result to temporary files that have to be merged later.
- sortInBatch(File, Comparator<CSVRecord>, int, Charset, File, boolean, int) - Static method in class com.google.code.externalsorting.csv.CsvExternalSort
- StringSizeEstimator - Class in com.google.code.externalsorting
-
Simple class used to estimate memory usage.
All Classes All Packages