Skip navigation links
A B C D E F G H I K L M N O P R S T U V W 

A

AbstractMean<MT,V extends Number,W extends Number> - Class in org.djutils.means
Methods and fields common to all implementations of Mean.
AbstractMean() - Constructor for class org.djutils.means.AbstractMean
Constructor.
add(V, W) - Method in class org.djutils.means.AbstractMean
Adds a value with weight.
add(V) - Method in class org.djutils.means.AbstractMean
Add a value with weight 1.
add(Iterable<V>, Iterable<W>) - Method in class org.djutils.means.AbstractMean
Adds weighted values.
add(V[], W[]) - Method in class org.djutils.means.AbstractMean
Adds weighted values.
add(Map<V, W>) - Method in class org.djutils.means.AbstractMean
Adds each key value from a map weighted with the mapped to value.
add(Collection<V>, Function<V, W>) - Method in class org.djutils.means.AbstractMean
Adds each value with a weight obtained by calling the provided weights function.
add(Collection<S>, Function<S, V>, Function<S, W>) - Method in class org.djutils.means.AbstractMean
Adds each value (obtained by calling the values function on each object in a Collection) with a weight (obtained by calling the weights function on the same object from the Collection).
add(Iterable<V>) - Method in class org.djutils.means.AbstractMean
Add values with weight 1.
add(V[]) - Method in class org.djutils.means.AbstractMean
Add values with weight 1.
addDecoder(Decoder) - Method in class org.djutils.decoderdumper.Dumper
Add a Decoder at the end of the current list of decoders.
addDecoder(int, Decoder) - Method in class org.djutils.decoderdumper.Dumper
Add a Decoder at a specified index.
addImpl(V, Number) - Method in class org.djutils.means.AbstractMean
Adds a value with weight.
addImpl(V, Number) - Method in class org.djutils.means.ArithmeticMean
Adds a value with weight.
addImpl(V, Number) - Method in class org.djutils.means.GeometricMean
Adds a value with weight.
addImpl(V, Number) - Method in class org.djutils.means.HarmonicMean
Adds a value with weight.
addLogCategory(LogCategory) - Static method in class org.djutils.logger.CategoryLogger
Add a category to be logged to the Writers.
ALL - Static variable in class org.djutils.logger.LogCategory
The category to indicate that ALL messages need to be logged.
always() - Static method in class org.djutils.logger.CategoryLogger
The "pass" filter that will result in always trying to log.
always() - Method in class org.djutils.logger.CategoryLogger.ConditionalLogger
The "pass" filter that will result in always trying to log.
append(int, byte) - Method in class org.djutils.decoderdumper.Base64Decoder
Decode one (more) byte.
append(int, byte) - Method in class org.djutils.decoderdumper.CharDecoder
Decode one (more) byte.
append(int, byte) - Method in interface org.djutils.decoderdumper.Decoder
Decode one (more) byte.
append(byte) - Method in class org.djutils.decoderdumper.Dumper
Append one byte to this dump.
append(byte[]) - Method in class org.djutils.decoderdumper.Dumper
Append an array of bytes.
append(byte[], int, int) - Method in class org.djutils.decoderdumper.Dumper
Append a slice of an array of bytes.
append(InputStream) - Method in class org.djutils.decoderdumper.Dumper
Consume an entire input stream and append what it produces to this Dumpmer.
append(int, byte) - Method in class org.djutils.decoderdumper.FixedString
Decode one (more) byte.
append(int, byte) - Method in class org.djutils.decoderdumper.HexAddressDecoder
Decode one (more) byte.
append(int, byte) - Method in class org.djutils.decoderdumper.HexDecoder
Decode one (more) byte.
append(int, byte) - Method in class org.djutils.decoderdumper.TimeStamper
Decode one (more) byte.
ArithmeticMean<V extends Number,W extends Number> - Class in org.djutils.means
Compute arithmetic (weighted) mean of a set of values.
ArithmeticMean() - Constructor for class org.djutils.means.ArithmeticMean
 
assign(Try.Assignment<V>, String) - Static method in class org.djutils.exceptions.Try
Tries to return a value to assign.
assign(Try.Assignment<V>, String, Object) - Static method in class org.djutils.exceptions.Try
Tries to return a value to assign.
assign(Try.Assignment<V>, String, Object, Object) - Static method in class org.djutils.exceptions.Try
Tries to return a value to assign.
assign(Try.Assignment<V>, String, Object, Object, Object) - Static method in class org.djutils.exceptions.Try
Tries to return a value to assign.
assign(Try.Assignment<V>, String, Object, Object, Object, Object...) - Static method in class org.djutils.exceptions.Try
Tries to return a value to assign.
assign(Try.Assignment<V>, Class<T>, String) - Static method in class org.djutils.exceptions.Try
Tries to return a value to assign.
assign(Try.Assignment<V>, Class<T>, String, Object) - Static method in class org.djutils.exceptions.Try
Tries to return a value to assign.
assign(Try.Assignment<V>, Class<T>, String, Object, Object) - Static method in class org.djutils.exceptions.Try
Tries to return a value to assign.
assign(Try.Assignment<V>, Class<T>, String, Object, Object, Object) - Static method in class org.djutils.exceptions.Try
Tries to return a value to assign.
assign(Try.Assignment<V>, Class<T>, String, Object, Object, Object, Object...) - Static method in class org.djutils.exceptions.Try
Tries to return a value to assign.
assign() - Method in interface org.djutils.exceptions.Try.Assignment
Returns a value which is obtained from the context in which the Assignment was created.

B

Base64Decoder - Class in org.djutils.decoderdumper
Decode base64 encoded data and show it as hex bytes.
Base64Decoder(int, int) - Constructor for class org.djutils.decoderdumper.Base64Decoder
Construct a new Base64Decoder.
Base64Dumper - Class in org.djutils.decoderdumper
Decode base64 encoded data and dump it in hexadecimal format and (insofar possible) as characters.
Base64Dumper(int) - Constructor for class org.djutils.decoderdumper.Base64Dumper
Construct a new Base64Dumper.
Base64Dumper() - Constructor for class org.djutils.decoderdumper.Base64Dumper
Construct a new Base64Dumper with initial address offset 0.
base64Dumper(int, byte[]) - Static method in class org.djutils.decoderdumper.Base64Dumper
Create a HexDumper object; use it to dump an array of bytes and return the dump as a String.
base64Dumper(byte[]) - Static method in class org.djutils.decoderdumper.Base64Dumper
Create a HexDumper object with addressOffset 0; use it to dump an array of bytes and return the dump as a String.
binarySearch(ImmutableList<? extends Comparable<? super T>>, T) - Static method in class org.djutils.immutablecollections.ImmutableCollections
Search the immutable list for the specified object using the binary search algorithm.
binarySearch(ImmutableList<? extends T>, T, Comparator<? super T>) - Static method in class org.djutils.immutablecollections.ImmutableCollections
Search the immutable list for the specified object using the binary search algorithm.

C

cachedValues - Variable in class org.djutils.immutablecollections.ImmutableAbstractMap
the cached values.
capacity() - Method in class org.djutils.immutablecollections.ImmutableVector
Returns the current capacity of this immutable vector.
cast(Class<?>[], Object[]) - Static method in class org.djutils.primitives.Primitive
casts a set of values to classes.
cast(Class<?>, Object) - Static method in class org.djutils.primitives.Primitive
casts an object to a instance of clazz.
categories - Static variable in class org.djutils.logger.CategoryLogger
The categories to log.
CategoryLogger - Class in org.djutils.logger
The CategoryLogger can log for specific Categories.
CategoryLogger() - Constructor for class org.djutils.logger.CategoryLogger
 
CategoryLogger.ConditionalLogger - Class in org.djutils.logger
ConditionalLogger class that takes care of filtering based on a condition.
CategoryLogger.DelegateLogger - Class in org.djutils.logger
DelegateLogger class that takes care of actually logging the message and/or exception.
ceiling(E) - Method in interface org.djutils.immutablecollections.ImmutableNavigableSet
Returns the least element in this immutable set greater than or equal to the given element, or null if there is no such element.
ceiling(E) - Method in class org.djutils.immutablecollections.ImmutableTreeSet
Returns the least element in this immutable set greater than or equal to the given element, or null if there is no such element.
ceilingKey(K) - Method in interface org.djutils.immutablecollections.ImmutableNavigableMap
Returns the least key in this immutable map greater than or equal to the given key, or null if there is no such key.
ceilingKey(K) - Method in class org.djutils.immutablecollections.ImmutableTreeMap
Returns the least key in this immutable map greater than or equal to the given key, or null if there is no such key.
CharDecoder - Class in org.djutils.decoderdumper
Copyright (c) 2013-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands.
CharDecoder(int, int) - Constructor for class org.djutils.decoderdumper.CharDecoder
Construct a new CharDecoder.
ClassUtil - Class in org.djutils.reflection
ClassUtil is a utility class providing assistance for Java Classes.
comparator() - Method in interface org.djutils.immutablecollections.ImmutableSortedMap
Returns the comparator used to order the keys in this immutable map, or null if this immutable map uses the natural ordering of its keys.
comparator() - Method in interface org.djutils.immutablecollections.ImmutableSortedSet
Returns the comparator used to order the elements in this immutable set, or null if this immutable set uses the natural ordering of its elements.
comparator() - Method in class org.djutils.immutablecollections.ImmutableTreeMap
Returns the comparator used to order the keys in this immutable map, or null if this immutable map uses the natural ordering of its keys.
comparator() - Method in class org.djutils.immutablecollections.ImmutableTreeSet
Returns the comparator used to order the elements in this immutable set, or null if this immutable set uses the natural ordering of its elements.
comparingByKey() - Static method in class org.djutils.immutablecollections.ImmutableMap.ImmutableEntry
Returns a comparator that compares ImmutableMap.ImmutableEntry in natural order on key.
comparingByKey(Comparator<? super K>) - Static method in class org.djutils.immutablecollections.ImmutableMap.ImmutableEntry
Returns a comparator that compares ImmutableMap.ImmutableEntry by key using the given Comparator.
comparingByValue() - Static method in class org.djutils.immutablecollections.ImmutableMap.ImmutableEntry
Returns a comparator that compares ImmutableMap.ImmutableEntry in natural order on value.
comparingByValue(Comparator<? super V>) - Static method in class org.djutils.immutablecollections.ImmutableMap.ImmutableEntry
Returns a comparator that compares ImmutableMap.ImmutableEntry by value using the given Comparator.
conditionalLogger - Static variable in class org.djutils.logger.CategoryLogger
The conditional logger works on the basis of a true condition.
ConditionalLogger(boolean) - Constructor for class org.djutils.logger.CategoryLogger.ConditionalLogger
 
conditionalNoLogger - Static variable in class org.djutils.logger.CategoryLogger
The conditional logger works on the basis of a condition, failing the condition.
contains(Object) - Method in class org.djutils.immutablecollections.ImmutableAbstractList
Returns true if this immutable collection contains the specified element.
contains(Object) - Method in class org.djutils.immutablecollections.ImmutableAbstractSet
Returns true if this immutable collection contains the specified element.
contains(Object) - Method in interface org.djutils.immutablecollections.ImmutableCollection
Returns true if this immutable collection contains the specified element.
containsAll(Collection<?>) - Method in class org.djutils.immutablecollections.ImmutableAbstractList
Returns true if this immutable collection contains all of the elements in the specified collection.
containsAll(ImmutableCollection<?>) - Method in class org.djutils.immutablecollections.ImmutableAbstractList
Returns true if this immutable collection contains all of the elements in the specified immutable collection.
containsAll(Collection<?>) - Method in class org.djutils.immutablecollections.ImmutableAbstractSet
Returns true if this immutable collection contains all of the elements in the specified collection.
containsAll(ImmutableCollection<?>) - Method in class org.djutils.immutablecollections.ImmutableAbstractSet
Returns true if this immutable collection contains all of the elements in the specified immutable collection.
containsAll(Collection<?>) - Method in interface org.djutils.immutablecollections.ImmutableCollection
Returns true if this immutable collection contains all of the elements in the specified collection.
containsAll(ImmutableCollection<?>) - Method in interface org.djutils.immutablecollections.ImmutableCollection
Returns true if this immutable collection contains all of the elements in the specified immutable collection.
containsKey(Object) - Method in class org.djutils.immutablecollections.ImmutableAbstractMap
Returns true if this map contains a mapping for the specified key.
containsKey(Object) - Method in interface org.djutils.immutablecollections.ImmutableMap
Returns true if this map contains a mapping for the specified key.
containsValue(Object) - Method in class org.djutils.immutablecollections.ImmutableAbstractMap
Returns true if this map maps one or more keys to the specified value.
containsValue(Object) - Method in interface org.djutils.immutablecollections.ImmutableMap
Returns true if this map maps one or more keys to the specified value.
copyInto(Object[]) - Method in class org.djutils.immutablecollections.ImmutableVector
Copies the components of this immutable vector into the specified array.
copyOrWrap - Variable in class org.djutils.immutablecollections.ImmutableAbstractCollection
COPY stores a safe, internal copy of the collection; WRAP stores a pointer to the original collection.
copyOrWrap - Variable in class org.djutils.immutablecollections.ImmutableAbstractMap
COPY stores a safe, internal copy of the collection; WRAP stores a pointer to the original collection.
create() - Static method in class org.djutils.logger.CategoryLogger
Create a new logger for the system console.

D

debug(Object) - Method in class org.djutils.logger.CategoryLogger.DelegateLogger
Create a debug log entry that will always be output, independent of LogCategory settings.
debug(String) - Method in class org.djutils.logger.CategoryLogger.DelegateLogger
Create a debug log entry that will always be output, independent of LogCategory settings.
debug(String, Object...) - Method in class org.djutils.logger.CategoryLogger.DelegateLogger
Create a debug log entry that will always be output, independent of LogCategory settings.
debug(Throwable) - Method in class org.djutils.logger.CategoryLogger.DelegateLogger
Create a debug log entry that will always be output, independent of LogCategory settings.
debug(Throwable, String) - Method in class org.djutils.logger.CategoryLogger.DelegateLogger
Create a debug log entry that will always be output, independent of LogCategory settings.
debug(Throwable, String, Object...) - Method in class org.djutils.logger.CategoryLogger.DelegateLogger
Create a debug log entry that will always be output, independent of LogCategory settings.
Decoder - Interface in org.djutils.decoderdumper
Decoder interface.
DEFAULT_MESSAGE_FORMAT - Static variable in class org.djutils.logger.CategoryLogger
The default message format.
delegateLogger - Static variable in class org.djutils.logger.CategoryLogger
The delegate logger instance that does the actual logging work, after a positive filter outcome.
DelegateLogger(boolean) - Constructor for class org.djutils.logger.CategoryLogger.DelegateLogger
 
descendingIterator() - Method in interface org.djutils.immutablecollections.ImmutableNavigableSet
Returns an immutable iterator over the elements in this immutable set, in descending order.
descendingIterator() - Method in class org.djutils.immutablecollections.ImmutableTreeSet
Returns an immutable iterator over the elements in this immutable set, in descending order.
descendingMap() - Method in interface org.djutils.immutablecollections.ImmutableNavigableMap
Returns a reverse order view of the keys contained in this immutable map.
descendingMap() - Method in class org.djutils.immutablecollections.ImmutableTreeMap
Returns a reverse order view of the keys contained in this immutable map.
descendingSet() - Method in interface org.djutils.immutablecollections.ImmutableNavigableSet
Returns a reverse order view of the elements contained in this immutable set.
descendingSet() - Method in class org.djutils.immutablecollections.ImmutableTreeSet
Returns a reverse order view of the elements contained in this immutable set.
disjoint(ImmutableCollection<?>, ImmutableCollection<?>) - Static method in class org.djutils.immutablecollections.ImmutableCollections
Determine if two immutable collections have no common members.
disjoint(ImmutableCollection<?>, Collection<?>) - Static method in class org.djutils.immutablecollections.ImmutableCollections
Determine if an immutable collection and a (non immutable) collection have no common members
disjoint(Collection<?>, ImmutableCollection<?>) - Static method in class org.djutils.immutablecollections.ImmutableCollections
Determine if an immutable collection and a (non immutable) collection have no common members
Dumper<T> - Class in org.djutils.decoderdumper
Common code for all (decoder-) Dumpers.
Dumper(int) - Constructor for class org.djutils.decoderdumper.Dumper
Construct a new Dumper.
Dumper() - Constructor for class org.djutils.decoderdumper.Dumper
Construct a new Dumper with addressOffset 0.

E

elementAt(int) - Method in class org.djutils.immutablecollections.ImmutableVector
Returns the component at the specified index.
elements() - Method in class org.djutils.immutablecollections.ImmutableVector
Returns an enumeration of the components of this vector.
emptyImmutableList() - Static method in class org.djutils.immutablecollections.ImmutableCollections
Return an immutable empty list.
emptyImmutableMap() - Static method in class org.djutils.immutablecollections.ImmutableCollections
Return an immutable empty map.
emptyImmutableSet() - Static method in class org.djutils.immutablecollections.ImmutableCollections
Return an immutable empty set.
entrySet() - Method in class org.djutils.immutablecollections.ImmutableHashMap
Returns a Set view of the entries contained in this map.
entrySet() - Method in class org.djutils.immutablecollections.ImmutableLinkedHashMap
Returns a Set view of the entries contained in this map.
entrySet() - Method in interface org.djutils.immutablecollections.ImmutableMap
Returns a Set view of the entries contained in this map.
entrySet() - Method in class org.djutils.immutablecollections.ImmutableTreeMap
Returns a Set view of the entries contained in this map.
equals(Object) - Method in class org.djutils.immutablecollections.ImmutableAbstractList
Force to redefine equals for the implementations of immutable collection classes.
equals(Object) - Method in class org.djutils.immutablecollections.ImmutableAbstractMap
Force to redefine equals for the implementations of immutable collection classes.
equals(Object) - Method in class org.djutils.immutablecollections.ImmutableAbstractSet
Force to redefine equals for the implementations of immutable collection classes.
equals(Object) - Method in interface org.djutils.immutablecollections.ImmutableCollection
Force to redefine equals for the implementations of immutable collection classes.
equals(Object) - Method in interface org.djutils.immutablecollections.ImmutableList
Force to redefine equals for the implementations of immutable collection classes.
equals(Object) - Method in interface org.djutils.immutablecollections.ImmutableMap
Force to redefine equals for the implementations of immutable collection classes.
equals(Object) - Method in class org.djutils.immutablecollections.ImmutableMap.ImmutableEntry
equals(Object) - Method in interface org.djutils.immutablecollections.ImmutableNavigableMap
Force to redefine equals for the implementations of immutable collection classes.
equals(Object) - Method in interface org.djutils.immutablecollections.ImmutableNavigableSet
Force to redefine equals for the implementations of immutable collection classes.
equals(Object) - Method in interface org.djutils.immutablecollections.ImmutableSet
Force to redefine equals for the implementations of immutable collection classes.
equals(Object) - Method in interface org.djutils.immutablecollections.ImmutableSortedMap
Force to redefine equals for the implementations of immutable collection classes.
equals(Object) - Method in interface org.djutils.immutablecollections.ImmutableSortedSet
Force to redefine equals for the implementations of immutable collection classes.
equals(Object) - Method in class org.djutils.logger.LogCategory
error(Object) - Method in class org.djutils.logger.CategoryLogger.DelegateLogger
Create a error log entry that will always be output, independent of LogCategory settings.
error(String) - Method in class org.djutils.logger.CategoryLogger.DelegateLogger
Create a error log entry that will always be output, independent of LogCategory settings.
error(String, Object...) - Method in class org.djutils.logger.CategoryLogger.DelegateLogger
Create a error log entry that will always be output, independent of LogCategory settings.
error(Throwable) - Method in class org.djutils.logger.CategoryLogger.DelegateLogger
Create a error log entry that will always be output, independent of LogCategory settings.
error(Throwable, String) - Method in class org.djutils.logger.CategoryLogger.DelegateLogger
Create a error log entry that will always be output, independent of LogCategory settings.
error(Throwable, String, Object...) - Method in class org.djutils.logger.CategoryLogger.DelegateLogger
Create a error log entry that will always be output, independent of LogCategory settings.
execute(Try.Execution, String) - Static method in class org.djutils.exceptions.Try
Tries to execute.
execute(Try.Execution, String, Object) - Static method in class org.djutils.exceptions.Try
Tries to execute.
execute(Try.Execution, String, Object, Object) - Static method in class org.djutils.exceptions.Try
Tries to execute.
execute(Try.Execution, String, Object, Object, Object) - Static method in class org.djutils.exceptions.Try
Tries to execute.
execute(Try.Execution, String, Object, Object, Object, Object...) - Static method in class org.djutils.exceptions.Try
Tries to execute.
execute(Try.Execution, Class<T>, String) - Static method in class org.djutils.exceptions.Try
Tries to execute.
execute(Try.Execution, Class<T>, String, Object) - Static method in class org.djutils.exceptions.Try
Tries to execute.
execute(Try.Execution, Class<T>, String, Object, Object) - Static method in class org.djutils.exceptions.Try
Tries to execute.
execute(Try.Execution, Class<T>, String, Object, Object, Object) - Static method in class org.djutils.exceptions.Try
Tries to execute.
execute(Try.Execution, Class<T>, String, Object, Object, Object, Object...) - Static method in class org.djutils.exceptions.Try
Tries to execute.
execute() - Method in interface org.djutils.exceptions.Try.Execution
Executes some code using the context in which the Execution was created.

F

FieldSignature - Class in org.djutils.reflection
A field descriptor represents the type of a class, instance, or local variable.
FieldSignature(String) - Constructor for class org.djutils.reflection.FieldSignature
constructs a new FieldSignature.
FieldSignature(Class<?>) - Constructor for class org.djutils.reflection.FieldSignature
constructs a new FieldSignature.
filter(LogCategory) - Method in class org.djutils.logger.CategoryLogger.ConditionalLogger
Check whether the provided category needs to be logged.
filter(LogCategory...) - Method in class org.djutils.logger.CategoryLogger.ConditionalLogger
Check whether the provided categories contain one or more categories that need to be logged.
filter(LogCategory) - Static method in class org.djutils.logger.CategoryLogger
Check whether the provided category needs to be logged.
filter(LogCategory...) - Static method in class org.djutils.logger.CategoryLogger
Check whether the provided categories contain one or more categories that need to be logged.
filter(Set<LogCategory>) - Static method in class org.djutils.logger.CategoryLogger
Check whether the provided categories contain one or more categories that need to be logged.
first() - Method in interface org.djutils.immutablecollections.ImmutableSortedSet
Returns the first (lowest) element currently in this immutable set.
first() - Method in class org.djutils.immutablecollections.ImmutableTreeSet
Returns the first (lowest) element currently in this immutable set.
firstElement() - Method in class org.djutils.immutablecollections.ImmutableVector
Returns the first component (the item at index 0) of this immutable vector.
firstKey() - Method in interface org.djutils.immutablecollections.ImmutableSortedMap
Returns the first (lowest) key currently in this immutable map.
firstKey() - Method in class org.djutils.immutablecollections.ImmutableTreeMap
Returns the first (lowest) key currently in this immutable map.
FixedString - Class in org.djutils.decoderdumper
Copyright (c) 2013-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands.
FixedString(String) - Constructor for class org.djutils.decoderdumper.FixedString
Construct a Decoder that returns a fixed result in the getResult method.
floor(E) - Method in interface org.djutils.immutablecollections.ImmutableNavigableSet
Returns the greatest element in this immutable set less than or equal to the given element, or null if there is no such element.
floor(E) - Method in class org.djutils.immutablecollections.ImmutableTreeSet
Returns the greatest element in this immutable set less than or equal to the given element, or null if there is no such element.
floorKey(K) - Method in interface org.djutils.immutablecollections.ImmutableNavigableMap
Returns the greatest key in this immutable map less than or equal to the given key, or null if there is no such key.
floorKey(K) - Method in class org.djutils.immutablecollections.ImmutableTreeMap
Returns the greatest key in this immutable map less than or equal to the given key, or null if there is no such key.
flush() - Method in class org.djutils.decoderdumper.Dumper
Force the currently assembled output to be written (write partial result if the output line currently being assembled is not full).
forEach(Consumer<? super E>) - Method in class org.djutils.immutablecollections.ImmutableAbstractList
forEach(Consumer<? super E>) - Method in class org.djutils.immutablecollections.ImmutableAbstractSet
forEach(BiConsumer<? super K, ? super V>) - Method in interface org.djutils.immutablecollections.ImmutableMap
Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.
forName(String) - Static method in class org.djutils.primitives.Primitive
returns the primitiveClass of the name given as defined by the Java VM class constants.
frequency(ImmutableCollection<?>, Object) - Static method in class org.djutils.immutablecollections.ImmutableCollections
Return the number of occurrences of an object in an immutable collection.

G

GeometricMean<V extends Number,W extends Number> - Class in org.djutils.means
Compute the geometric (weighted) mean of a set of values.
GeometricMean() - Constructor for class org.djutils.means.GeometricMean
 
get(int) - Method in class org.djutils.immutablecollections.ImmutableAbstractList
Returns the element at the specified position in this immutable list.
get(Object) - Method in class org.djutils.immutablecollections.ImmutableAbstractMap
Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.
get(int) - Method in interface org.djutils.immutablecollections.ImmutableList
Returns the element at the specified position in this immutable list.
get(Object) - Method in interface org.djutils.immutablecollections.ImmutableMap
Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.
getAllConstructors(Class<?>, Constructor<?>[]) - Static method in class org.djutils.reflection.ClassUtil
gets all the constructors of a class and adds the result to result.
getAllFields(Class<?>, Set<Field>) - Static method in class org.djutils.reflection.ClassUtil
gets all the fields of a class (public, protected, package, and private) and adds the result to the return value.
getAllFields(Class<?>) - Static method in class org.djutils.reflection.ClassUtil
gets all the fields of a class (public, protected, package, and private).
getAllMethods(Class<?>, String, Method[]) - Static method in class org.djutils.reflection.ClassUtil
gets all the methods of a class and adds the result to result.
getClass(Object[]) - Static method in class org.djutils.reflection.ClassUtil
converts an array of objects to their corresponding classes.
getClassValue() - Method in class org.djutils.reflection.FieldSignature
 
getCollection() - Method in class org.djutils.immutablecollections.ImmutableAbstractCollection
Returns the underlying collection of this immutable collection.
getCollection() - Method in class org.djutils.immutablecollections.ImmutableAbstractList
Returns the underlying collection of this immutable collection.
getCollection() - Method in class org.djutils.immutablecollections.ImmutableAbstractSet
Returns the underlying collection of this immutable collection.
getCollection() - Method in class org.djutils.immutablecollections.ImmutableArrayList
Returns the underlying collection of this immutable collection.
getCollection() - Method in class org.djutils.immutablecollections.ImmutableHashSet
Returns the underlying collection of this immutable collection.
getCollection() - Method in class org.djutils.immutablecollections.ImmutableLinkedHashSet
Returns the underlying collection of this immutable collection.
getCollection() - Method in class org.djutils.immutablecollections.ImmutableTreeSet
Returns the underlying collection of this immutable collection.
getCollection() - Method in class org.djutils.immutablecollections.ImmutableVector
Returns the underlying collection of this immutable collection.
getKey() - Method in class org.djutils.immutablecollections.ImmutableMap.ImmutableEntry
Returns the key corresponding to this entry.
getMap() - Method in class org.djutils.immutablecollections.ImmutableAbstractMap
Prepare the map of the right type for use a subclass.
getMap() - Method in class org.djutils.immutablecollections.ImmutableHashMap
Prepare the map of the right type for use a subclass.
getMap() - Method in class org.djutils.immutablecollections.ImmutableLinkedHashMap
Prepare the map of the right type for use a subclass.
getMap() - Method in class org.djutils.immutablecollections.ImmutableTreeMap
Prepare the map of the right type for use a subclass.
getMaximumWidth() - Method in class org.djutils.decoderdumper.Base64Decoder
Retrieve the maximum width (in characters) of results that this Decoder can return (all shorter results will be padded to this width with spaces, unless this is the last active Decoder).
getMaximumWidth() - Method in class org.djutils.decoderdumper.CharDecoder
Retrieve the maximum width (in characters) of results that this Decoder can return (all shorter results will be padded to this width with spaces, unless this is the last active Decoder).
getMaximumWidth() - Method in interface org.djutils.decoderdumper.Decoder
Retrieve the maximum width (in characters) of results that this Decoder can return (all shorter results will be padded to this width with spaces, unless this is the last active Decoder).
getMaximumWidth() - Method in class org.djutils.decoderdumper.Dumper
Return the maximum width of an output line.
getMaximumWidth() - Method in class org.djutils.decoderdumper.FixedString
Retrieve the maximum width (in characters) of results that this Decoder can return (all shorter results will be padded to this width with spaces, unless this is the last active Decoder).
getMaximumWidth() - Method in class org.djutils.decoderdumper.HexAddressDecoder
Retrieve the maximum width (in characters) of results that this Decoder can return (all shorter results will be padded to this width with spaces, unless this is the last active Decoder).
getMaximumWidth() - Method in class org.djutils.decoderdumper.HexDecoder
Retrieve the maximum width (in characters) of results that this Decoder can return (all shorter results will be padded to this width with spaces, unless this is the last active Decoder).
getMaximumWidth() - Method in class org.djutils.decoderdumper.TimeStamper
Retrieve the maximum width (in characters) of results that this Decoder can return (all shorter results will be padded to this width with spaces, unless this is the last active Decoder).
getMean() - Method in class org.djutils.means.AbstractMean
Returns the weighted mean of accumulated data.
getMean() - Method in class org.djutils.means.ArithmeticMean
Returns the weighted mean of accumulated data.
getMean() - Method in class org.djutils.means.GeometricMean
Returns the weighted mean of accumulated data.
getMean() - Method in class org.djutils.means.HarmonicMean
Returns the weighted mean of accumulated data.
getOrDefault(Object, V) - Method in interface org.djutils.immutablecollections.ImmutableMap
Returns the value to which the specified key is mapped, or defaultValue if this map contains no mapping for the key.
getParameterDescriptor() - Method in class org.djutils.reflection.MethodSignature
 
getParameterDescriptor(String) - Static method in class org.djutils.reflection.MethodSignature
 
getParameterTypes() - Method in class org.djutils.reflection.MethodSignature
returns the parameterTypes
getParameterTypes(String) - Static method in class org.djutils.reflection.MethodSignature
returns the parameterTypes
getPrimitive(Class<?>) - Static method in class org.djutils.primitives.Primitive
gets the primitive of the given wrapperClass.
getResource(String) - Static method in class org.djutils.io.URLResource
Resolves a resource for name.
getResource(String, String) - Static method in class org.djutils.io.URLResource
Resolves a resource for name.
getResourceAsStream(String) - Static method in class org.djutils.io.URLResource
returns the resource as stream.
getResult() - Method in class org.djutils.decoderdumper.Base64Decoder
Retrieve the current result of this Decoder.
getResult() - Method in class org.djutils.decoderdumper.CharDecoder
Retrieve the current result of this Decoder.
getResult() - Method in interface org.djutils.decoderdumper.Decoder
Retrieve the current result of this Decoder.
getResult() - Method in class org.djutils.decoderdumper.FixedString
Retrieve the current result of this Decoder.
getResult() - Method in class org.djutils.decoderdumper.HexAddressDecoder
Retrieve the current result of this Decoder.
getResult() - Method in class org.djutils.decoderdumper.HexDecoder
Retrieve the current result of this Decoder.
getResult() - Method in class org.djutils.decoderdumper.TimeStamper
Retrieve the current result of this Decoder.
getReturnDescriptor() - Method in class org.djutils.reflection.MethodSignature
 
getReturnDescriptor(String) - Static method in class org.djutils.reflection.MethodSignature
 
getReturnType() - Method in class org.djutils.reflection.MethodSignature
returns the returnType of this methodDescriptor
getReturnType(String) - Static method in class org.djutils.reflection.MethodSignature
returns the returnType of this methodDescriptor
getStringValue() - Method in class org.djutils.reflection.FieldSignature
 
getSum() - Method in class org.djutils.means.AbstractMean
Returns the weighted sum of available data.
getSumOfWeights() - Method in class org.djutils.means.AbstractMean
Returns the sum of the weights.
getValue() - Method in class org.djutils.immutablecollections.ImmutableMap.ImmutableEntry
Returns the value corresponding to this entry.
getWrapper(Class<?>) - Static method in class org.djutils.primitives.Primitive
gets the wrapper of this primitive class.

H

HarmonicMean<V extends Number,W extends Number> - Class in org.djutils.means
Compute the harmonic (weighted) mean of a set of values.
HarmonicMean() - Constructor for class org.djutils.means.HarmonicMean
 
hashCode() - Method in class org.djutils.immutablecollections.ImmutableAbstractList
Force to redefine hashCode for the implementations of immutable collection classes.
hashCode() - Method in class org.djutils.immutablecollections.ImmutableAbstractMap
Force to redefine hashCode for the implementations of immutable collection classes.
hashCode() - Method in class org.djutils.immutablecollections.ImmutableAbstractSet
Force to redefine hashCode for the implementations of immutable collection classes.
hashCode() - Method in interface org.djutils.immutablecollections.ImmutableCollection
Force to redefine hashCode for the implementations of immutable collection classes.
hashCode() - Method in interface org.djutils.immutablecollections.ImmutableList
Force to redefine hashCode for the implementations of immutable collection classes.
hashCode() - Method in interface org.djutils.immutablecollections.ImmutableMap
Force to redefine hashCode for the implementations of immutable collection classes.
hashCode() - Method in class org.djutils.immutablecollections.ImmutableMap.ImmutableEntry
hashCode() - Method in interface org.djutils.immutablecollections.ImmutableNavigableMap
Force to redefine hashCode for the implementations of immutable collection classes.
hashCode() - Method in interface org.djutils.immutablecollections.ImmutableNavigableSet
Force to redefine hashCode for the implementations of immutable collection classes.
hashCode() - Method in interface org.djutils.immutablecollections.ImmutableSet
Force to redefine hashCode for the implementations of immutable collection classes.
hashCode() - Method in interface org.djutils.immutablecollections.ImmutableSortedMap
Force to redefine hashCode for the implementations of immutable collection classes.
hashCode() - Method in interface org.djutils.immutablecollections.ImmutableSortedSet
Force to redefine hashCode for the implementations of immutable collection classes.
hashCode() - Method in class org.djutils.logger.LogCategory
hasNext() - Method in class org.djutils.immutablecollections.ImmutableIterator
headMap(K, boolean) - Method in interface org.djutils.immutablecollections.ImmutableNavigableMap
Returns a view of the portion of this immutable map whose keys are less than (or equal to, if inclusive is true) toKey.
headMap(K) - Method in interface org.djutils.immutablecollections.ImmutableSortedMap
Returns a view of the portion of this immutable map whose keys are strictly less than toKey.
headMap(K) - Method in class org.djutils.immutablecollections.ImmutableTreeMap
Returns a view of the portion of this immutable map whose keys are strictly less than toKey.
headMap(K, boolean) - Method in class org.djutils.immutablecollections.ImmutableTreeMap
Returns a view of the portion of this immutable map whose keys are less than (or equal to, if inclusive is true) toKey.
headSet(E, boolean) - Method in interface org.djutils.immutablecollections.ImmutableNavigableSet
Returns a view of the portion of this immutable set whose elements are less than (or equal to, if inclusive is true) toElement.
headSet(E) - Method in interface org.djutils.immutablecollections.ImmutableSortedSet
Returns a view of the portion of this immutable set whose elements are strictly less than toElement.
headSet(E) - Method in class org.djutils.immutablecollections.ImmutableTreeSet
Returns a view of the portion of this immutable set whose elements are strictly less than toElement.
headSet(E, boolean) - Method in class org.djutils.immutablecollections.ImmutableTreeSet
Returns a view of the portion of this immutable set whose elements are less than (or equal to, if inclusive is true) toElement.
HexAddressDecoder - Class in org.djutils.decoderdumper
Keep track of the address of the decoder-dumper and call flushLine when the last possible address of a line is received.
HexAddressDecoder(int) - Constructor for class org.djutils.decoderdumper.HexAddressDecoder
Construct a new HexAddressDecoder.
HexDecoder - Class in org.djutils.decoderdumper
Dump bytes as hexadecimal numbers
HexDecoder(int, int) - Constructor for class org.djutils.decoderdumper.HexDecoder
Construct a new HexDecoder.
HexDumper - Class in org.djutils.decoderdumper
Dump data in hexadecimal format and (insofar possible) as characters.
HexDumper(int) - Constructor for class org.djutils.decoderdumper.HexDumper
Construct a new HexDumper.
HexDumper() - Constructor for class org.djutils.decoderdumper.HexDumper
Construct a new HexDumper.
hexDumper(int, byte[]) - Static method in class org.djutils.decoderdumper.HexDumper
Create a HexDumper object; use it to dump an array of bytes and return the dump as a String.
hexDumper(byte[]) - Static method in class org.djutils.decoderdumper.HexDumper
Create a HexDumper object with addressOffset 0; use it to dump an array of bytes and return the dump as a String.
higher(E) - Method in interface org.djutils.immutablecollections.ImmutableNavigableSet
Returns the least element in this immutable set strictly greater than the given element, or null if there is no such element.
higher(E) - Method in class org.djutils.immutablecollections.ImmutableTreeSet
Returns the least element in this immutable set strictly greater than the given element, or null if there is no such element.
higherKey(K) - Method in interface org.djutils.immutablecollections.ImmutableNavigableMap
Returns the least key in this immutable map strictly greater than the given key, or null if there is no such key.
higherKey(K) - Method in class org.djutils.immutablecollections.ImmutableTreeMap
Returns the least key in this immutable map strictly greater than the given key, or null if there is no such key.

I

ignoreForIdenticalOutputCheck() - Method in class org.djutils.decoderdumper.Base64Decoder
If the result of this Decoder should not be used to compare output lines for suppressing identical lines, this method should return true; otherwise it should return false;
ignoreForIdenticalOutputCheck() - Method in class org.djutils.decoderdumper.CharDecoder
If the result of this Decoder should not be used to compare output lines for suppressing identical lines, this method should return true; otherwise it should return false;
ignoreForIdenticalOutputCheck() - Method in interface org.djutils.decoderdumper.Decoder
If the result of this Decoder should not be used to compare output lines for suppressing identical lines, this method should return true; otherwise it should return false;
ignoreForIdenticalOutputCheck() - Method in class org.djutils.decoderdumper.FixedString
If the result of this Decoder should not be used to compare output lines for suppressing identical lines, this method should return true; otherwise it should return false;
ignoreForIdenticalOutputCheck() - Method in class org.djutils.decoderdumper.HexAddressDecoder
If the result of this Decoder should not be used to compare output lines for suppressing identical lines, this method should return true; otherwise it should return false;
ignoreForIdenticalOutputCheck() - Method in class org.djutils.decoderdumper.HexDecoder
If the result of this Decoder should not be used to compare output lines for suppressing identical lines, this method should return true; otherwise it should return false;
ignoreForIdenticalOutputCheck() - Method in class org.djutils.decoderdumper.TimeStamper
If the result of this Decoder should not be used to compare output lines for suppressing identical lines, this method should return true; otherwise it should return false;
Immutable - Enum in org.djutils.immutablecollections
Indicate whether the immutable collection contains a COPY of the collection (neither changeable by the user of the immutable collection, nor by anyone holding a pointer to the original collection), or a WRAP for the original collection (not changeable by the user of the immutable collection, but can be changed by anyone holding a pointer to the original collection that is wrapped).
ImmutableAbstractCollection<E> - Class in org.djutils.immutablecollections
An abstract base class for an immutable wrapper for a Set.
ImmutableAbstractCollection(Immutable) - Constructor for class org.djutils.immutablecollections.ImmutableAbstractCollection
Construct an abstract immutable collection.
ImmutableAbstractList<E> - Class in org.djutils.immutablecollections
An abstract base class for an immutable wrapper for a List.
ImmutableAbstractList(List<E>, Immutable) - Constructor for class org.djutils.immutablecollections.ImmutableAbstractList
Construct an abstract immutable list.
ImmutableAbstractMap<K,V> - Class in org.djutils.immutablecollections
An abstract base class for an immutable wrapper for a Map.
ImmutableAbstractMap(Map<K, V>, Immutable) - Constructor for class org.djutils.immutablecollections.ImmutableAbstractMap
Construct an abstract immutable map.
ImmutableAbstractSet<E> - Class in org.djutils.immutablecollections
An abstract base class for an immutable wrapper for a Set.
ImmutableAbstractSet(Set<E>, Immutable) - Constructor for class org.djutils.immutablecollections.ImmutableAbstractSet
Construct an abstract immutable set.
ImmutableArrayList<E> - Class in org.djutils.immutablecollections
An immutable wrapper for an ArrayList.
ImmutableArrayList(Collection<? extends E>) - Constructor for class org.djutils.immutablecollections.ImmutableArrayList
 
ImmutableArrayList(List<E>, Immutable) - Constructor for class org.djutils.immutablecollections.ImmutableArrayList
 
ImmutableArrayList(ImmutableAbstractCollection<? extends E>) - Constructor for class org.djutils.immutablecollections.ImmutableArrayList
 
ImmutableArrayList(ImmutableAbstractList<E>, Immutable) - Constructor for class org.djutils.immutablecollections.ImmutableArrayList
 
ImmutableCollection<E> - Interface in org.djutils.immutablecollections
A Collection interface without the methods that can change it.
ImmutableCollections - Class in org.djutils.immutablecollections
Static methods operating on immutable collections, or a mix of an immutable collection and a mutable collection.
ImmutableEntry(Map.Entry<K, V>) - Constructor for class org.djutils.immutablecollections.ImmutableMap.ImmutableEntry
 
ImmutableHashMap<K,V> - Class in org.djutils.immutablecollections
An immutable wrapper for a HashMap.
ImmutableHashMap(Map<K, V>) - Constructor for class org.djutils.immutablecollections.ImmutableHashMap
 
ImmutableHashMap(Map<K, V>, Immutable) - Constructor for class org.djutils.immutablecollections.ImmutableHashMap
 
ImmutableHashMap(ImmutableAbstractMap<K, V>) - Constructor for class org.djutils.immutablecollections.ImmutableHashMap
 
ImmutableHashMap(ImmutableAbstractMap<K, V>, Immutable) - Constructor for class org.djutils.immutablecollections.ImmutableHashMap
 
ImmutableHashSet<E> - Class in org.djutils.immutablecollections
An immutable wrapper for a HashSet.
ImmutableHashSet(Collection<? extends E>) - Constructor for class org.djutils.immutablecollections.ImmutableHashSet
 
ImmutableHashSet(Set<E>, Immutable) - Constructor for class org.djutils.immutablecollections.ImmutableHashSet
 
ImmutableHashSet(ImmutableAbstractCollection<? extends E>) - Constructor for class org.djutils.immutablecollections.ImmutableHashSet
 
ImmutableHashSet(ImmutableAbstractSet<E>, Immutable) - Constructor for class org.djutils.immutablecollections.ImmutableHashSet
 
ImmutableIterator<E> - Class in org.djutils.immutablecollections
An immutable iterator over elements, wrapping a "mutable" iterator.
ImmutableIterator(Iterator<E>) - Constructor for class org.djutils.immutablecollections.ImmutableIterator
 
ImmutableLinkedHashMap<K,V> - Class in org.djutils.immutablecollections
An immutable wrapper for a HashMap.
ImmutableLinkedHashMap(Map<K, V>) - Constructor for class org.djutils.immutablecollections.ImmutableLinkedHashMap
 
ImmutableLinkedHashMap(Map<K, V>, Immutable) - Constructor for class org.djutils.immutablecollections.ImmutableLinkedHashMap
 
ImmutableLinkedHashMap(ImmutableAbstractMap<K, V>) - Constructor for class org.djutils.immutablecollections.ImmutableLinkedHashMap
 
ImmutableLinkedHashMap(ImmutableAbstractMap<K, V>, Immutable) - Constructor for class org.djutils.immutablecollections.ImmutableLinkedHashMap
 
ImmutableLinkedHashSet<E> - Class in org.djutils.immutablecollections
An immutable wrapper for a HashSet.
ImmutableLinkedHashSet(Collection<? extends E>) - Constructor for class org.djutils.immutablecollections.ImmutableLinkedHashSet
 
ImmutableLinkedHashSet(Set<E>, Immutable) - Constructor for class org.djutils.immutablecollections.ImmutableLinkedHashSet
 
ImmutableLinkedHashSet(ImmutableAbstractCollection<? extends E>) - Constructor for class org.djutils.immutablecollections.ImmutableLinkedHashSet
 
ImmutableLinkedHashSet(ImmutableAbstractSet<E>, Immutable) - Constructor for class org.djutils.immutablecollections.ImmutableLinkedHashSet
 
ImmutableList<E> - Interface in org.djutils.immutablecollections
A List interface without the methods that can change it.
ImmutableMap<K,V> - Interface in org.djutils.immutablecollections
A Map interface without the methods that can change it.
ImmutableMap.ImmutableEntry<K,V> - Class in org.djutils.immutablecollections
A map entry (key-value pair).
ImmutableNavigableMap<K,V> - Interface in org.djutils.immutablecollections
A ImmutableSortedMap extended with navigation methods reporting closest matches for given search targets.
ImmutableNavigableSet<E> - Interface in org.djutils.immutablecollections
A ImmutableSortedSet extended with navigation methods reporting closest matches for given search targets.
ImmutableSet<E> - Interface in org.djutils.immutablecollections
A Set interface without the methods that can change it.
ImmutableSortedMap<K,V> - Interface in org.djutils.immutablecollections
A SortedMap interface without the methods that can change it.
ImmutableSortedSet<E> - Interface in org.djutils.immutablecollections
A SortedSet interface without the methods that can change it.
ImmutableTreeMap<K,V> - Class in org.djutils.immutablecollections
An immutable wrapper for a TreeMap.
ImmutableTreeMap(Map<K, V>) - Constructor for class org.djutils.immutablecollections.ImmutableTreeMap
 
ImmutableTreeMap(NavigableMap<K, V>, Immutable) - Constructor for class org.djutils.immutablecollections.ImmutableTreeMap
 
ImmutableTreeMap(ImmutableAbstractMap<K, V>) - Constructor for class org.djutils.immutablecollections.ImmutableTreeMap
 
ImmutableTreeMap(ImmutableTreeMap<K, V>, Immutable) - Constructor for class org.djutils.immutablecollections.ImmutableTreeMap
 
ImmutableTreeSet<E> - Class in org.djutils.immutablecollections
An immutable wrapper for a TreeSet.
ImmutableTreeSet(Collection<? extends E>) - Constructor for class org.djutils.immutablecollections.ImmutableTreeSet
 
ImmutableTreeSet(NavigableSet<E>, Immutable) - Constructor for class org.djutils.immutablecollections.ImmutableTreeSet
 
ImmutableTreeSet(ImmutableAbstractSet<E>) - Constructor for class org.djutils.immutablecollections.ImmutableTreeSet
 
ImmutableTreeSet(ImmutableTreeSet<E>, Immutable) - Constructor for class org.djutils.immutablecollections.ImmutableTreeSet
 
ImmutableVector<E> - Class in org.djutils.immutablecollections
An immutable wrapper for a Vector.
ImmutableVector(Collection<? extends E>) - Constructor for class org.djutils.immutablecollections.ImmutableVector
 
ImmutableVector(Vector<E>, Immutable) - Constructor for class org.djutils.immutablecollections.ImmutableVector
 
ImmutableVector(ImmutableAbstractCollection<? extends E>) - Constructor for class org.djutils.immutablecollections.ImmutableVector
 
ImmutableVector(ImmutableVector<E>, Immutable) - Constructor for class org.djutils.immutablecollections.ImmutableVector
 
increment(double, double) - Method in class org.djutils.means.AbstractMean
Accumulate some data.
indexOf(Object) - Method in class org.djutils.immutablecollections.ImmutableAbstractList
Returns the index of the first occurrence of the specified element in this immutable list, or -1 if this immutable list does not contain the element.
indexOf(Object) - Method in interface org.djutils.immutablecollections.ImmutableList
Returns the index of the first occurrence of the specified element in this immutable list, or -1 if this immutable list does not contain the element.
indexOf(Object, int) - Method in class org.djutils.immutablecollections.ImmutableVector
Returns the index of the first occurrence of the specified element in this immutable vector, searching forwards from index, or returns -1 if the element is not found.
indexOfSubList(ImmutableList<?>, ImmutableList<?>) - Static method in class org.djutils.immutablecollections.ImmutableCollections
Returns the starting position of the first occurrence of the specified target list within the specified source list, or -1 if there is no such occurrence.
indexOfSubList(ImmutableList<?>, List<?>) - Static method in class org.djutils.immutablecollections.ImmutableCollections
Returns the starting position of the first occurrence of the specified target list within the specified source list, or -1 if there is no such occurrence.
indexOfSubList(List<?>, ImmutableList<?>) - Static method in class org.djutils.immutablecollections.ImmutableCollections
Returns the starting position of the first occurrence of the specified target list within the specified source list, or -1 if there is no such occurrence.
info(Object) - Method in class org.djutils.logger.CategoryLogger.DelegateLogger
Create a info log entry that will always be output, independent of LogCategory settings.
info(String) - Method in class org.djutils.logger.CategoryLogger.DelegateLogger
Create a info log entry that will always be output, independent of LogCategory settings.
info(String, Object...) - Method in class org.djutils.logger.CategoryLogger.DelegateLogger
Create a info log entry that will always be output, independent of LogCategory settings.
info(Throwable) - Method in class org.djutils.logger.CategoryLogger.DelegateLogger
Create a info log entry that will always be output, independent of LogCategory settings.
info(Throwable, String) - Method in class org.djutils.logger.CategoryLogger.DelegateLogger
Create a info log entry that will always be output, independent of LogCategory settings.
info(Throwable, String, Object...) - Method in class org.djutils.logger.CategoryLogger.DelegateLogger
Create a info log entry that will always be output, independent of LogCategory settings.
isCopy() - Method in enum org.djutils.immutablecollections.Immutable
 
isCopy() - Method in interface org.djutils.immutablecollections.ImmutableCollection
Return whether the internal storage is a (shallow) copy of the original collection.
isCopy() - Method in interface org.djutils.immutablecollections.ImmutableMap
Return whether the internal storage is a (shallow) copy of the original map.
isEmpty() - Method in class org.djutils.immutablecollections.ImmutableAbstractList
Returns true if this immutable collection contains no elements.
isEmpty() - Method in class org.djutils.immutablecollections.ImmutableAbstractMap
Returns true if this immutable collection contains no elements.
isEmpty() - Method in class org.djutils.immutablecollections.ImmutableAbstractSet
Returns true if this immutable collection contains no elements.
isEmpty() - Method in interface org.djutils.immutablecollections.ImmutableCollection
Returns true if this immutable collection contains no elements.
isEmpty() - Method in interface org.djutils.immutablecollections.ImmutableMap
Returns true if this immutable collection contains no elements.
isMoreSpecific(Class<?>[], Class<?>[]) - Static method in class org.djutils.reflection.ClassUtil
Determines & returns whether constructor 'a' is more specific than constructor 'b', as defined in the Java Language Specification ???15.12.
isMoreSpecific(Constructor<?>, Constructor<?>) - Static method in class org.djutils.reflection.ClassUtil
Determines & returns whether constructor 'a' is more specific than constructor 'b', as defined in the Java Language Specification ???15.12.
isMoreSpecific(Method, Method) - Static method in class org.djutils.reflection.ClassUtil
Determines & returns whether constructor 'a' is more specific than constructor 'b', as defined in the Java Language Specification ???15.12.
isVisible(int, Class<?>, Class<?>) - Static method in class org.djutils.reflection.ClassUtil
Returns whether a declaringClass is accessible according to the modifiers.
isVisible(Field, Class<?>) - Static method in class org.djutils.reflection.ClassUtil
Returns whether a field is visible for a caller.
isVisible(Constructor<?>, Class<?>) - Static method in class org.djutils.reflection.ClassUtil
Returns whether a constructor is visible for a caller.
isVisible(Method, Class<?>) - Static method in class org.djutils.reflection.ClassUtil
Returns whether a method is visible for a caller.
isWrap() - Method in enum org.djutils.immutablecollections.Immutable
 
isWrap() - Method in class org.djutils.immutablecollections.ImmutableAbstractList
Return whether the internal storage is a wrapped pointer to the original collection.
isWrap() - Method in class org.djutils.immutablecollections.ImmutableAbstractMap
Return whether the internal storage is a wrapped pointer to the original map.
isWrap() - Method in class org.djutils.immutablecollections.ImmutableAbstractSet
Return whether the internal storage is a wrapped pointer to the original collection.
isWrap() - Method in interface org.djutils.immutablecollections.ImmutableCollection
Return whether the internal storage is a wrapped pointer to the original collection.
isWrap() - Method in interface org.djutils.immutablecollections.ImmutableMap
Return whether the internal storage is a wrapped pointer to the original map.
iterator() - Method in class org.djutils.immutablecollections.ImmutableAbstractList
Returns an immutable iterator over the elements in this immutable collection.
iterator() - Method in class org.djutils.immutablecollections.ImmutableAbstractSet
Returns an immutable iterator over the elements in this immutable collection.
iterator() - Method in interface org.djutils.immutablecollections.ImmutableCollection
Returns an immutable iterator over the elements in this immutable collection.

K

keySet() - Method in class org.djutils.immutablecollections.ImmutableHashMap
Returns a Set view of the keys contained in this map.
keySet() - Method in class org.djutils.immutablecollections.ImmutableLinkedHashMap
Returns a Set view of the keys contained in this map.
keySet() - Method in interface org.djutils.immutablecollections.ImmutableMap
Returns a Set view of the keys contained in this map.
keySet() - Method in interface org.djutils.immutablecollections.ImmutableNavigableMap
Returns a ImmutableSortedSet view of the keys contained in this map.
keySet() - Method in interface org.djutils.immutablecollections.ImmutableSortedMap
Return an ImmutableSortedSet view of the keys contained in this immutable map.
keySet() - Method in class org.djutils.immutablecollections.ImmutableTreeMap
Returns a ImmutableSortedSet view of the keys contained in this map.

L

last() - Method in interface org.djutils.immutablecollections.ImmutableSortedSet
Returns the last (highest) element currently in this immutable set.
last() - Method in class org.djutils.immutablecollections.ImmutableTreeSet
Returns the last (highest) element currently in this immutable set.
lastElement() - Method in class org.djutils.immutablecollections.ImmutableVector
Returns the last component of the immutable vector.
lastIndexOf(Object) - Method in class org.djutils.immutablecollections.ImmutableAbstractList
Returns the index of the last occurrence of the specified element in this immutable list, or -1 if this immutable list does not contain the element.
lastIndexOf(Object) - Method in interface org.djutils.immutablecollections.ImmutableList
Returns the index of the last occurrence of the specified element in this immutable list, or -1 if this immutable list does not contain the element.
lastIndexOf(Object, int) - Method in class org.djutils.immutablecollections.ImmutableVector
Returns the index of the last occurrence of the specified element in this immutable vector, searching backwards from index, or returns -1 if the element is not found.
lastIndexOfSubList(ImmutableList<?>, ImmutableList<?>) - Static method in class org.djutils.immutablecollections.ImmutableCollections
Returns the starting position of the last occurrence of the specified target list within the specified source list, or -1 if there is no such occurrence.
lastIndexOfSubList(ImmutableList<?>, List<?>) - Static method in class org.djutils.immutablecollections.ImmutableCollections
Returns the starting position of the last occurrence of the specified target list within the specified source list, or -1 if there is no such occurrence.
lastIndexOfSubList(List<?>, ImmutableList<?>) - Static method in class org.djutils.immutablecollections.ImmutableCollections
Returns the starting position of the last occurrence of the specified target list within the specified source list, or -1 if there is no such occurrence.
lastKey() - Method in interface org.djutils.immutablecollections.ImmutableSortedMap
Returns the last (highest) key currently in this immutable map.
lastKey() - Method in class org.djutils.immutablecollections.ImmutableTreeMap
Returns the last (highest) key currently in this immutable map.
LogCategory - Class in org.djutils.logger
LogCategory for the CategoryLogger.
LogCategory(String) - Constructor for class org.djutils.logger.LogCategory
 
lower(E) - Method in interface org.djutils.immutablecollections.ImmutableNavigableSet
Returns the greatest element in this immutable set strictly less than the given element, or null if there is no such element.
lower(E) - Method in class org.djutils.immutablecollections.ImmutableTreeSet
Returns the greatest element in this immutable set strictly less than the given element, or null if there is no such element.
lowerKey(K) - Method in interface org.djutils.immutablecollections.ImmutableNavigableMap
Returns the greatest key in this immutable map strictly less than the given key, or null if there is no such key.
lowerKey(K) - Method in class org.djutils.immutablecollections.ImmutableTreeMap
Returns the greatest key in this immutable map strictly less than the given key, or null if there is no such key.

M

matchSignature(Method[], String, Class<?>[]) - Static method in class org.djutils.reflection.ClassUtil
Filters an array methods for signatures that are compatible with a given signature.
matchSignature(Method, String, Class<?>[]) - Static method in class org.djutils.reflection.ClassUtil
Filters an array methods for signatures that are compatible with a given signature.
matchSignature(Constructor<?>, Class<?>[]) - Static method in class org.djutils.reflection.ClassUtil
Filters an array methods for signatures that are compatible with a given signature.
matchSignature(Constructor<?>[], Class<?>[]) - Static method in class org.djutils.reflection.ClassUtil
Filters an array methods for signatures that are compatible with a given signature.
max(ImmutableCollection<? extends T>) - Static method in class org.djutils.immutablecollections.ImmutableCollections
Returns the maximum element of an immutable collection according to the natural ordering of its elements.
max(ImmutableCollection<? extends T>, Comparator<? super T>) - Static method in class org.djutils.immutablecollections.ImmutableCollections
Returns the maximum element of an immutable collection according to the natural ordering of its elements.
MethodSignature - Class in org.djutils.reflection
A method descriptor represents the parameters that the method takes and the value that it returns.
MethodSignature(String) - Constructor for class org.djutils.reflection.MethodSignature
constructs a new MethodSignature.
MethodSignature(Method) - Constructor for class org.djutils.reflection.MethodSignature
constructs a new MethodSignature.
MethodSignature(Constructor<?>) - Constructor for class org.djutils.reflection.MethodSignature
constructs a new MethodSignature.
min(ImmutableCollection<? extends T>) - Static method in class org.djutils.immutablecollections.ImmutableCollections
Returns the minimum element of an immutable collection according to the natural ordering of its elements.
min(ImmutableCollection<? extends T>, Comparator<? super T>) - Static method in class org.djutils.immutablecollections.ImmutableCollections
Returns the minimum element of an immutable collection according to the natural ordering of its elements.

N

next() - Method in class org.djutils.immutablecollections.ImmutableIterator
noLogger - Static variable in class org.djutils.logger.CategoryLogger
The delegate logger that returns immediately after a negative filter outcome.

O

org.djutils.decoderdumper - package org.djutils.decoderdumper
Decode and dump a data stream in a human readable format.
org.djutils.exceptions - package org.djutils.exceptions
Utilities such as Throw and Try to help with exceptions.
org.djutils.immutablecollections - package org.djutils.immutablecollections
Contains a set of immutable collection interfaces and wrapper implementations.
org.djutils.io - package org.djutils.io
Classes to assist in translating URLs to paths, either based on a resource, file, or inside a jar-file.
org.djutils.logger - package org.djutils.logger
Classes to assist in logging.
org.djutils.means - package org.djutils.means
Compute various kinds of mean values.
org.djutils.primitives - package org.djutils.primitives
Helper class and methods for autoboxing and primitive types conversion (class and String).
org.djutils.reflection - package org.djutils.reflection
Classes to help retrieve information through reflection that the standard Class object does not offer.

P

parallelStream() - Method in class org.djutils.immutablecollections.ImmutableAbstractList
Returns a possibly parallel Stream with this collection as its source.
parallelStream() - Method in class org.djutils.immutablecollections.ImmutableAbstractSet
Returns a possibly parallel Stream with this collection as its source.
parallelStream() - Method in interface org.djutils.immutablecollections.ImmutableCollection
Returns a possibly parallel Stream with this collection as its source.
Primitive - Class in org.djutils.primitives
The Primitive class is a utility class to deal with primitives.

R

removeLogCategory(LogCategory) - Static method in class org.djutils.logger.CategoryLogger
Remove a category to be logged to the Writers.
resolveConstructor(Class<?>, Class<?>, Class<?>[]) - Static method in class org.djutils.reflection.ClassUtil
returns the interface method.
resolveConstructor(Class<?>, Class<?>[]) - Static method in class org.djutils.reflection.ClassUtil
returns the interface method.
resolveConstructor(Class<?>, Object[]) - Static method in class org.djutils.reflection.ClassUtil
returns the constructor.
resolveField(Class<?>, String) - Static method in class org.djutils.reflection.ClassUtil
resolves the field for a class, taking into account inner classes.
resolveField(Class<?>, Class<?>, String) - Static method in class org.djutils.reflection.ClassUtil
returns the field.
resolveField(Object, String) - Static method in class org.djutils.reflection.ClassUtil
resolves the field for a given object instance.
resolveMethod(Class<?>, Class<?>, String, Class<?>[]) - Static method in class org.djutils.reflection.ClassUtil
returns the interface method.
resolveMethod(Class<?>, String, Class<?>[]) - Static method in class org.djutils.reflection.ClassUtil
returns the interface method.
resolveMethod(Object, String, Class<?>[]) - Static method in class org.djutils.reflection.ClassUtil
resolves a method the method.
resolveMethod(Object, String, Object[]) - Static method in class org.djutils.reflection.ClassUtil
returns the method.
result - Variable in class org.djutils.decoderdumper.HexAddressDecoder
Result returned by getResult.

S

setAllLogLevel(Level) - Static method in class org.djutils.logger.CategoryLogger
Set a new logging level for all registered writers.
setAllLogMessageFormat(String) - Static method in class org.djutils.logger.CategoryLogger
Set a new logging format for the message lines of all writers.
setLogCategories(LogCategory...) - Static method in class org.djutils.logger.CategoryLogger
Set the categories to be logged to the Writers.
setLogLevel(Writer, Level) - Static method in class org.djutils.logger.CategoryLogger
Set a new logging level for one of the registered writers.
setLogMessageFormat(Writer, String) - Static method in class org.djutils.logger.CategoryLogger
Set a new logging format for the message lines of a writer.
setOutputStream(OutputStream) - Method in class org.djutils.decoderdumper.Dumper
Set or replace the active output stream.
setSuppressMultipleIdenticalLines(boolean) - Method in class org.djutils.decoderdumper.Dumper
Set the output compression mode.
size() - Method in class org.djutils.immutablecollections.ImmutableAbstractList
Returns the number of elements in this immutable collection.
size() - Method in class org.djutils.immutablecollections.ImmutableAbstractMap
Returns the number of elements in this immutable collection.
size() - Method in class org.djutils.immutablecollections.ImmutableAbstractSet
Returns the number of elements in this immutable collection.
size() - Method in interface org.djutils.immutablecollections.ImmutableCollection
Returns the number of elements in this immutable collection.
size() - Method in interface org.djutils.immutablecollections.ImmutableMap
Returns the number of elements in this immutable collection.
spliterator() - Method in class org.djutils.immutablecollections.ImmutableAbstractList
Creates a Spliterator over the elements in this collection.
spliterator() - Method in class org.djutils.immutablecollections.ImmutableAbstractSet
Creates a Spliterator over the elements in this collection.
spliterator() - Method in interface org.djutils.immutablecollections.ImmutableCollection
Creates a Spliterator over the elements in this collection.
stream() - Method in class org.djutils.immutablecollections.ImmutableAbstractList
Returns a sequential Stream with this collection as its source.
stream() - Method in class org.djutils.immutablecollections.ImmutableAbstractSet
Returns a sequential Stream with this collection as its source.
stream() - Method in interface org.djutils.immutablecollections.ImmutableCollection
Returns a sequential Stream with this collection as its source.
subList(int, int) - Method in class org.djutils.immutablecollections.ImmutableArrayList
Returns a safe, immutable copy of the portion of this immutable list between the specified fromIndex, inclusive, and toIndex, exclusive.
subList(int, int) - Method in interface org.djutils.immutablecollections.ImmutableList
Returns a safe, immutable copy of the portion of this immutable list between the specified fromIndex, inclusive, and toIndex, exclusive.
subList(int, int) - Method in class org.djutils.immutablecollections.ImmutableVector
Returns a safe, immutable copy of the portion of this immutable list between the specified fromIndex, inclusive, and toIndex, exclusive.
subMap(K, boolean, K, boolean) - Method in interface org.djutils.immutablecollections.ImmutableNavigableMap
Returns a view of the portion of this immutable map whose keys range from fromKey to toKey.
subMap(K, K) - Method in interface org.djutils.immutablecollections.ImmutableSortedMap
Returns a view of the portion of this immutable map whose keys range from fromKey, inclusive, to toKey, exclusive.
subMap(K, K) - Method in class org.djutils.immutablecollections.ImmutableTreeMap
Returns a view of the portion of this immutable map whose keys range from fromKey, inclusive, to toKey, exclusive.
subMap(K, boolean, K, boolean) - Method in class org.djutils.immutablecollections.ImmutableTreeMap
Returns a view of the portion of this immutable map whose keys range from fromKey to toKey.
subSet(E, boolean, E, boolean) - Method in interface org.djutils.immutablecollections.ImmutableNavigableSet
Returns a view of the portion of this immutable set whose elements range from fromElement to toElement.
subSet(E, E) - Method in interface org.djutils.immutablecollections.ImmutableSortedSet
Returns a view of the portion of this immutable set whose elements range from fromElement, inclusive, to toElement, exclusive.
subSet(E, E) - Method in class org.djutils.immutablecollections.ImmutableTreeSet
Returns a view of the portion of this immutable set whose elements range from fromElement, inclusive, to toElement, exclusive.
subSet(E, boolean, E, boolean) - Method in class org.djutils.immutablecollections.ImmutableTreeSet
Returns a view of the portion of this immutable set whose elements range from fromElement to toElement.

T

tailMap(K, boolean) - Method in interface org.djutils.immutablecollections.ImmutableNavigableMap
Returns a view of the portion of this immutable map whose keys are greater than (or equal to, if inclusive is true) fromKey.
tailMap(K) - Method in interface org.djutils.immutablecollections.ImmutableSortedMap
Returns a view of the portion of this immutable map whose keys are greater than or equal to fromKey.
tailMap(K) - Method in class org.djutils.immutablecollections.ImmutableTreeMap
Returns a view of the portion of this immutable map whose keys are greater than or equal to fromKey.
tailMap(K, boolean) - Method in class org.djutils.immutablecollections.ImmutableTreeMap
Returns a view of the portion of this immutable map whose keys are greater than (or equal to, if inclusive is true) fromKey.
tailSet(E, boolean) - Method in interface org.djutils.immutablecollections.ImmutableNavigableSet
Returns a view of the portion of this immutable set whose elements are greater than (or equal to, if inclusive is true) fromElement.
tailSet(E) - Method in interface org.djutils.immutablecollections.ImmutableSortedSet
Returns a view of the portion of this immutable set whose elements are greater than or equal to fromElement.
tailSet(E) - Method in class org.djutils.immutablecollections.ImmutableTreeSet
Returns a view of the portion of this immutable set whose elements are greater than or equal to fromElement.
tailSet(E, boolean) - Method in class org.djutils.immutablecollections.ImmutableTreeSet
Returns a view of the portion of this immutable set whose elements are greater than (or equal to, if inclusive is true) fromElement.
testFail(Try.Assignment<V>) - Static method in class org.djutils.exceptions.Try
Fails if the assignment succeeds.
testFail(Try.Assignment<V>, String) - Static method in class org.djutils.exceptions.Try
Fails if the assignment succeeds.
testFail(Try.Assignment<V>, Class<T>) - Static method in class org.djutils.exceptions.Try
Fails if the assignment succeeds.
testFail(Try.Assignment<V>, String, Class<T>) - Static method in class org.djutils.exceptions.Try
Fails if the assignment succeeds.
testFail(Try.Execution) - Static method in class org.djutils.exceptions.Try
Fails if the execution succeeds.
testFail(Try.Execution, String) - Static method in class org.djutils.exceptions.Try
Fails if the execution succeeds.
testFail(Try.Execution, Class<T>) - Static method in class org.djutils.exceptions.Try
Fails if the execution succeeds.
testFail(Try.Execution, String, Class<T>) - Static method in class org.djutils.exceptions.Try
Fails if the execution succeeds.
testSucceed(Try.Assignment<V>) - Static method in class org.djutils.exceptions.Try
Fails if the assignment does not succeed.
testSucceed(Try.Assignment<V>, String) - Static method in class org.djutils.exceptions.Try
Fails if the assignment does not succeed.
testSucceed(Try.Assignment<V>, Class<T>) - Static method in class org.djutils.exceptions.Try
Fails if the assignment does not succeed.
testSucceed(Try.Assignment<V>, String, Class<T>) - Static method in class org.djutils.exceptions.Try
Fails if the assignment does not succeed.
testSucceed(Try.Execution) - Static method in class org.djutils.exceptions.Try
Fails if the execution does not succeed.
testSucceed(Try.Execution, String) - Static method in class org.djutils.exceptions.Try
Fails if the execution does not succeed.
testSucceed(Try.Execution, Class<T>) - Static method in class org.djutils.exceptions.Try
Fails if the execution does not succeed.
testSucceed(Try.Execution, String, Class<T>) - Static method in class org.djutils.exceptions.Try
Fails if the execution does not succeed.
Throw - Class in org.djutils.exceptions
The Throw class has a number of static methods that make it easy to throw an exception under conditions for any Exception class, including the standard Java exceptions and exceptions from libraries that are used in the project.
TimeStamper - Class in org.djutils.decoderdumper
Decoder that returns a time stamp in milliseconds that applies to the time of dump of the first byte on the output line.
TimeStamper() - Constructor for class org.djutils.decoderdumper.TimeStamper
 
toArray() - Method in class org.djutils.immutablecollections.ImmutableAbstractList
Returns an array containing all of the elements in this immutable collection.
toArray(T[]) - Method in class org.djutils.immutablecollections.ImmutableAbstractList
Returns an array containing all of the elements in this immutable collection; the runtime type of the returned array is that of the specified array.
toArray() - Method in class org.djutils.immutablecollections.ImmutableAbstractSet
Returns an array containing all of the elements in this immutable collection.
toArray(T[]) - Method in class org.djutils.immutablecollections.ImmutableAbstractSet
Returns an array containing all of the elements in this immutable collection; the runtime type of the returned array is that of the specified array.
toArray() - Method in interface org.djutils.immutablecollections.ImmutableCollection
Returns an array containing all of the elements in this immutable collection.
toArray(T[]) - Method in interface org.djutils.immutablecollections.ImmutableCollection
Returns an array containing all of the elements in this immutable collection; the runtime type of the returned array is that of the specified array.
toBoolean(Object) - Static method in class org.djutils.primitives.Primitive
casts an object to Boolean.
toByte(Object) - Static method in class org.djutils.primitives.Primitive
casts an object to Byte.
toCharacter(Object) - Static method in class org.djutils.primitives.Primitive
casts an object to Character.
toClass(String) - Static method in class org.djutils.reflection.FieldSignature
converts a fieldDescriptor to its class representation
toCollection() - Method in class org.djutils.immutablecollections.ImmutableAbstractList
Returns a modifiable copy of this immutable collection.
toCollection() - Method in class org.djutils.immutablecollections.ImmutableAbstractSet
Returns a modifiable copy of this immutable collection.
toCollection() - Method in interface org.djutils.immutablecollections.ImmutableCollection
Returns a modifiable copy of this immutable collection.
toDescriptor(Class<?>[]) - Static method in class org.djutils.reflection.FieldSignature
converts an array of fields to its descriptor
toDescriptor(Class<?>) - Static method in class org.djutils.reflection.FieldSignature
converts a field to its descriptor
toDouble(Object) - Static method in class org.djutils.primitives.Primitive
casts an object to Double.
toFloat(Object) - Static method in class org.djutils.primitives.Primitive
casts an object to Float.
toInteger(Object) - Static method in class org.djutils.primitives.Primitive
casts an object to Integer.
toList() - Method in class org.djutils.immutablecollections.ImmutableArrayList
Returns a modifiable copy of this immutable list.
toList() - Method in interface org.djutils.immutablecollections.ImmutableList
Returns a modifiable copy of this immutable list.
toList() - Method in class org.djutils.immutablecollections.ImmutableVector
Returns a modifiable copy of this immutable list.
toLong(Object) - Static method in class org.djutils.primitives.Primitive
casts an object to Long.
toMap() - Method in class org.djutils.immutablecollections.ImmutableHashMap
Returns a modifiable copy of this immutable list.
toMap() - Method in class org.djutils.immutablecollections.ImmutableLinkedHashMap
Returns a modifiable copy of this immutable list.
toMap() - Method in interface org.djutils.immutablecollections.ImmutableMap
Returns a modifiable copy of this immutable list.
toMap() - Method in interface org.djutils.immutablecollections.ImmutableNavigableMap
Returns a modifiable copy of this immutable map.
toMap() - Method in interface org.djutils.immutablecollections.ImmutableSortedMap
Returns a modifiable copy of this immutable map.
toMap() - Method in class org.djutils.immutablecollections.ImmutableTreeMap
Returns a modifiable copy of this immutable map.
toSet() - Method in class org.djutils.immutablecollections.ImmutableHashSet
Returns a modifiable copy of this immutable set.
toSet() - Method in class org.djutils.immutablecollections.ImmutableLinkedHashSet
Returns a modifiable copy of this immutable set.
toSet() - Method in interface org.djutils.immutablecollections.ImmutableNavigableSet
Returns a modifiable copy of this immutable set.
toSet() - Method in interface org.djutils.immutablecollections.ImmutableSet
Returns a modifiable copy of this immutable set.
toSet() - Method in interface org.djutils.immutablecollections.ImmutableSortedSet
Returns a modifiable copy of this immutable set.
toSet() - Method in class org.djutils.immutablecollections.ImmutableTreeSet
Returns a modifiable copy of this immutable set.
toShort(Object) - Static method in class org.djutils.primitives.Primitive
casts an object to Short.
toString() - Method in class org.djutils.decoderdumper.Base64Dumper
toString() - Method in class org.djutils.decoderdumper.CharDecoder
toString() - Method in class org.djutils.decoderdumper.Dumper
toString() - Method in class org.djutils.decoderdumper.FixedString
toString() - Method in class org.djutils.decoderdumper.HexAddressDecoder
toString() - Method in class org.djutils.decoderdumper.HexDecoder
toString() - Method in class org.djutils.decoderdumper.HexDumper
toString() - Method in class org.djutils.decoderdumper.TimeStamper
toString() - Method in class org.djutils.immutablecollections.ImmutableAbstractList
toString() - Method in class org.djutils.immutablecollections.ImmutableAbstractMap
toString() - Method in class org.djutils.immutablecollections.ImmutableAbstractSet
toString() - Method in class org.djutils.immutablecollections.ImmutableArrayList
toString() - Method in class org.djutils.immutablecollections.ImmutableHashMap
toString() - Method in class org.djutils.immutablecollections.ImmutableHashSet
toString() - Method in class org.djutils.immutablecollections.ImmutableIterator
toString() - Method in class org.djutils.immutablecollections.ImmutableLinkedHashMap
toString() - Method in class org.djutils.immutablecollections.ImmutableLinkedHashSet
toString() - Method in class org.djutils.immutablecollections.ImmutableTreeMap
toString() - Method in class org.djutils.immutablecollections.ImmutableTreeSet
toString() - Method in class org.djutils.immutablecollections.ImmutableVector
toString() - Method in class org.djutils.logger.LogCategory
toString() - Method in class org.djutils.means.ArithmeticMean
toString() - Method in class org.djutils.means.GeometricMean
toString() - Method in class org.djutils.means.HarmonicMean
toString() - Method in class org.djutils.reflection.FieldSignature
toString() - Method in class org.djutils.reflection.MethodSignature
toVector() - Method in class org.djutils.immutablecollections.ImmutableVector
Returns a modifiable copy of this immutable vector.
trace(Object) - Method in class org.djutils.logger.CategoryLogger.DelegateLogger
Create a trace log entry that will always be output, independent of LogCategory settings.
trace(String) - Method in class org.djutils.logger.CategoryLogger.DelegateLogger
Create a trace log entry that will always be output, independent of LogCategory settings.
trace(String, Object...) - Method in class org.djutils.logger.CategoryLogger.DelegateLogger
Create a trace log entry that will always be output, independent of LogCategory settings.
trace(Throwable) - Method in class org.djutils.logger.CategoryLogger.DelegateLogger
Create a trace log entry that will always be output, independent of LogCategory settings.
trace(Throwable, String) - Method in class org.djutils.logger.CategoryLogger.DelegateLogger
Create a trace log entry that will always be output, independent of LogCategory settings.
trace(Throwable, String, Object...) - Method in class org.djutils.logger.CategoryLogger.DelegateLogger
Create a trace log entry that will always be output, independent of LogCategory settings.
Try - Class in org.djutils.exceptions
The Try class has a number of static methods that make it easy to try-catch an exception for any Throwable class, including the standard Java exceptions and exceptions from libraries that are used in the project.
Try.Assignment<V> - Interface in org.djutils.exceptions
Functional interface for calls to Try.assign(...).
Try.Execution - Interface in org.djutils.exceptions
Functional interface for calls to Try.execute(...).

U

URLResource - Class in org.djutils.io
The URLResource class helps to resolve a file location in a project, JAR, or folder.

V

valueOf(String) - Static method in enum org.djutils.immutablecollections.Immutable
Returns the enum constant of this type with the specified name.
values() - Static method in enum org.djutils.immutablecollections.Immutable
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Method in class org.djutils.immutablecollections.ImmutableAbstractMap
Returns a ImmutableCollection view of the values contained in this map.
values() - Method in class org.djutils.immutablecollections.ImmutableLinkedHashMap
Returns a ImmutableCollection view of the values contained in this map.
values() - Method in interface org.djutils.immutablecollections.ImmutableMap
Returns a ImmutableCollection view of the values contained in this map.
values() - Method in class org.djutils.immutablecollections.ImmutableTreeMap
Returns a ImmutableCollection view of the values contained in this map.

W

warn(Object) - Method in class org.djutils.logger.CategoryLogger.DelegateLogger
Create a warn log entry that will always be output, independent of LogCategory settings.
warn(String) - Method in class org.djutils.logger.CategoryLogger.DelegateLogger
Create a warn log entry that will always be output, independent of LogCategory settings.
warn(String, Object...) - Method in class org.djutils.logger.CategoryLogger.DelegateLogger
Create a warn log entry that will always be output, independent of LogCategory settings.
warn(Throwable) - Method in class org.djutils.logger.CategoryLogger.DelegateLogger
Create a warn log entry that will always be output, independent of LogCategory settings.
warn(Throwable, String) - Method in class org.djutils.logger.CategoryLogger.DelegateLogger
Create a warn log entry that will always be output, independent of LogCategory settings.
warn(Throwable, String, Object...) - Method in class org.djutils.logger.CategoryLogger.DelegateLogger
Create a warn log entry that will always be output, independent of LogCategory settings.
when(boolean, Class<T>, String) - Static method in class org.djutils.exceptions.Throw
Throw a Throwable (such as an Exception or Error) if a condition is met, e.g.
when(boolean, Class<T>, String, Object) - Static method in class org.djutils.exceptions.Throw
Throw a Throwable (such as an Exception or Error) if a condition is met, e.g.
when(boolean, Class<T>, String, Object, Object) - Static method in class org.djutils.exceptions.Throw
Throw a Throwable (such as an Exception or Error) if a condition is met, e.g.
when(boolean, Class<T>, String, Object, Object, Object) - Static method in class org.djutils.exceptions.Throw
Throw a Throwable (such as an Exception or Error) if a condition is met, e.g.
when(boolean, Class<T>, String, Object, Object, Object, Object...) - Static method in class org.djutils.exceptions.Throw
Throw a Throwable (such as an Exception or Error) if a condition is met, e.g.
when(O, boolean, Class<T>, String) - Static method in class org.djutils.exceptions.Throw
Throw a Throwable (such as an Exception or Error) if a condition is met, e.g.
when(O, boolean, Class<T>, String, Object) - Static method in class org.djutils.exceptions.Throw
Throw a Throwable (such as an Exception or Error) if a condition is met, e.g.
when(O, boolean, Class<T>, String, Object, Object) - Static method in class org.djutils.exceptions.Throw
Throw a Throwable (such as an Exception or Error) if a condition is met, e.g.
when(O, boolean, Class<T>, String, Object, Object, Object) - Static method in class org.djutils.exceptions.Throw
Throw a Throwable (such as an Exception or Error) if a condition is met, e.g.
when(O, boolean, Class<T>, String, Object, Object, Object, Object...) - Static method in class org.djutils.exceptions.Throw
Throw a Throwable (such as an Exception or Error) if a condition is met, e.g.
when(boolean) - Static method in class org.djutils.logger.CategoryLogger
The conditional filter that will result in the usage of a ConditionalLogger.
when(BooleanSupplier) - Static method in class org.djutils.logger.CategoryLogger
The conditional filter that will result in the usage of a ConditionalLogger.
whenNull(O, String) - Static method in class org.djutils.exceptions.Throw
Throw a NullPointerException if object is null, e.g.
whenNull(O, String, Object) - Static method in class org.djutils.exceptions.Throw
Throw a NullPointerException if object is null, e.g.
whenNull(O, String, Object, Object) - Static method in class org.djutils.exceptions.Throw
Throw a NullPointerException if object is null, e.g.
whenNull(O, String, Object, Object, Object) - Static method in class org.djutils.exceptions.Throw
Throw a NullPointerException if object is null, e.g.
whenNull(O, String, Object, Object, Object, Object...) - Static method in class org.djutils.exceptions.Throw
Throw a NullPointerException if object is null, e.g.
A B C D E F G H I K L M N O P R S T U V W 
Skip navigation links

Copyright © 2018–2019 Delft University of Technology. All rights reserved.