A B C D F G H I J K L N P R S T

A

add(K, V) - Method in class spiffy.core.util.HashMapBuilder
add a key-value pair
arrayList(T...) - Static method in class spiffy.core.util.CollectionHelper
An easy way to construct an array list. just do ArrayList<String> al = CollectionHelper.ArrayList("a", "b", "c"); Rather than ArrayList<String> al = new ArrayList<String>() al.add("a"); al.add("b"); al.add("c");
arrayListObjects(Object...) - Static method in class spiffy.core.util.CollectionHelper
An easy way to generate an ArrayList holding mixed types of objects.
assertEmpty(String, Collection<T>) - Static method in class spiffy.junit.AssertHelper
Check if a collection is empty
assertEquals(String, byte[], byte[]) - Static method in class spiffy.junit.AssertHelper
Check if two arrays element for element are equal.
assertEquals(String, int[], int[]) - Static method in class spiffy.junit.AssertHelper
Check if two arrays element for element are equal.
assertEquals(String, Object[], Object[]) - Static method in class spiffy.junit.AssertHelper
Check if two arrays element for element are equal.
assertGreaterThan(String, double, double) - Static method in class spiffy.junit.AssertHelper
check that the actual value is greater than the expected
assertGreaterThan(String, int, int) - Static method in class spiffy.junit.AssertHelper
check that the actual value is greater than the expected
AssertHelper - Class in spiffy.junit
This class provides essential assertions missing from JUnit in order to create clear JUnit test cases.
AssertHelper() - Constructor for class spiffy.junit.AssertHelper
 
assertNotEquals(int, int) - Static method in class spiffy.junit.AssertHelper
 
assertNotEquals(String, double, double) - Static method in class spiffy.junit.AssertHelper
check that the actual value is not the expected
assertNotEquals(String, int, int) - Static method in class spiffy.junit.AssertHelper
check that the actual value is not the expected

B

build() - Method in class spiffy.core.util.HashMapBuilder
build the hashmap.

C

CollectionHelper - Class in spiffy.core.util
Helper methods for collections
CollectionHelper() - Constructor for class spiffy.core.util.CollectionHelper
 
containsKey(K1, K2) - Method in class spiffy.core.util.ThreeDHashMap
Existence check of a value (or null) mapped to the keys.
containsKey(K1, K2, K3) - Method in class spiffy.core.util.ThreeDHashMap
Existence check of a value (or null) mapped to the keys.
containsKey(K1, K2) - Method in class spiffy.core.util.TwoDHashMap
Existence check of a value (or null) mapped to the keys.

D

date(int, int, int) - Static method in class spiffy.core.util.DateHelper
An easy and non-depricated non-lenient way of creating Date objects.
date(int, int, int, int, int, int) - Static method in class spiffy.core.util.DateHelper
An easy and non-depricated non-lenient way of creating Date objects.
DateHelper - Class in spiffy.core.util
Helper methods for creating and manipulating Dates, Calendars etc..
DateHelper() - Constructor for class spiffy.core.util.DateHelper
 

F

firstOnly(Collection<T>) - Static method in class spiffy.core.util.CollectionHelper
Checks to see if the collection is of size 1 and if so returns that element.

G

get(K1) - Method in class spiffy.core.util.ThreeDHashMap
Fetch the outermost Hashmap .
get(K1, K2) - Method in class spiffy.core.util.ThreeDHashMap
Fetch the innermost Hashmap .
get(K1, K2, K3) - Method in class spiffy.core.util.ThreeDHashMap
Fetch a value from the Hashmap .
get(K1, K2) - Method in class spiffy.core.util.TwoDHashMap
Fetch a value from the Hashmap .
getAs2d(K1) - Method in class spiffy.core.util.ThreeDHashMap
Fetch the outermost Hashmap as a TwoDHashMap .
getLogger() - Static method in class spiffy.log4j.LoggerHelper
Returns a Log4J logger configured as the calling class.
goForward(ActionMapping, String, String[]) - Method in class spiffy.struts1.StrutsActionHelper
Helps you forwarding from one one action to another action and carrying over the parameters.

H

HashMapBuilder<K,V> - Class in spiffy.core.util
Shortcut way to build hashmaps.
HashMapBuilder() - Constructor for class spiffy.core.util.HashMapBuilder
 
hasNext() - Method in class spiffy.core.util.PushBackIterator
Returns true if the iteration has more elements.

I

in(String, String...) - Static method in class spiffy.core.lang.StringHelper
Given a string check to see if it is in a collection of strings (using equals())
inAndNonEmpty(String, String...) - Static method in class spiffy.core.lang.StringHelper
Given a string, trim it, and if different from the string "", check to see if it is in a collection of strings (using equals()).

J

join(String, Iterator<?>) - Static method in class spiffy.core.lang.StringHelper
Join 0..n strings separated by a delimiter.
join(String, String...) - Static method in class spiffy.core.lang.StringHelper
Join 0..n strings separated by a delimiter.

K

keySet() - Method in class spiffy.core.util.ThreeDHashMap
Returns a set of the keys of the outermost map.
keySet() - Method in class spiffy.core.util.TwoDHashMap
Returns a set of the keys of the outermost map.

L

LoggerHelper - Class in spiffy.log4j
Helper class for common Log4J interactions
LoggerHelper() - Constructor for class spiffy.log4j.LoggerHelper
 

N

next() - Method in class spiffy.core.util.PushBackIterator
Returns the next element in the iteration.

P

pushBack() - Method in class spiffy.core.util.PushBackIterator
Push back the last fetched element
PushBackIterator<T> - Class in spiffy.core.util
The PushBackIterator enables you to iterate and push back elements should you find that "you have come to far".
PushBackIterator(Iterator<T>) - Constructor for class spiffy.core.util.PushBackIterator
 

R

remove() - Method in class spiffy.core.util.PushBackIterator
Operation currently not supported
removeAll(String, Character...) - Static method in class spiffy.core.lang.StringHelper
Remove all occurrences of all specified characters.
repeatLeftJoin(String, int, String...) - Static method in class spiffy.core.lang.StringHelper
Create a string by repeatedly joining/appending one or more strings in front of the string until the resulting string is equal to or as close possible to some length.
repeatRightJoin(String, int, String...) - Static method in class spiffy.core.lang.StringHelper
Create a string by repeatedly joining/appending one or more strings at the end of the string until the resulting string is equal to or as close possible to some length.

S

set(K1, K2, K3, V) - Method in class spiffy.core.util.ThreeDHashMap
Insert a value
set(K1, K2, V) - Method in class spiffy.core.util.TwoDHashMap
Insert a value
size() - Method in class spiffy.core.util.ThreeDHashMap
Returns the number of key-value mappings in this map for the first key.
size(K1) - Method in class spiffy.core.util.ThreeDHashMap
Returns the number of key-value mappings in this map for the second key.
size(K1, K2) - Method in class spiffy.core.util.ThreeDHashMap
Returns the number of key-value mappings in this map for the third key.
size() - Method in class spiffy.core.util.TwoDHashMap
Returns the number of key-value mappings in this map for the first key.
size(K1) - Method in class spiffy.core.util.TwoDHashMap
Returns the number of key-value mappings in this map for the second key.
spiffy.core.lang - package spiffy.core.lang
This package contains classes/interfaces relating to the java.lang package.
spiffy.core.util - package spiffy.core.util
This package contains classes/interfaces relating to the java.util package.
spiffy.junit - package spiffy.junit
This package contains classes/interfaces relating to junit.
spiffy.log4j - package spiffy.log4j
 
spiffy.struts1 - package spiffy.struts1
This package contains classes/interfaces relating to the web development framework Struts1.
StringHelper - Class in spiffy.core.lang
Helper methods for string manipulations and/or string representations of various entities
StringHelper() - Constructor for class spiffy.core.lang.StringHelper
 
StrutsActionHelper - Class in spiffy.struts1
Helper class for Struts1 actions
StrutsActionHelper() - Constructor for class spiffy.struts1.StrutsActionHelper
 

T

ThreeDHashMap<K1,K2,K3,V> - Class in spiffy.core.util
A 3-dimensional hashmap is a HashMap that enables you to refer to values via three keys rather than one.
ThreeDHashMap() - Constructor for class spiffy.core.util.ThreeDHashMap
 
toString(Throwable) - Static method in class spiffy.core.lang.StringHelper
Returns a string representation of any throwable (e.g. exceptions)
TwoDHashMap<K1,K2,V> - Class in spiffy.core.util
A two-dimensional hashmap, is a HashMap that enables you to refer to values via two keys rather than one.
TwoDHashMap() - Constructor for class spiffy.core.util.TwoDHashMap
 
TwoDHashMap(HashMap<K1, HashMap<K2, V>>) - Constructor for class spiffy.core.util.TwoDHashMap
 

A B C D F G H I J K L N P R S T