Serialized Form
abstaende
short[] abstaende
bewertung
double bewertung
documentID
int documentID
positionen
int[] positionen
startWertFuerArrays
int startWertFuerArrays
changeFolderButton
javax.swing.JButton changeFolderButton
contextAmountComboBox
javax.swing.JComboBox contextAmountComboBox
contextWidthComboBox
javax.swing.JComboBox contextWidthComboBox
folderNameTextField
javax.swing.JTextField folderNameTextField
hypertextCheckBox
javax.swing.JCheckBox hypertextCheckBox
indexerComboBox
javax.swing.JComboBox indexerComboBox
inputTextPane
javax.swing.JTextPane inputTextPane
keyDataComboBox
javax.swing.JComboBox keyDataComboBox
outputDocument
javax.swing.text.Document outputDocument
quitMenuItem
javax.swing.JMenuItem quitMenuItem
selectedFolder
java.io.File selectedFolder
startIndexingButton
javax.swing.JButton startIndexingButton
startSearchButton
javax.swing.JButton startSearchButton
textCheckBox
javax.swing.JCheckBox textCheckBox
userData
UserData userData
values
java.lang.String[] values
values2
java.lang.String[] values2
valuesStruktur
java.lang.String[] valuesStruktur
dokumente
StorageInterface dokumente
wort
java.lang.String wort
links
Node links
rechts
Node rechts
wert
java.lang.Object wert
readObject
private void readObject(java.io.ObjectInputStream s)
throws java.io.IOException,
java.lang.ClassNotFoundException
- Reconstitute the StorageTable from a stream (i.e., deserialize it).
writeObject
private void writeObject(java.io.ObjectOutputStream s)
throws java.io.IOException
- Returns the hash code value for this Map as per the definition in the
Map interface.
- Serial Data:
- The capacity of the StorageTable (the length of the
bucket array) is emitted (int), followed by the
size of the StorageTable (the number of key-value
mappings), followed by the key (Object) and value (Object)
for each key-value mapping represented by the StorageTable
The key-value mappings are emitted in no particular order.
- Since:
- 1.2
public synchronized int hashCode() {
int h = 0;
Iterator i = entrySet().iterator();
while (i.hasNext())
h += i.next().hashCode();
return h;
}
/*
/**
Save the state of the StorageTable to a stream (i.e., serialize it).
- See Also:
Map.hashCode()
loadFactor
float loadFactor
- The load factor for the StorageTable.
-
threshold
int threshold
- The table is rehashed when its size exceeds this threshold. (The
value of this field is (int)(capacity * loadFactor).)
-
i
int i
root
Node root
size
int size