Skip navigation links
A C D F G I M P R S 

A

add(E) - Method in class com.augustbonds.foundation.Set
Add an element to the Set.
append(E) - Method in class com.augustbonds.foundation.Array
Appends an element to the end of the Array.
Array<E> - Class in com.augustbonds.foundation
The Array class is the default ordered collection.
Array() - Constructor for class com.augustbonds.foundation.Array
Default constructor.

C

com.augustbonds.foundation - package com.augustbonds.foundation
 
contains(E) - Method in class com.augustbonds.foundation.Set
Check whether the specified element exists in the Set.

D

Dictionary<K,V> - Class in com.augustbonds.foundation
The Dictionary class acts as a lookup table for values of type V with keys of type K.
Dictionary() - Constructor for class com.augustbonds.foundation.Dictionary
Default constructor.
Dictionary.Entry<K,V> - Interface in com.augustbonds.foundation
The interface of key-value pairs accessed through the Dictionary Iterator.

F

filter(Predicate<E>) - Method in class com.augustbonds.foundation.Array
Filter this Array by a given Predicate.
forEach(BiConsumer<K, V>) - Method in class com.augustbonds.foundation.Dictionary
Perform an action on each key-value pair stored in the dictionary.

G

get(int) - Method in class com.augustbonds.foundation.Array
Get the element at a specific index.
get(K) - Method in class com.augustbonds.foundation.Dictionary
Get the value corresponding the given key.
getKey() - Method in interface com.augustbonds.foundation.Dictionary.Entry
 
getValue() - Method in interface com.augustbonds.foundation.Dictionary.Entry
 

I

iterator() - Method in class com.augustbonds.foundation.Array
Return an iterator for this Array.
iterator() - Method in class com.augustbonds.foundation.Dictionary
Iterate over the key-value pairs stored in the dictionary.
iterator() - Method in class com.augustbonds.foundation.Set
An iterator for the elements in the Set.

M

map(Function<E, O>) - Method in class com.augustbonds.foundation.Array
Apply a function to each element of the Array, and return an Array of the returned elements.

P

put(K, V) - Method in class com.augustbonds.foundation.Dictionary
Store a value and a corresponding key.

R

remove(int) - Method in class com.augustbonds.foundation.Array
Removes an element at a specific index and shrinks the Array.
remove(E) - Method in class com.augustbonds.foundation.Set
Remove an element from the Set.

S

set(int, E) - Method in class com.augustbonds.foundation.Array
Sets the element at a specific index.
Set<E> - Class in com.augustbonds.foundation
The Set class is used to hold a number of unique items of type E.
Set() - Constructor for class com.augustbonds.foundation.Set
The default constructor.
size() - Method in class com.augustbonds.foundation.Array
Returns the size of the Array.
size() - Method in class com.augustbonds.foundation.Dictionary
The number key-value pairs stored in the dictionary
size() - Method in class com.augustbonds.foundation.Set
The number of elements currently in the Set.
sort(Comparator<E>) - Method in class com.augustbonds.foundation.Array
Perform an in-place sorting of the elements in the Array.
A C D F G I M P R S 
Skip navigation links

Copyright © 2019. All rights reserved.