public class IntDict
extends Object
FloatDict
,
StringDict
Modifier and Type | Class and Description |
---|---|
class |
IntDict.Entry |
Constructor and Description |
---|
IntDict() |
IntDict(BufferedReader reader)
Read a set of entries from a Reader that has each key/value pair on
a single line, separated by a tab.
|
IntDict(int length)
Create a new lookup with a specific size.
|
IntDict(Object[][] pairs)
Constructor to allow (more intuitive) inline initialization, e.g.:
|
IntDict(String[] keys,
int[] values) |
Modifier and Type | Method and Description |
---|---|
void |
add(String key,
int amount) |
void |
clear()
Remove all entries.
|
IntDict |
copy()
Returns a duplicate copy of this object.
|
void |
div(String key,
int amount) |
Iterable<IntDict.Entry> |
entries() |
Iterator<IntDict.Entry> |
entryIterator() |
int |
get(String key)
Return a value for the specified key.
|
int |
get(String key,
int alternate) |
FloatDict |
getPercent()
Sum all of the values in this dictionary, then return a new FloatDict of
each key, divided by the total sum.
|
boolean |
hasKey(String key) |
void |
increment(IntDict dict)
Merge another dictionary into this one.
|
void |
increment(String key)
Increase the value associated with a specific key by 1.
|
int |
index(String what) |
String |
key(int index) |
String[] |
keyArray()
Return a copy of the internal keys array.
|
String[] |
keyArray(String[] outgoing) |
Iterator<String> |
keyIterator() |
Iterable<String> |
keys() |
int |
maxIndex() |
String |
maxKey()
return the key corresponding to the maximum value or null if no entries
|
int |
maxValue() |
int |
minIndex() |
String |
minKey() |
int |
minValue() |
void |
mult(String key,
int amount) |
void |
print() |
int |
remove(String key) |
int |
removeIndex(int index) |
void |
resize(int length)
Resize the internal data, this can only be used to shrink the list.
|
void |
save(File file)
Save tab-delimited entries to a file (TSV format, UTF-8 encoding)
|
void |
set(String key,
int amount)
Create a new key/value pair or change the value of one.
|
void |
setIndex(int index,
String key,
int value) |
int |
size()
Returns the number of key/value pairs
|
void |
sortKeys()
Sort the keys alphabetically (ignoring case).
|
void |
sortKeysReverse()
Sort the keys alphabetically in reverse (ignoring case).
|
void |
sortValues()
Sort by values in ascending order.
|
void |
sortValues(boolean stable)
Set true to ensure that the order returned is identical.
|
void |
sortValuesReverse()
Sort by values in descending order.
|
void |
sortValuesReverse(boolean stable) |
void |
sub(String key,
int amount) |
int |
sum() |
long |
sumLong() |
void |
swap(int a,
int b) |
String |
toJSON()
Return this dictionary as a String in JSON format.
|
String |
toString() |
int |
value(int index) |
int[] |
valueArray()
Create a new array and copy each of the values into it.
|
int[] |
valueArray(int[] array)
Fill an already-allocated array with the values (more efficient than
creating a new array each time).
|
Iterator<Integer> |
valueIterator() |
Iterable<Integer> |
values() |
void |
write(PrintWriter writer)
Write tab-delimited entries to a PrintWriter
|
public IntDict()
public IntDict(int length)
public IntDict(BufferedReader reader)
public IntDict(String[] keys, int[] values)
public IntDict(Object[][] pairs)
new FloatDict(new Object[][] { { "key1", 1 }, { "key2", 2 } });
public int size()
public void resize(int length)
public void clear()
public Iterable<IntDict.Entry> entries()
public Iterator<IntDict.Entry> entryIterator()
public String key(int index)
public Iterable<String> keys()
public Iterator<String> keyIterator()
public String[] keyArray()
public String[] keyArray(String[] outgoing)
public int value(int index)
public Iterable<Integer> values()
public Iterator<Integer> valueIterator()
public int[] valueArray()
public int[] valueArray(int[] array)
array
- values to copy into the arraypublic int get(String key)
public int get(String key, int alternate)
public void set(String key, int amount)
public void setIndex(int index, String key, int value)
public boolean hasKey(String key)
public void increment(String key)
public void increment(IntDict dict)
public void add(String key, int amount)
public void sub(String key, int amount)
public void mult(String key, int amount)
public void div(String key, int amount)
public int minIndex()
public String minKey()
public int minValue()
public int maxIndex()
public String maxKey()
public int maxValue()
public int sum()
public long sumLong()
public int index(String what)
public int remove(String key)
public int removeIndex(int index)
public void swap(int a, int b)
public void sortKeys()
public void sortKeysReverse()
public void sortValues()
public void sortValues(boolean stable)
stable
- public void sortValuesReverse()
public void sortValuesReverse(boolean stable)
public FloatDict getPercent()
public IntDict copy()
public void print()
public void save(File file)
public void write(PrintWriter writer)
public String toJSON()
public String toString()
toString
in class Object