Skip navigation links
A C E F G H I L R U W 

A

accept(T, U) - Method in interface alexh.Unchecker.ThrowingBiConsumer
 
accept(T) - Method in interface alexh.Unchecker.ThrowingConsumer
 
alexh - package alexh
 
append(K, V) - Method in interface alexh.Fluent.Map
 
append(Map.Entry<? extends K, ? extends V>) - Method in interface alexh.Fluent.Map
Equivalent to append(key, value) of the input entry
appendAll(Map<? extends K, ? extends V>) - Method in interface alexh.Fluent.Map
 
apply(In1, In2) - Method in interface alexh.Unchecker.ThrowingBiFunction
 
apply(In) - Method in interface alexh.Unchecker.ThrowingFunction
 

C

ConcurrentHashMap() - Constructor for class alexh.Fluent.ConcurrentHashMap
 
ConcurrentHashMap(int) - Constructor for class alexh.Fluent.ConcurrentHashMap
 
ConcurrentHashMap(Map<? extends K, ? extends V>) - Constructor for class alexh.Fluent.ConcurrentHashMap
 
ConcurrentHashMap(int, float) - Constructor for class alexh.Fluent.ConcurrentHashMap
 
ConcurrentHashMap(int, float, int) - Constructor for class alexh.Fluent.ConcurrentHashMap
 
ConcurrentSkipListMap() - Constructor for class alexh.Fluent.ConcurrentSkipListMap
 
ConcurrentSkipListMap(Comparator<? super K>) - Constructor for class alexh.Fluent.ConcurrentSkipListMap
 
ConcurrentSkipListMap(Map<? extends K, ? extends V>) - Constructor for class alexh.Fluent.ConcurrentSkipListMap
 
ConcurrentSkipListMap(SortedMap<K, ? extends V>) - Constructor for class alexh.Fluent.ConcurrentSkipListMap
 

E

EnumMap(Class<K>) - Constructor for class alexh.Fluent.EnumMap
 
EnumMap(EnumMap<K, ? extends V>) - Constructor for class alexh.Fluent.EnumMap
 
EnumMap(Map<K, ? extends V>) - Constructor for class alexh.Fluent.EnumMap
 

F

Fluent - Class in alexh
Container for fluent class implementation that allows declarative object building style.
Fluent.ConcurrentHashMap<K,V> - Class in alexh
 
Fluent.ConcurrentSkipListMap<K,V> - Class in alexh
 
Fluent.EnumMap<K extends Enum<K>,V> - Class in alexh
 
Fluent.HashMap<K,V> - Class in alexh
 
Fluent.IdentityHashMap<K,V> - Class in alexh
 
Fluent.LinkedHashMap<K,V> - Class in alexh
 
Fluent.Map<K,V> - Interface in alexh
Fluent extension of java.util.Map
Fluent.WeakHashMap<K,V> - Class in alexh
 

G

get() - Method in interface alexh.Unchecker.ThrowingSupplier
 

H

HashMap(int, float) - Constructor for class alexh.Fluent.HashMap
 
HashMap(int) - Constructor for class alexh.Fluent.HashMap
 
HashMap(Map) - Constructor for class alexh.Fluent.HashMap
 
HashMap() - Constructor for class alexh.Fluent.HashMap
 

I

IdentityHashMap() - Constructor for class alexh.Fluent.IdentityHashMap
 
IdentityHashMap(int) - Constructor for class alexh.Fluent.IdentityHashMap
 
IdentityHashMap(Map<? extends K, ? extends V>) - Constructor for class alexh.Fluent.IdentityHashMap
 

L

LinkedHashMap(int, float) - Constructor for class alexh.Fluent.LinkedHashMap
 
LinkedHashMap(int) - Constructor for class alexh.Fluent.LinkedHashMap
 
LinkedHashMap(Map) - Constructor for class alexh.Fluent.LinkedHashMap
 
LinkedHashMap() - Constructor for class alexh.Fluent.LinkedHashMap
 

R

run() - Method in interface alexh.Unchecker.ThrowingRunnable
 

U

uncheck(Unchecker.ThrowingSupplier<T>, Function<Throwable, ? extends RuntimeException>) - Static method in class alexh.Unchecker
Converts Checked throwing supplier -> standard supplier, any checked exceptions are wrapped using the input exception transformer
uncheck(Unchecker.ThrowingFunction<In, Out>, Function<Throwable, ? extends RuntimeException>) - Static method in class alexh.Unchecker
Converts Checked throwing function -> standard function, any checked exceptions are wrapped using the input exception transformer
uncheck(Unchecker.ThrowingBiFunction<In1, In2, Out>, Function<Throwable, ? extends RuntimeException>) - Static method in class alexh.Unchecker
uncheck(Unchecker.ThrowingRunnable, Function<Throwable, ? extends RuntimeException>) - Static method in class alexh.Unchecker
Converts Checked throwing runnable -> standard runnable, any checked exceptions are wrapped using the input exception transformer
uncheck(Unchecker.ThrowingConsumer<T>, Function<Throwable, ? extends RuntimeException>) - Static method in class alexh.Unchecker
Converts Checked throwing consumer -> standard consumer, any checked exceptions are wrapped using the input exception transformer
uncheck(Unchecker.ThrowingBiConsumer<T, U>, Function<Throwable, ? extends RuntimeException>) - Static method in class alexh.Unchecker
uncheck(Unchecker.ThrowingSupplier<T>) - Static method in class alexh.Unchecker
uncheck(Unchecker.ThrowingFunction<In, Out>) - Static method in class alexh.Unchecker
uncheck(Unchecker.ThrowingBiFunction<In1, In2, Out>) - Static method in class alexh.Unchecker
uncheck(Unchecker.ThrowingRunnable) - Static method in class alexh.Unchecker
uncheck(Unchecker.ThrowingConsumer<T>) - Static method in class alexh.Unchecker
uncheck(Unchecker.ThrowingBiConsumer<T, U>) - Static method in class alexh.Unchecker
unchecked(Unchecker.ThrowingRunnable, Function<Throwable, ? extends RuntimeException>) - Static method in class alexh.Unchecker
Runs wrapping any checked exceptions using the input exception transformer
unchecked(Unchecker.ThrowingRunnable) - Static method in class alexh.Unchecker
uncheckedGet(Unchecker.ThrowingSupplier<T>, Function<Throwable, ? extends RuntimeException>) - Static method in class alexh.Unchecker
Gets the supplier result wrapping any checked exceptions using the input exception transformer
uncheckedGet(Unchecker.ThrowingSupplier<T>) - Static method in class alexh.Unchecker
Unchecker - Class in alexh
Utility methods to handle unwanted checked exceptions, avoiding try-catch blocks that simply wrap checked exceptions in unchecked exceptions
Unchecker() - Constructor for class alexh.Unchecker
 
Unchecker.ThrowingBiConsumer<T,U> - Interface in alexh
Operation that accepts two arguments and returns no result, but could throw a checked exception
Unchecker.ThrowingBiFunction<In1,In2,Out> - Interface in alexh
Function that accepts two arguments and produces a result, but could throw a checked exception
Unchecker.ThrowingConsumer<T> - Interface in alexh
Operation that accepts a single input argument and returns no result, but could throw a checked exception
Unchecker.ThrowingFunction<In,Out> - Interface in alexh
Function that accepts a single argument and produces a result, but could throw a checked exception
Unchecker.ThrowingRunnable - Interface in alexh
Operation that returns no result, but could throw a checked exception
Unchecker.ThrowingSupplier<T> - Interface in alexh
Represents a supplier of results, that could throw a checked exception
unmodifiable() - Method in interface alexh.Fluent.Map
Returns an unmodifiable view of this map.

W

WeakHashMap(int, float) - Constructor for class alexh.Fluent.WeakHashMap
 
WeakHashMap(int) - Constructor for class alexh.Fluent.WeakHashMap
 
WeakHashMap() - Constructor for class alexh.Fluent.WeakHashMap
 
WeakHashMap(Map<? extends K, ? extends V>) - Constructor for class alexh.Fluent.WeakHashMap
 
A C E F G H I L R U W 
Skip navigation links

Copyright © 2016. All rights reserved.