A B C D E F G H I J L M N O P R S T U V W 
All Classes All Packages

A

AbstractClassPathFileSource - Class in net.automatalib.common.util.setting
 
AbstractClassPathFileSource(String) - Constructor for class net.automatalib.common.util.setting.AbstractClassPathFileSource
 
AbstractMutableNumericID - Class in net.automatalib.common.util.nid
 
AbstractMutableNumericID() - Constructor for class net.automatalib.common.util.nid.AbstractMutableNumericID
 
AbstractPrintable - Class in net.automatalib.common.util.string
Abstract base class for printables.
AbstractPrintable() - Constructor for class net.automatalib.common.util.string.AbstractPrintable
 
AbstractSystemPropertiesSource - Class in net.automatalib.common.util.setting
 
AbstractSystemPropertiesSource() - Constructor for class net.automatalib.common.util.setting.AbstractSystemPropertiesSource
 
AbstractThreeLevelIterator<L1,​L2,​L3,​O> - Class in net.automatalib.common.util.collection
 
AbstractThreeLevelIterator(Iterator<L1>) - Constructor for class net.automatalib.common.util.collection.AbstractThreeLevelIterator
 
AbstractTwoLevelIterator<L1,​L2,​O> - Class in net.automatalib.common.util.collection
 
AbstractTwoLevelIterator(Iterator<? extends L1>) - Constructor for class net.automatalib.common.util.collection.AbstractTwoLevelIterator
 
add(Character) - Method in class net.automatalib.common.util.collection.CharRangeIterator
 
add(Integer) - Method in class net.automatalib.common.util.collection.IntRangeIterator
 
add(Integer) - Method in class net.automatalib.common.util.collection.PositiveIntSet
 
add(String) - Method in class net.automatalib.common.util.collection.CharStringRangeIterator
 
add(Supplier<? extends T>, int) - Method in class net.automatalib.common.util.random.WeightedSupplier
Adds a sub-supplier with a given weight.
add(T) - Method in class net.automatalib.common.util.collection.UnmodifiableListIterator
 
add(T) - Method in class net.automatalib.common.util.nid.DynamicList
 
add(T, int) - Method in class net.automatalib.common.util.random.WeightedSupplier
Adds an object to be supplied with a given weight.
addInt(int) - Method in class net.automatalib.common.util.collection.PositiveIntSet
 
addListener(IDChangeListener<T>, boolean) - Method in class net.automatalib.common.util.nid.IDChangeNotifier
 
afterExecute(Runnable, Throwable) - Method in class net.automatalib.common.util.concurrent.ScalingThreadPoolExecutor
 
allTuples(Iterable<? extends T>, int) - Static method in class net.automatalib.common.util.collection.CollectionsUtil
 
allTuples(Iterable<? extends T>, int, int) - Static method in class net.automatalib.common.util.collection.CollectionsUtil
Returns an iterator that iterates over all tuples of the given source domain whose length (dimension) is within the specified range.
appendArray(Appendable, Object[], String) - Static method in class net.automatalib.common.util.string.StringUtil
 
appendArrayEnquoted(Appendable, Object[], String) - Static method in class net.automatalib.common.util.string.StringUtil
 
appendIterable(Appendable, Iterable<?>, String) - Static method in class net.automatalib.common.util.string.StringUtil
 
appendIterableEnquoted(Appendable, Iterable<?>, String) - Static method in class net.automatalib.common.util.string.StringUtil
 
appendObject(Appendable, Object) - Static method in class net.automatalib.common.util.string.StringUtil
 
apply(int, int) - Method in interface net.automatalib.common.util.function.BiIntFunction
Applies this function to the given arguments.
apply(D) - Method in interface net.automatalib.common.util.mapping.Mapping
 
apply(Random) - Method in class net.automatalib.common.util.random.WeightedSupplier
 
apply(Mapping<? super D, R>, Iterable<? extends D>) - Static method in class net.automatalib.common.util.mapping.Mappings
Applies a mapping to an iterable.
apply(Mapping<? super D, R>, Collection<? extends D>) - Static method in class net.automatalib.common.util.mapping.Mappings
Applies a mapping to a collection, resulting in a collection containing the result of applying the specified mapping to each element in the collection.
apply(Mapping<? super D, R>, Iterator<? extends D>) - Static method in class net.automatalib.common.util.mapping.Mappings
Applies a mapping to an iterator.
apply(Mapping<? super D, R>, List<? extends D>) - Static method in class net.automatalib.common.util.mapping.Mappings
Applies a mapping to a list, resulting in a list containing the result of applying the specified mapping to each element in the list.
ArrayMapping<K extends NumericID,​V> - Class in net.automatalib.common.util.mapping
 
ArrayMapping() - Constructor for class net.automatalib.common.util.mapping.ArrayMapping
 
ArrayMapping(int) - Constructor for class net.automatalib.common.util.mapping.ArrayMapping
 
asBufferedInputStream(File) - Static method in class net.automatalib.common.util.IOUtil
Returns an input stream that reads the contents of the given file.
asBufferedInputStream(InputStream) - Static method in class net.automatalib.common.util.IOUtil
Ensures that the returned stream is a buffered version of the supplied input stream.
asBufferedNonClosingOutputStream(OutputStream) - Static method in class net.automatalib.common.util.IOUtil
Returns a buffered output stream that does not propagate calls to OutputStream.close() to the passed os.
asBufferedNonClosingUTF8Writer(OutputStream) - Static method in class net.automatalib.common.util.IOUtil
Returns a writer that writes contents to the given output stream with StandardCharsets.UTF_8 encoding and does not propagate calls to Writer.close() to the passed os.
asBufferedOutputStream(File) - Static method in class net.automatalib.common.util.IOUtil
Returns an output stream that writes the contents to the given file.
asBufferedOutputStream(OutputStream) - Static method in class net.automatalib.common.util.IOUtil
Ensures that the returned stream is a buffered version of the supplied output stream.
asBufferedUTF8Reader(File) - Static method in class net.automatalib.common.util.IOUtil
Returns a reader that parses the contents of the given file with StandardCharsets.UTF_8 encoding.
asBufferedUTF8Reader(InputStream) - Static method in class net.automatalib.common.util.IOUtil
Returns a reader that parses the contents of the given input stream with StandardCharsets.UTF_8 encoding.
asBufferedUTF8Writer(File) - Static method in class net.automatalib.common.util.IOUtil
Returns a writer that writes contents to the given file with StandardCharsets.UTF_8 encoding.
asBufferedUTF8Writer(OutputStream) - Static method in class net.automatalib.common.util.IOUtil
Returns a writer that writes contents to the given output stream with StandardCharsets.UTF_8 encoding.
asUncompressedBufferedNonClosingInputStream(InputStream) - Static method in class net.automatalib.common.util.IOUtil
Returns a buffered input stream that de-compresses the contents of is (in case the given input stream contains gzip'ed content) and does not propagate calls to InputStream.close() to the passed is.
asUncompressedBufferedNonClosingUTF8Reader(InputStream) - Static method in class net.automatalib.common.util.IOUtil
Returns a buffered reader that un-compresses the contents of is (in case the given input stream contains gzip'ed content), does not propagate calls to Reader.close() to the passed is and parses the contents of the given input stream with StandardCharsets.UTF_8 encoding.
asUncompressedInputStream(InputStream) - Static method in class net.automatalib.common.util.IOUtil
Ensures that the returned stream is an uncompressed version of the supplied input stream.
asUTF8Reader(InputStream) - Static method in class net.automatalib.common.util.IOUtil
Returns a reader that parses the contents of the given input stream with StandardCharsets.UTF_8 encoding.
asUTF8Writer(OutputStream) - Static method in class net.automatalib.common.util.IOUtil
Returns a writer that writes contents to the given output stream with StandardCharsets.UTF_8 encoding.
available() - Method in class net.automatalib.common.util.io.NonClosingInputStream
 
AWUtil - Class in net.automatalib.common.util.array
Utility class for writing containers to arrays.

B

beforeExecute(Thread, Runnable) - Method in class net.automatalib.common.util.concurrent.ScalingThreadPoolExecutor
 
BiIntFunction<R> - Interface in net.automatalib.common.util.function
An int-primitive version of the BiFunction.
BitSetIterator - Class in net.automatalib.common.util.collection
Iterator for iterating over a BitSet like over a normal collection.
BitSetIterator(BitSet) - Constructor for class net.automatalib.common.util.collection.BitSetIterator
Default constructor for an immutable iterator.
BitSetIterator(BitSet, boolean) - Constructor for class net.automatalib.common.util.collection.BitSetIterator
Constructor.
booleanValue(Boolean) - Static method in class net.automatalib.common.util.WrapperUtil
 
booleanValue(Boolean, boolean) - Static method in class net.automatalib.common.util.WrapperUtil
 
buildProcess(String[], Reader, Consumer<String>, Consumer<String>) - Static method in class net.automatalib.common.util.process.ProcessUtil
Builds and starts a system process for the given set of command line arguments.

C

canonicalComparator() - Static method in class net.automatalib.common.util.comparison.CmpUtil
Retrieves a canonical comparator for the given type, which has to be a List of Comparable types.
canonicalComparator(Comparator<? super U>) - Static method in class net.automatalib.common.util.comparison.CmpUtil
Retrieves a canonical comparator for the given list type.
canonicalCompare(int[], int[]) - Static method in class net.automatalib.common.util.comparison.CmpUtil
 
canonicalCompare(List<? extends U>, List<? extends U>) - Static method in class net.automatalib.common.util.comparison.CmpUtil
Compares two Lists of Comparable elements with respect to canonical ordering.
canonicalCompare(List<? extends U>, List<? extends U>, Comparator<? super U>) - Static method in class net.automatalib.common.util.comparison.CmpUtil
Compares two Lists with respect to canonical ordering.
cartesianProduct(Iterable<T>...) - Static method in class net.automatalib.common.util.collection.CollectionsUtil
Returns an iterator that iterates over the cartesian product of its given source domains.
charGet(int) - Method in class net.automatalib.common.util.collection.CharRange
 
charGet(int) - Method in class net.automatalib.common.util.collection.CharStringRange
 
charRange(char, char) - Static method in class net.automatalib.common.util.collection.CollectionsUtil
 
CharRange - Class in net.automatalib.common.util.collection
 
CharRange(char, char) - Constructor for class net.automatalib.common.util.collection.CharRange
 
CharRange(char, char, int) - Constructor for class net.automatalib.common.util.collection.CharRange
 
CharRange(IntRange) - Constructor for class net.automatalib.common.util.collection.CharRange
 
CharRangeIterator - Class in net.automatalib.common.util.collection
 
CharRangeIterator(char, int, int) - Constructor for class net.automatalib.common.util.collection.CharRangeIterator
 
CharRangeIterator(char, int, int, int) - Constructor for class net.automatalib.common.util.collection.CharRangeIterator
 
CharRangeIterator(IntRangeIterator) - Constructor for class net.automatalib.common.util.collection.CharRangeIterator
 
charStringRange(char, char) - Static method in class net.automatalib.common.util.collection.CollectionsUtil
 
CharStringRange - Class in net.automatalib.common.util.collection
 
CharStringRange(char, char) - Constructor for class net.automatalib.common.util.collection.CharStringRange
 
CharStringRange(char, char, int) - Constructor for class net.automatalib.common.util.collection.CharStringRange
 
CharStringRange(IntRange) - Constructor for class net.automatalib.common.util.collection.CharStringRange
 
CharStringRangeIterator - Class in net.automatalib.common.util.collection
 
CharStringRangeIterator(char, int, int) - Constructor for class net.automatalib.common.util.collection.CharStringRangeIterator
 
CharStringRangeIterator(char, int, int, int) - Constructor for class net.automatalib.common.util.collection.CharStringRangeIterator
 
CharStringRangeIterator(IntRangeIterator) - Constructor for class net.automatalib.common.util.collection.CharStringRangeIterator
 
choose(Random, List<? extends T>) - Static method in class net.automatalib.common.util.random.RandomUtil
 
choose(Random, T[]) - Static method in class net.automatalib.common.util.random.RandomUtil
 
clear() - Method in class net.automatalib.common.util.collection.PositiveIntSet
 
clear() - Method in class net.automatalib.common.util.nid.DynamicList
 
close() - Method in class net.automatalib.common.util.io.NonClosingInputStream
 
close() - Method in class net.automatalib.common.util.io.NonClosingOutputStream
 
close() - Method in class net.automatalib.common.util.io.UnclosableInputStream
 
close() - Method in class net.automatalib.common.util.io.UnclosableOutputStream
 
CmpUtil - Class in net.automatalib.common.util.comparison
Various methods for dealing with the comparison of objects.
CollectionsUtil - Class in net.automatalib.common.util.collection
Various methods for operating on collections.
combine(L1, L2) - Method in class net.automatalib.common.util.collection.AbstractTwoLevelIterator
 
combine(L1, L2, L3) - Method in class net.automatalib.common.util.collection.AbstractThreeLevelIterator
 
compose(Mapping<D, ? extends I>, Mapping<? super I, R>) - Static method in class net.automatalib.common.util.mapping.Mappings
Retrieves the composition of two mappings, i.e., that mapping that results from applying the Mapping.get(Object) method consecutively.
contains(Object) - Method in class net.automatalib.common.util.collection.CharRange
 
contains(Object) - Method in class net.automatalib.common.util.collection.CharStringRange
 
contains(Object) - Method in class net.automatalib.common.util.collection.IntRange
 
contains(Object) - Method in class net.automatalib.common.util.collection.PositiveIntSet
 
containsInt(int) - Method in class net.automatalib.common.util.collection.PositiveIntSet
 
create(Map<D, R>) - Static method in class net.automatalib.common.util.mapping.MapMapping
 

D

delegate() - Method in class net.automatalib.common.util.collection.UnmodifiableListIterator
 
distinctIntegers(Random, int, int) - Static method in class net.automatalib.common.util.random.RandomUtil
 
distinctIntegers(Random, int, int, int) - Static method in class net.automatalib.common.util.random.RandomUtil
Sample a specified number of distinct integers from a specified range.
doubleValue(Double) - Static method in class net.automatalib.common.util.WrapperUtil
 
doubleValue(Double, double) - Static method in class net.automatalib.common.util.WrapperUtil
 
DynamicList<T extends MutableNumericID> - Class in net.automatalib.common.util.nid
 
DynamicList() - Constructor for class net.automatalib.common.util.nid.DynamicList
 
DynamicList(List<? extends T>) - Constructor for class net.automatalib.common.util.nid.DynamicList
 

E

enquote(String) - Static method in class net.automatalib.common.util.string.StringUtil
 
enquote(String, Appendable) - Static method in class net.automatalib.common.util.string.StringUtil
 
enquoteIfNecessary(String) - Static method in class net.automatalib.common.util.string.StringUtil
 
enquoteIfNecessary(String, Appendable) - Static method in class net.automatalib.common.util.string.StringUtil
 
enquoteIfNecessary(String, Appendable, Pattern) - Static method in class net.automatalib.common.util.string.StringUtil
 
enquoteIfNecessary(String, Appendable, Pattern, Pattern) - Static method in class net.automatalib.common.util.string.StringUtil
 
enquoteIfNecessary(String, Pattern) - Static method in class net.automatalib.common.util.string.StringUtil
 
entrySet() - Method in class net.automatalib.common.util.mapping.MapMapping
Delegates to the underlying Map.
equals(Object) - Method in class net.automatalib.common.util.Pair
 
equals(Object) - Method in class net.automatalib.common.util.Triple
 
equivalent(int, int) - Method in interface net.automatalib.common.util.IntDisjointSets
Checks if two elements are in the same set.
equivalent(int, int) - Method in class net.automatalib.common.util.UnionFindRemSP
 
escapeQuotes(String) - Static method in class net.automatalib.common.util.string.StringUtil
Escapes double quotes in a string.
escapeQuotes(String, Appendable) - Static method in class net.automatalib.common.util.string.StringUtil
 
expectedElementCount() - Method in interface net.automatalib.common.util.fixpoint.WorksetAlgorithm
Provides a hint to initialize containers appropriately.
expectedElementCount() - Method in interface net.automatalib.common.util.fixpoint.WorksetMappingAlgorithm
Provides a hint to initialize containers appropriately.

F

find(int) - Method in interface net.automatalib.common.util.IntDisjointSets
Determines the representative element of the set containing x.
find(int) - Method in class net.automatalib.common.util.UnionFind
Finds the set of a given element, and compresses the path to the root node.
find(int) - Method in class net.automatalib.common.util.UnionFindRemSP
Finds the set of a given element, and compresses the path to the root node.
findConstructor(Class<T>, Class<?>...) - Static method in class net.automatalib.common.util.ReflectUtil
Tries to find a constructor that is able to accept parameters of the given types.
findMatchingMethod(Class<?>, String, Object...) - Static method in class net.automatalib.common.util.ReflectUtil
findMethod(Class<?>, String, Class<?>...) - Static method in class net.automatalib.common.util.ReflectUtil
Tries to find a method of the given name that is able to accept parameters of the given types.
findMethodRT(Class<?>, String, Class<?>, Class<?>...) - Static method in class net.automatalib.common.util.ReflectUtil
floatValue(Float) - Static method in class net.automatalib.common.util.WrapperUtil
 
floatValue(Float, float) - Static method in class net.automatalib.common.util.WrapperUtil
 
flush() - Method in class net.automatalib.common.util.io.NonClosingOutputStream
 
forRandom(Random) - Method in class net.automatalib.common.util.random.WeightedSupplier
 
fromMap(Map<D, R>) - Static method in class net.automatalib.common.util.mapping.Mappings
 
FunctionsUtil - Class in net.automatalib.common.util.function
This class provides utility methods for Java 8 Function objects (and for the corresponding primitive specializations).

G

get() - Method in class net.automatalib.common.util.random.WeightedSupplier
 
get() - Method in interface net.automatalib.common.util.ref.Ref
Retrieves the referent.
get() - Method in class net.automatalib.common.util.ref.StrongRef
 
get() - Method in class net.automatalib.common.util.ref.WeakRef
 
get(int) - Method in class net.automatalib.common.util.collection.CharRange
 
get(int) - Method in class net.automatalib.common.util.collection.CharStringRange
 
get(int) - Method in class net.automatalib.common.util.collection.IntRange
 
get(int) - Method in class net.automatalib.common.util.nid.DynamicList
 
get(D) - Method in class net.automatalib.common.util.mapping.MapMapping
 
get(D) - Method in interface net.automatalib.common.util.mapping.Mapping
Get the range object elem maps to.
get(K) - Method in class net.automatalib.common.util.mapping.ArrayMapping
 
getActiveCount() - Method in class net.automatalib.common.util.concurrent.ScalingThreadPoolExecutor
 
getCanonicalSpecVersion() - Static method in class net.automatalib.common.util.system.JVMUtil
Returns the canonized number of the currently available Java language specification version.
getFirst() - Method in class net.automatalib.common.util.Pair
 
getFirst() - Method in class net.automatalib.common.util.Triple
 
getId() - Method in class net.automatalib.common.util.nid.AbstractMutableNumericID
 
getId() - Method in interface net.automatalib.common.util.nid.NumericID
 
getIdentifierPattern() - Static method in class net.automatalib.common.util.string.StringUtil
 
getInstance() - Static method in class net.automatalib.common.util.lib.LibLoader
 
getPriority() - Method in class net.automatalib.common.util.setting.AbstractSystemPropertiesSource
 
getPriority() - Method in class net.automatalib.common.util.setting.LocalFileSource
 
getPriority() - Method in interface net.automatalib.common.util.setting.SettingsSource
 
getSecond() - Method in class net.automatalib.common.util.Pair
 
getSecond() - Method in class net.automatalib.common.util.Triple
 
getThird() - Method in class net.automatalib.common.util.Triple
 

H

hashCode() - Method in class net.automatalib.common.util.Pair
 
hashCode() - Method in class net.automatalib.common.util.Triple
 
hasNext() - Method in class net.automatalib.common.util.collection.AbstractThreeLevelIterator
 
hasNext() - Method in class net.automatalib.common.util.collection.AbstractTwoLevelIterator
 
hasNext() - Method in class net.automatalib.common.util.collection.BitSetIterator
 
hasNext() - Method in class net.automatalib.common.util.collection.CharRangeIterator
 
hasNext() - Method in class net.automatalib.common.util.collection.CharStringRangeIterator
 
hasNext() - Method in class net.automatalib.common.util.collection.IntRangeIterator
 
hasPrevious() - Method in class net.automatalib.common.util.collection.CharRangeIterator
 
hasPrevious() - Method in class net.automatalib.common.util.collection.CharStringRangeIterator
 
hasPrevious() - Method in class net.automatalib.common.util.collection.IntRangeIterator
 
Holder<T> - Class in net.automatalib.common.util
 
Holder() - Constructor for class net.automatalib.common.util.Holder
 

I

id - Variable in class net.automatalib.common.util.nid.AbstractMutableNumericID
 
idChanged(K, int, int) - Method in class net.automatalib.common.util.mapping.ArrayMapping
 
idChanged(T, int, int) - Method in interface net.automatalib.common.util.nid.IDChangeListener
 
IDChangeListener<T extends NumericID> - Interface in net.automatalib.common.util.nid
 
IDChangeNotifier<T extends NumericID> - Class in net.automatalib.common.util.nid
 
IDChangeNotifier() - Constructor for class net.automatalib.common.util.nid.IDChangeNotifier
 
identity() - Static method in class net.automatalib.common.util.mapping.Mappings
Retrieves the identity mapping, which maps each domain value to itself.
idGet(Mapping<D, D>, D) - Static method in class net.automatalib.common.util.mapping.Mappings
 
indexOf(char) - Method in class net.automatalib.common.util.collection.CharRange
 
indexOf(int) - Method in class net.automatalib.common.util.collection.IntRange
 
indexOf(Object) - Method in class net.automatalib.common.util.collection.CharRange
 
indexOf(Object) - Method in class net.automatalib.common.util.collection.CharStringRange
 
indexOf(Object) - Method in class net.automatalib.common.util.collection.IntRange
 
indexOf(String) - Method in class net.automatalib.common.util.collection.CharStringRange
 
indexToString() - Static method in class net.automatalib.common.util.mapping.Mappings
 
indexToString(@org.checkerframework.checker.index.qual.NonNegative long) - Static method in class net.automatalib.common.util.mapping.StringIndexMapping
 
initialize() - Method in interface net.automatalib.common.util.fixpoint.WorksetAlgorithm
Provide the initial elements that should be processed by update.
initialize(Map<T, E>) - Method in interface net.automatalib.common.util.fixpoint.WorksetMappingAlgorithm
Provide the initial elements that should be processed by update.
IntDisjointSets - Interface in net.automatalib.common.util
Interface for disjoint-set forest implementations that operate on a universe of contiguous integers.
intGet(int) - Method in class net.automatalib.common.util.collection.IntRange
 
intRange(int, int) - Static method in class net.automatalib.common.util.collection.CollectionsUtil
 
intRange(int, int, int) - Static method in class net.automatalib.common.util.collection.CollectionsUtil
 
IntRange - Class in net.automatalib.common.util.collection
 
IntRange(int, int) - Constructor for class net.automatalib.common.util.collection.IntRange
 
IntRange(int, int, int) - Constructor for class net.automatalib.common.util.collection.IntRange
 
IntRangeIterator - Class in net.automatalib.common.util.collection
 
IntRangeIterator(int, int, int) - Constructor for class net.automatalib.common.util.collection.IntRangeIterator
 
IntRangeIterator(int, int, int, int) - Constructor for class net.automatalib.common.util.collection.IntRangeIterator
 
intValue(Integer) - Static method in class net.automatalib.common.util.WrapperUtil
 
intValue(Integer, int) - Static method in class net.automatalib.common.util.WrapperUtil
 
invokeProcess(String[]) - Static method in class net.automatalib.common.util.process.ProcessUtil
Runs the given set of command line arguments as a system process and returns the exit value of the spawned process.
invokeProcess(String[], Reader) - Static method in class net.automatalib.common.util.process.ProcessUtil
Runs the given set of command line arguments as a system process and returns the exit value of the spawned process.
invokeProcess(String[], Reader, Consumer<String>) - Static method in class net.automatalib.common.util.process.ProcessUtil
Runs the given set of command line arguments as a system process and returns the exit value of the spawned process.
invokeProcess(String[], Consumer<String>) - Static method in class net.automatalib.common.util.process.ProcessUtil
Runs the given set of command line arguments as a system process and returns the exit value of the spawned process.
invokeProcess(List<String>) - Static method in class net.automatalib.common.util.process.ProcessUtil
Runs the given set of command line arguments as a system process and returns the exit value of the spawned process.
invokeProcess(List<String>, Reader) - Static method in class net.automatalib.common.util.process.ProcessUtil
Runs the given set of command line arguments as a system process and returns the exit value of the spawned process.
invokeProcess(List<String>, Reader, Consumer<String>) - Static method in class net.automatalib.common.util.process.ProcessUtil
Runs the given set of command line arguments as a system process and returns the exit value of the spawned process.
invokeProcess(List<String>, Consumer<String>) - Static method in class net.automatalib.common.util.process.ProcessUtil
Runs the given set of command line arguments as a system process and returns the exit value of the spawned process.
IOUtil - Class in net.automatalib.common.util
Utility methods for operating with java.io.* classes.
isEmpty() - Method in class net.automatalib.common.util.collection.PositiveIntSet
 
isEmpty() - Method in class net.automatalib.common.util.nid.DynamicList
 
iterator() - Method in class net.automatalib.common.util.collection.CharRange
 
iterator() - Method in class net.automatalib.common.util.collection.CharStringRange
 
iterator() - Method in class net.automatalib.common.util.collection.IntRange
 
iterator() - Method in class net.automatalib.common.util.collection.PositiveIntSet
 
iterator() - Method in class net.automatalib.common.util.collection.ReusableIterator
 
iterator() - Method in class net.automatalib.common.util.nid.DynamicList
 

J

JVMUtil - Class in net.automatalib.common.util.system
Utility class for Java/JVM specific utilities.

L

l2Iterator(L1) - Method in class net.automatalib.common.util.collection.AbstractThreeLevelIterator
 
l2Iterator(L1) - Method in class net.automatalib.common.util.collection.AbstractTwoLevelIterator
 
l3Iterator(L1, L2) - Method in class net.automatalib.common.util.collection.AbstractThreeLevelIterator
 
lastIndexOf(Object) - Method in class net.automatalib.common.util.collection.CharRange
 
lastIndexOf(Object) - Method in class net.automatalib.common.util.collection.CharStringRange
 
lastIndexOf(Object) - Method in class net.automatalib.common.util.collection.IntRange
 
lexComparator() - Static method in class net.automatalib.common.util.comparison.CmpUtil
Retrieves a lexicographical comparator for the given type, which has to be an Iterable of Comparable types.
lexComparator(Comparator<U>) - Static method in class net.automatalib.common.util.comparison.CmpUtil
Retrieves a lexicographical comparator for the given type.
lexCompare(int[], int[]) - Static method in class net.automatalib.common.util.comparison.CmpUtil
 
lexCompare(Iterable<? extends U>, Iterable<? extends U>) - Static method in class net.automatalib.common.util.comparison.CmpUtil
Lexicographically compares two Iterables, whose element types are comparable.
lexCompare(Iterable<? extends U>, Iterable<? extends U>, Comparator<? super U>) - Static method in class net.automatalib.common.util.comparison.CmpUtil
Lexicographically compares two Iterables.
LibLoader - Class in net.automatalib.common.util.lib
Utility (singleton) class to manage loading of native libraries.
link(int, int) - Method in interface net.automatalib.common.util.IntDisjointSets
Links (unites) two sets, identified by their representatives.
link(int, int) - Method in class net.automatalib.common.util.UnionFind
Unites two given sets.
link(int, int) - Method in class net.automatalib.common.util.UnionFindRemSP
Unites two given sets.
listIterator() - Method in class net.automatalib.common.util.collection.CharRange
 
listIterator() - Method in class net.automatalib.common.util.collection.CharStringRange
 
listIterator() - Method in class net.automatalib.common.util.collection.IntRange
 
listIterator(int) - Method in class net.automatalib.common.util.collection.CharRange
 
listIterator(int) - Method in class net.automatalib.common.util.collection.CharStringRange
 
listIterator(int) - Method in class net.automatalib.common.util.collection.IntRange
 
loadLibrary(Class<?>, String) - Method in class net.automatalib.common.util.lib.LibLoader
Loads a native library.
loadLibrary(Class<?>, String, LoadPolicy) - Method in class net.automatalib.common.util.lib.LibLoader
Loads a native library with the given load policy.
LoadLibraryException - Exception in net.automatalib.common.util.lib
Unified exception to signal that loading of a native library has failed.
LoadLibraryException(String) - Constructor for exception net.automatalib.common.util.lib.LoadLibraryException
 
LoadLibraryException(String, Throwable) - Constructor for exception net.automatalib.common.util.lib.LoadLibraryException
 
LoadLibraryException(Throwable) - Constructor for exception net.automatalib.common.util.lib.LoadLibraryException
 
LoadPolicy - Enum in net.automatalib.common.util.lib
Specifies in which order a library to be loaded is searched for.
loadSettings(Properties) - Method in class net.automatalib.common.util.setting.AbstractClassPathFileSource
 
loadSettings(Properties) - Method in class net.automatalib.common.util.setting.AbstractSystemPropertiesSource
 
loadSettings(Properties) - Method in class net.automatalib.common.util.setting.LocalFileSource
 
loadSettings(Properties) - Method in interface net.automatalib.common.util.setting.SettingsSource
 
LocalFileSource - Class in net.automatalib.common.util.setting
 
LocalFileSource(File) - Constructor for class net.automatalib.common.util.setting.LocalFileSource
 
LocalFileSource(String) - Constructor for class net.automatalib.common.util.setting.LocalFileSource
 
longValue(Long) - Static method in class net.automatalib.common.util.WrapperUtil
 
longValue(Long, long) - Static method in class net.automatalib.common.util.WrapperUtil
 

M

map(WorksetMappingAlgorithm<T, E, R>) - Static method in class net.automatalib.common.util.fixpoint.Worksets
 
MapMapping<D,​R> - Class in net.automatalib.common.util.mapping
Class that wraps a Mapping around a Map.
MapMapping() - Constructor for class net.automatalib.common.util.mapping.MapMapping
Constructor.
MapMapping(Map<D, R>) - Constructor for class net.automatalib.common.util.mapping.MapMapping
Constructor.
MapMapping(Map<D, R>, boolean) - Constructor for class net.automatalib.common.util.mapping.MapMapping
Constructor.
Mapping<D,​R> - Interface in net.automatalib.common.util.mapping
An interface for mapping objects of a certain domain type to objects of a certain range type.
Mappings - Class in net.automatalib.common.util.mapping
Collection of various methods dealing with Mappings.
mark(int) - Method in class net.automatalib.common.util.io.NonClosingInputStream
 
markSupported() - Method in class net.automatalib.common.util.io.NonClosingInputStream
 
MutableMapping<D,​R> - Interface in net.automatalib.common.util.mapping
Mutable version of a Mapping, which supports setting keys for given values.
MutableNumericID - Interface in net.automatalib.common.util.nid
 

N

net.automatalib.common.util - package net.automatalib.common.util
This package (including sub-packages) contains basic utility classes to ease everyday programming.
net.automatalib.common.util.array - package net.automatalib.common.util.array
 
net.automatalib.common.util.collection - package net.automatalib.common.util.collection
 
net.automatalib.common.util.comparison - package net.automatalib.common.util.comparison
 
net.automatalib.common.util.concurrent - package net.automatalib.common.util.concurrent
 
net.automatalib.common.util.fixpoint - package net.automatalib.common.util.fixpoint
 
net.automatalib.common.util.function - package net.automatalib.common.util.function
 
net.automatalib.common.util.io - package net.automatalib.common.util.io
 
net.automatalib.common.util.lib - package net.automatalib.common.util.lib
 
net.automatalib.common.util.mapping - package net.automatalib.common.util.mapping
 
net.automatalib.common.util.nid - package net.automatalib.common.util.nid
 
net.automatalib.common.util.process - package net.automatalib.common.util.process
 
net.automatalib.common.util.random - package net.automatalib.common.util.random
 
net.automatalib.common.util.ref - package net.automatalib.common.util.ref
 
net.automatalib.common.util.setting - package net.automatalib.common.util.setting
 
net.automatalib.common.util.string - package net.automatalib.common.util.string
 
net.automatalib.common.util.system - package net.automatalib.common.util.system
 
next() - Method in class net.automatalib.common.util.collection.AbstractThreeLevelIterator
 
next() - Method in class net.automatalib.common.util.collection.AbstractTwoLevelIterator
 
next() - Method in class net.automatalib.common.util.collection.CharRangeIterator
 
next() - Method in class net.automatalib.common.util.collection.CharStringRangeIterator
 
next() - Method in class net.automatalib.common.util.collection.IntRangeIterator
 
nextChar() - Method in class net.automatalib.common.util.collection.CharRangeIterator
 
nextIndex() - Method in class net.automatalib.common.util.collection.CharRangeIterator
 
nextIndex() - Method in class net.automatalib.common.util.collection.CharStringRangeIterator
 
nextIndex() - Method in class net.automatalib.common.util.collection.IntRangeIterator
 
nextInt() - Method in class net.automatalib.common.util.collection.BitSetIterator
 
nextInt() - Method in class net.automatalib.common.util.collection.IntRangeIterator
 
NonClosingInputStream - Class in net.automatalib.common.util.io
A delegating input stream that does nothing when being closed.
NonClosingInputStream(InputStream) - Constructor for class net.automatalib.common.util.io.NonClosingInputStream
 
NonClosingOutputStream - Class in net.automatalib.common.util.io
A delegating output stream that does not close but flush the delegate output stream.
NonClosingOutputStream(OutputStream) - Constructor for class net.automatalib.common.util.io.NonClosingOutputStream
 
notifyListeners(T, int, int) - Method in class net.automatalib.common.util.nid.IDChangeNotifier
 
nullGet(Mapping<? super D, ? extends R>, D) - Static method in class net.automatalib.common.util.mapping.Mappings
 
nullMapping() - Static method in class net.automatalib.common.util.mapping.Mappings
Retrieves the null mapping, which maps each domain value to null.
NumericID - Interface in net.automatalib.common.util.nid
 

O

of(T1, T2) - Static method in class net.automatalib.common.util.Pair
Convenience function for creating a pair, allowing the user to omit the type parameters.
of(T1, T2, T3) - Static method in class net.automatalib.common.util.Triple
Convenience function for creating a triple, allowing the user to omit the type parameters.
OS_ARCH - Static variable in class net.automatalib.common.util.lib.PlatformProperties
 
OS_NAME - Static variable in class net.automatalib.common.util.lib.PlatformProperties
 
OS_VERSION - Static variable in class net.automatalib.common.util.lib.PlatformProperties
 

P

Pair<T1,​T2> - Class in net.automatalib.common.util
Immutable pair class.
PlatformProperties - Class in net.automatalib.common.util.lib
 
PositiveIntSet - Class in net.automatalib.common.util.collection
A Set for positive ints that internally stores its elements in a BitSet.
PositiveIntSet() - Constructor for class net.automatalib.common.util.collection.PositiveIntSet
Default constructor for a mutable PositiveIntSet.
PositiveIntSet(BitSet) - Constructor for class net.automatalib.common.util.collection.PositiveIntSet
Default constructor for an immutable view of a given BitSet.
PositiveIntSet(BitSet, boolean) - Constructor for class net.automatalib.common.util.collection.PositiveIntSet
Constructor for a(n) (immutable) view of a given PositiveIntSet.
PREFER_SHIPPED - net.automatalib.common.util.lib.LoadPolicy
First try to load a compatible version of the requested library shipped with the loading class.
PREFER_SYSTEM - net.automatalib.common.util.lib.LoadPolicy
First try to load the system version of the requested library.
previous() - Method in class net.automatalib.common.util.collection.CharRangeIterator
 
previous() - Method in class net.automatalib.common.util.collection.CharStringRangeIterator
 
previous() - Method in class net.automatalib.common.util.collection.IntRangeIterator
 
previousChar() - Method in class net.automatalib.common.util.collection.CharRangeIterator
 
previousIndex() - Method in class net.automatalib.common.util.collection.CharRangeIterator
 
previousIndex() - Method in class net.automatalib.common.util.collection.CharStringRangeIterator
 
previousIndex() - Method in class net.automatalib.common.util.collection.IntRangeIterator
 
previousInt() - Method in class net.automatalib.common.util.collection.IntRangeIterator
 
print(Appendable) - Method in class net.automatalib.common.util.Pair
 
print(Appendable) - Method in interface net.automatalib.common.util.string.Printable
Outputs the current object.
print(Appendable) - Method in class net.automatalib.common.util.Triple
 
Printable - Interface in net.automatalib.common.util.string
Interface that allows outputting to an Appendable (e.g., a StringBuilder) instead of simply using Object.toString().
process(WorksetAlgorithm<T, R>) - Static method in class net.automatalib.common.util.fixpoint.Worksets
 
ProcessUtil - Class in net.automatalib.common.util.process
Utility class for invoking system processes.
put(D, R) - Method in class net.automatalib.common.util.mapping.MapMapping
Delegates to the underlying Map.
put(D, R) - Method in interface net.automatalib.common.util.mapping.MutableMapping
 
put(K, V) - Method in class net.automatalib.common.util.mapping.ArrayMapping
 

R

randomAccessList(Collection<? extends T>) - Static method in class net.automatalib.common.util.collection.CollectionsUtil
 
RandomUtil - Class in net.automatalib.common.util.random
 
read() - Method in class net.automatalib.common.util.io.NonClosingInputStream
 
read() - Method in class net.automatalib.common.util.io.UnclosableInputStream
 
read(byte[]) - Method in class net.automatalib.common.util.io.NonClosingInputStream
 
read(byte[], int, int) - Method in class net.automatalib.common.util.io.NonClosingInputStream
 
readSettings(Class<S>) - Static method in interface net.automatalib.common.util.setting.SettingsSource
 
readSettings(Class<S>, Properties) - Static method in interface net.automatalib.common.util.setting.SettingsSource
 
Ref<T> - Interface in net.automatalib.common.util.ref
An abstraction for (weak or strong) references.
ReflectUtil - Class in net.automatalib.common.util
Utility methods for using Java reflection.
Refs - Class in net.automatalib.common.util.ref
Utility functions for dealing with references.
remove() - Method in class net.automatalib.common.util.collection.AbstractThreeLevelIterator
 
remove() - Method in class net.automatalib.common.util.collection.AbstractTwoLevelIterator
 
remove() - Method in class net.automatalib.common.util.collection.BitSetIterator
 
remove() - Method in class net.automatalib.common.util.collection.CharRangeIterator
 
remove() - Method in class net.automatalib.common.util.collection.CharStringRangeIterator
 
remove() - Method in class net.automatalib.common.util.collection.IntRangeIterator
 
remove() - Method in class net.automatalib.common.util.collection.UnmodifiableListIterator
 
remove(int, IDChangeNotifier<T>) - Method in class net.automatalib.common.util.nid.DynamicList
 
remove(Object) - Method in class net.automatalib.common.util.collection.PositiveIntSet
 
remove(Object) - Method in class net.automatalib.common.util.nid.DynamicList
 
remove(Object, IDChangeNotifier<T>) - Method in class net.automatalib.common.util.nid.DynamicList
 
removeInt(int) - Method in class net.automatalib.common.util.collection.PositiveIntSet
 
removeListener(IDChangeListener<T>) - Method in class net.automatalib.common.util.nid.IDChangeNotifier
 
reset() - Method in class net.automatalib.common.util.io.NonClosingInputStream
 
result() - Method in interface net.automatalib.common.util.fixpoint.WorksetAlgorithm
Provides the result of this algorithm's internal action.
result() - Method in interface net.automatalib.common.util.fixpoint.WorksetMappingAlgorithm
Provides the result of this algorithm's internal action.
ReusableIterator<T> - Class in net.automatalib.common.util.collection
A utility class that allows to reuse an Iterator.
ReusableIterator(Iterator<T>) - Constructor for class net.automatalib.common.util.collection.ReusableIterator
Default constructor.
ReusableIterator(Iterator<T>, List<T>) - Constructor for class net.automatalib.common.util.collection.ReusableIterator
Constructor that allows to explicitly specify that cache to be used.

S

safeDefault(Function<T, R>) - Static method in class net.automatalib.common.util.function.FunctionsUtil
Returns a default function if the argument is null.
safeDefault(IntFunction<R>) - Static method in class net.automatalib.common.util.function.FunctionsUtil
Returns a default function if the argument is null.
safeDefault(BiIntFunction<R>) - Static method in class net.automatalib.common.util.function.FunctionsUtil
Returns a default function if the argument is null.
safeGet(int) - Method in class net.automatalib.common.util.nid.DynamicList
 
safeGet(Mapping<? super D, ? extends R>, D, R) - Static method in class net.automatalib.common.util.mapping.Mappings
Safely retrieves a value from a mapping.
safeToFalse(Predicate<T>) - Static method in class net.automatalib.common.util.function.FunctionsUtil
 
safeToTrue(Predicate<T>) - Static method in class net.automatalib.common.util.function.FunctionsUtil
 
safeWrite(int, ArrayWritable<U>, int, T[], int) - Static method in class net.automatalib.common.util.array.AWUtil
 
safeWrite(int, ArrayWritable<U>, T[]) - Static method in class net.automatalib.common.util.array.AWUtil
Writes a given maximum amount of data items from a container to an array.
safeWrite(ArrayWritable<U>, T[]) - Static method in class net.automatalib.common.util.array.AWUtil
Writes the complete container data to an array.
safeWrite(ArrayWritable<U>, T[], int) - Static method in class net.automatalib.common.util.array.AWUtil
 
sample(Random, List<? extends T>, int) - Static method in class net.automatalib.common.util.random.RandomUtil
 
sampleUnique(Random, List<? extends T>, int) - Static method in class net.automatalib.common.util.random.RandomUtil
Sample a specified number of elements from specified list.
ScalingThreadPoolExecutor - Class in net.automatalib.common.util.concurrent
A ThreadPoolExecutor that internally uses a ScalingThreadPoolExecutor.ScalingLinkedBlockingQueue to manage scheduled tasks.
ScalingThreadPoolExecutor(int, int, long, TimeUnit) - Constructor for class net.automatalib.common.util.concurrent.ScalingThreadPoolExecutor
 
set(Character) - Method in class net.automatalib.common.util.collection.CharRangeIterator
 
set(Integer) - Method in class net.automatalib.common.util.collection.IntRangeIterator
 
set(String) - Method in class net.automatalib.common.util.collection.CharStringRangeIterator
 
set(T) - Method in class net.automatalib.common.util.collection.UnmodifiableListIterator
 
setId(int) - Method in class net.automatalib.common.util.nid.AbstractMutableNumericID
 
setId(int) - Method in interface net.automatalib.common.util.nid.MutableNumericID
 
SettingsSource - Interface in net.automatalib.common.util.setting
 
SHIPPED_ONLY - net.automatalib.common.util.lib.LoadPolicy
Only try to load a compatible version of the requested library shipped with the loading class.
shortValue(Short, short) - Static method in class net.automatalib.common.util.WrapperUtil
 
size() - Method in class net.automatalib.common.util.collection.CharRange
 
size() - Method in class net.automatalib.common.util.collection.CharStringRange
 
size() - Method in class net.automatalib.common.util.collection.IntRange
 
size() - Method in class net.automatalib.common.util.collection.PositiveIntSet
 
size() - Method in interface net.automatalib.common.util.IntDisjointSets
Returns the size of the universe.
size() - Method in class net.automatalib.common.util.nid.DynamicList
 
size() - Method in class net.automatalib.common.util.UnionFind
 
size() - Method in class net.automatalib.common.util.UnionFindRemSP
 
skip(long) - Method in class net.automatalib.common.util.io.NonClosingInputStream
 
StringIndexMapping - Class in net.automatalib.common.util.mapping
Class for transforming integer index values into string values (using latin characters, therefore effectively realizing a radix-26 representation of numbers).
stringToIndex() - Static method in class net.automatalib.common.util.mapping.Mappings
 
stringToIndex(String) - Static method in class net.automatalib.common.util.mapping.StringIndexMapping
 
StringUtil - Class in net.automatalib.common.util.string
Miscellaneous utility functions for Strings.
strong(T) - Static method in class net.automatalib.common.util.ref.Refs
Creates a strong reference to the given referent.
StrongRef<T> - Class in net.automatalib.common.util.ref
A strong reference wrapper, complying to the Ref interface.
StrongRef(T) - Constructor for class net.automatalib.common.util.ref.StrongRef
Constructor.
swap(int, int) - Method in class net.automatalib.common.util.nid.DynamicList
 
SYSTEM_ONLY - net.automatalib.common.util.lib.LoadPolicy
Only try to load the system version of the requested library.

T

toArray(ArrayWritable<?>) - Static method in class net.automatalib.common.util.array.AWUtil
 
toArray(ArrayWritable<?>, T[]) - Static method in class net.automatalib.common.util.array.AWUtil
 
toString() - Method in class net.automatalib.common.util.string.AbstractPrintable
 
toString(Printable) - Static method in interface net.automatalib.common.util.string.Printable
 
toStringMapping() - Static method in class net.automatalib.common.util.mapping.Mappings
Returns a mapping that maps objects to their String representation, as obtained by String.valueOf(Object).
Triple<T1,​T2,​T3> - Class in net.automatalib.common.util
Immutable triple class.

U

UnclosableInputStream - Class in net.automatalib.common.util.io
A delegating input stream that throws an exception when closed.
UnclosableInputStream(InputStream) - Constructor for class net.automatalib.common.util.io.UnclosableInputStream
 
UnclosableOutputStream - Class in net.automatalib.common.util.io
A delegating output stream that throws an exception when closed.
UnclosableOutputStream(OutputStream) - Constructor for class net.automatalib.common.util.io.UnclosableOutputStream
 
unescapeQuotes(String) - Static method in class net.automatalib.common.util.string.StringUtil
Unescapes escaped double quotes in a string, i.e. replaces \" by " and \\ by \.
unescapeQuotes(String, Appendable) - Static method in class net.automatalib.common.util.string.StringUtil
 
union(int, int) - Method in interface net.automatalib.common.util.IntDisjointSets
Unites the sets containing the respective elements.
union(int, int) - Method in class net.automatalib.common.util.UnionFindRemSP
Unites the sets containing the two given elements.
UnionFind - Class in net.automatalib.common.util
The well-known disjoint-set forest data structure for dealing with partitions on a fixed-range integer domain.
UnionFind(int) - Constructor for class net.automatalib.common.util.UnionFind
Initializes the disjoint-set data structure.
UnionFindRemSP - Class in net.automatalib.common.util
Implementation of a disjoint set (union-find) data structure for integers, based on Rem's algorithm, as described in the paper Experiments on Union-Find Algorithms for the Disjoint-Set Data Structure (M.
UnionFindRemSP(int) - Constructor for class net.automatalib.common.util.UnionFindRemSP
Initializes the disjoint-set data structure.
UnmodifiableListIterator<T> - Class in net.automatalib.common.util.collection
Wraps a given ListIterator so that any mutating operations throw an UnsupportedOperationException.
UnmodifiableListIterator(ListIterator<? extends T>) - Constructor for class net.automatalib.common.util.collection.UnmodifiableListIterator
 
unquote(String) - Static method in class net.automatalib.common.util.string.StringUtil
 
unquote(String, Appendable) - Static method in class net.automatalib.common.util.string.StringUtil
 
upcast() - Static method in class net.automatalib.common.util.mapping.Mappings
Returns a mapping that maps objects to a supertype representation.
update(Map<T, E>, T) - Method in interface net.automatalib.common.util.fixpoint.WorksetMappingAlgorithm
Process the given element and perform its corresponding actions.
update(T) - Method in interface net.automatalib.common.util.fixpoint.WorksetAlgorithm
Process the given element and perform its corresponding actions.

V

value - Variable in class net.automatalib.common.util.Holder
 
valueOf(String) - Static method in enum net.automatalib.common.util.lib.LoadPolicy
Returns the enum constant of this type with the specified name.
values() - Static method in enum net.automatalib.common.util.lib.LoadPolicy
Returns an array containing the constants of this enum type, in the order they are declared.

W

weak(T) - Static method in class net.automatalib.common.util.ref.Refs
Creates a weak reference to the given referent.
WeakRef<T> - Class in net.automatalib.common.util.ref
A weak reference wrapper, complying to the Ref interface.
WeakRef(T) - Constructor for class net.automatalib.common.util.ref.WeakRef
Constructor.
WeightedSupplier<T> - Class in net.automatalib.common.util.random
This class implements a Supplier that randomly delegates to one of several (sub-)suppliers.
WeightedSupplier() - Constructor for class net.automatalib.common.util.random.WeightedSupplier
 
WorksetAlgorithm<T,​R> - Interface in net.automatalib.common.util.fixpoint
 
WorksetMappingAlgorithm<T,​E,​R> - Interface in net.automatalib.common.util.fixpoint
 
Worksets - Class in net.automatalib.common.util.fixpoint
 
WrapperUtil - Class in net.automatalib.common.util
 
write(byte[]) - Method in class net.automatalib.common.util.io.NonClosingOutputStream
 
write(byte[], int, int) - Method in class net.automatalib.common.util.io.NonClosingOutputStream
 
write(int) - Method in class net.automatalib.common.util.io.NonClosingOutputStream
 
write(int) - Method in class net.automatalib.common.util.io.UnclosableOutputStream
 
writeToArray(int, Object[], int, int) - Method in class net.automatalib.common.util.collection.CharRange
 
writeToArray(int, Object[], int, int) - Method in class net.automatalib.common.util.collection.CharStringRange
 
writeToArray(int, Object[], int, int) - Method in class net.automatalib.common.util.collection.IntRange
 
writeToArray(int, Object[], int, int) - Method in class net.automatalib.common.util.nid.DynamicList
 
A B C D E F G H I J L M N O P R S T U V W 
All Classes All Packages