A B C D E F G H I J K L M N O P R S T U V W
All Classes All Packages
All Classes All Packages
All Classes All Packages
A
- add(byte[], byte) - Static method in class dev.brachtendorf.ArrayUtil
-
Add the supplied argument to every field in the array
- add(char[], char) - Static method in class dev.brachtendorf.ArrayUtil
-
Add the supplied argument to every field in the array
- add(double[], double) - Static method in class dev.brachtendorf.ArrayUtil
-
Add the supplied argument to every field in the array
- add(float[], float) - Static method in class dev.brachtendorf.ArrayUtil
-
Add the supplied argument to every field in the array
- add(int[], int) - Static method in class dev.brachtendorf.ArrayUtil
-
Add the supplied argument to every field in the array
- add(long[], long) - Static method in class dev.brachtendorf.ArrayUtil
-
Add the supplied argument to every field in the array
- add(short[], short) - Static method in class dev.brachtendorf.ArrayUtil
-
Add the supplied argument to every field in the array
- add(E) - Method in class dev.brachtendorf.datastructures.CircularQueue
-
Adds the given element to this queue.
- add(K) - Method in class dev.brachtendorf.datastructures.CountHashCollection
- addAll(Collection<? extends K>) - Method in class dev.brachtendorf.datastructures.CountHashCollection
- allNotNull(T[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Check if all values in the array are not null
- allNull(T[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Check if all values in the array are null
- allNull(T[]) - Static method in class dev.brachtendorf.Require
-
Checks if the supplied array does only contain null values and throws a IllegalArgumentException if it does not..
- allNull(T[], String) - Static method in class dev.brachtendorf.Require
-
Checks if the supplied array does only contain null values and throws a IllegalArgumentException if it does not..
- alpha - Variable in class dev.brachtendorf.graphics.FastPixelImpl
-
True if the underlying image has an alpha component
- alphaReplacementThreshold - Variable in class dev.brachtendorf.graphics.FastPixelImpl
- argbToComponents(int) - Static method in class dev.brachtendorf.graphics.ColorUtil
-
Convert an argb value to it's individual components in range of 0 - 255
- argbToFXColor(int) - Static method in class dev.brachtendorf.graphics.ColorUtil
-
Convert an argb value (alpha 24,red 16, green 8, blue 0) into a java fx color.
- ArrayUtil - Class in dev.brachtendorf
- ArrayUtil() - Constructor for class dev.brachtendorf.ArrayUtil
- average(byte[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculates the average value of the array.
- average(byte[][]) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculates the average value of the 2d array.
- average(char[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculates the average value of the array.
- average(char[][]) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculates the average value of the 2d array.
- average(double[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculates the average value of the array.
- average(double[][]) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculates the average value of the 2d array.
- average(float[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculates the average value of the array.
- average(float[][]) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculates the average value of the 2d array.
- average(int[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculates the average value of the array.
- average(int[][]) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculates the average value of the 2d array.
- average(long[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculates the average value of the array.
- average(long[][]) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculates the average value of the 2d array.
- average(short[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculates the average value of the array.
- average(short[][]) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculates the average value of the 2d array.
- awtToFxColor(Color) - Static method in class dev.brachtendorf.graphics.ColorUtil
-
Convert a Java AWT color to it's JavaFX sibling
B
- booleanValue() - Method in class dev.brachtendorf.mutable.MutableBoolean
- byteValue() - Method in class dev.brachtendorf.mutable.MutableByte
C
- CB_BLUE - Static variable in class dev.brachtendorf.graphics.ColorUtil
- CB_GREEN - Static variable in class dev.brachtendorf.graphics.ColorUtil
- CB_RED - Static variable in class dev.brachtendorf.graphics.ColorUtil
- centerText(String, String, int) - Static method in class dev.brachtendorf.StringUtil
-
If the text can not be centered due to (length - textLength)%2 != 0 the string will be center left alligned with 1 padding string appended at the end of the string for consistent length.
- charsNeeded(Number) - Static method in class dev.brachtendorf.StringUtil
-
Calculate the number of characters needed to present the integer part of a number +1 if the number is negative.
- CircularHashset - Class in dev.brachtendorf.datastructures
- CircularLinkedHashMap<K,V> - Class in dev.brachtendorf.datastructures
-
A linked hashmap only keeping the newest n entries.
- CircularLinkedHashMap(int) - Constructor for class dev.brachtendorf.datastructures.CircularLinkedHashMap
-
Constructs an empty insertion-ordered
CircularLinkedHashMap - CircularLinkedHashMap(int, boolean) - Constructor for class dev.brachtendorf.datastructures.CircularLinkedHashMap
-
Constructs an empty
CircularLinkedHashMapinstance - CircularLinkedHashMap(Map<? extends K, ? extends V>) - Constructor for class dev.brachtendorf.datastructures.CircularLinkedHashMap
-
Constructs an insertion-ordered
CircularLinkedHashMapinstance with the same mappings as the specified map. - CircularQueue<E> - Class in dev.brachtendorf.datastructures
-
Apache commons CircularFifoQueue without the entire apache dependency CircularFifoQueue is a first-in first-out queue with a fixed size that replaces its oldest element if full.
- CircularQueue() - Constructor for class dev.brachtendorf.datastructures.CircularQueue
-
Constructor that creates a queue with the default size of 32.
- CircularQueue(int) - Constructor for class dev.brachtendorf.datastructures.CircularQueue
-
Constructor that creates a queue with the specified size.
- CircularQueue(Collection<? extends E>) - Constructor for class dev.brachtendorf.datastructures.CircularQueue
-
Constructor that creates a queue from the specified collection.
- clampNumber(T, T, T) - Static method in class dev.brachtendorf.MathUtil
-
Clamp a number between its lower and upper bound.
- clear() - Method in class dev.brachtendorf.datastructures.CircularQueue
-
Clears this queue.
- clear() - Method in class dev.brachtendorf.datastructures.CountHashCollection
- close() - Method in interface dev.brachtendorf.PlainAutoCloseable
- cluster(double[][]) - Method in interface dev.brachtendorf.clustering.ClusterAlgorithm
- cluster(double[][]) - Method in class dev.brachtendorf.clustering.DBScan
- cluster(double[][]) - Method in class dev.brachtendorf.clustering.KMeans
- ClusterAlgorithm - Interface in dev.brachtendorf.clustering
- clusterIndex - Variable in class dev.brachtendorf.clustering.ClusterResult
-
Keep track to which cluster a certain points belongs
- ClusterResult - Class in dev.brachtendorf.clustering
- ClusterResult(int[], double[][]) - Constructor for class dev.brachtendorf.clustering.ClusterResult
- clusters - Variable in class dev.brachtendorf.clustering.ClusterResult
- collectSocket(Socket) - Static method in class dev.brachtendorf.NetworkUtil
-
Read all the content available to be read by the socket and return the content as a String.
- collectSocket(Socket, int) - Static method in class dev.brachtendorf.NetworkUtil
-
Read all the content available to be read by the socket and return the content as a String.
- collectSocketAndClose(Socket) - Static method in class dev.brachtendorf.NetworkUtil
-
Read all the content available to be read by the socket and return the content as a String.
- ColorPalette() - Constructor for class dev.brachtendorf.graphics.ColorUtil.ColorPalette
- ColorUtil - Class in dev.brachtendorf.graphics
- ColorUtil() - Constructor for class dev.brachtendorf.graphics.ColorUtil
- ColorUtil.ColorPalette - Class in dev.brachtendorf.graphics
- compareTo(MutableBoolean) - Method in class dev.brachtendorf.mutable.MutableBoolean
- compareTo(MutableByte) - Method in class dev.brachtendorf.mutable.MutableByte
- compareTo(MutableDouble) - Method in class dev.brachtendorf.mutable.MutableDouble
- compareTo(MutableFloat) - Method in class dev.brachtendorf.mutable.MutableFloat
- compareTo(MutableInteger) - Method in class dev.brachtendorf.mutable.MutableInteger
- compareTo(MutableLong) - Method in class dev.brachtendorf.mutable.MutableLong
- componentsToARGB(int, int, int, int) - Static method in class dev.brachtendorf.graphics.ColorUtil
-
Converts the components to a single int argb representation.
- computeKMeans(DoubleSummaryStatistics[][], double[][], int[], int) - Method in class dev.brachtendorf.clustering.KMeans
- computeStartingClusters(double[][], int, int) - Method in class dev.brachtendorf.clustering.KMeans
- computeStartingClusters(double[][], int, int) - Method in class dev.brachtendorf.clustering.KMeansPlusPlus
- consistentHashCode(Enum) - Static method in class dev.brachtendorf.MiscUtil
-
Compute a consistent hashcode for enum values
- contains(Object) - Method in class dev.brachtendorf.datastructures.CountHashCollection
- containsAll(Collection<?>) - Method in class dev.brachtendorf.datastructures.CountHashCollection
- containsCount(K) - Method in class dev.brachtendorf.datastructures.CountHashCollection
- CountHashCollection<K> - Class in dev.brachtendorf.datastructures
-
A hash collection offering a O(1) performance on
CountHashCollection.contains(java.lang.Object),CountHashCollection.add(K)andCountHashCollection.remove(java.lang.Object)allowing to keep track of duplicate values. - CountHashCollection() - Constructor for class dev.brachtendorf.datastructures.CountHashCollection
- CountHashCollection(Collection<K>) - Constructor for class dev.brachtendorf.datastructures.CountHashCollection
- CR_BLUE - Static variable in class dev.brachtendorf.graphics.ColorUtil
- CR_GREEN - Static variable in class dev.brachtendorf.graphics.ColorUtil
- CR_RED - Static variable in class dev.brachtendorf.graphics.ColorUtil
- create(int) - Static method in class dev.brachtendorf.datastructures.CircularHashset
- create(BufferedImage) - Static method in interface dev.brachtendorf.graphics.FastPixel
-
Return a fast pixel instance mapped to the buffered image type
- createThumbnail(BufferedImage, int, int) - Static method in class dev.brachtendorf.graphics.ImageUtil
-
Returns a thumbnail of a source image.
- CryptoUtil - Class in dev.brachtendorf
-
Crypto utilities used to encrypt and decrypt data.
- CryptoUtil() - Constructor for class dev.brachtendorf.CryptoUtil
D
- DBScan - Class in dev.brachtendorf.clustering
- DBScan(int, double) - Constructor for class dev.brachtendorf.clustering.DBScan
- DBScan(int, double, DistanceFunction) - Constructor for class dev.brachtendorf.clustering.DBScan
- decrementAndGet() - Method in class dev.brachtendorf.mutable.MutableByte
-
Decrement the internal value and return the result.
- decrementAndGet() - Method in class dev.brachtendorf.mutable.MutableInteger
-
Decrement the internal value and return the result.
- decrementAndGet() - Method in class dev.brachtendorf.mutable.MutableLong
-
Decrement the internal value and return the result.
- decrypt(SecretKey, String) - Static method in class dev.brachtendorf.CryptoUtil
- deepAllNotNull(Object[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Check if all values in the array are not null.
- deepArrayCopy(T[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Deep copy nested arrays.
- deepArrayCopyClone(T[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Deprecated.
- deepNonNull(T[]) - Static method in class dev.brachtendorf.Require
-
Deeply checks if the supplied array does not contain null values and throws a IllegalArgumentException if it does.
- deepNonNull(T[], String) - Static method in class dev.brachtendorf.Require
-
Deeply checks if the supplied array does not contain null values and throws a IllegalArgumentException if it does.
- deepToString(Object[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Returns a string representation of the "deep contents" of the specified array.
- deepToStringFormatted(Object[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Returns a string representation of the "deep contents" of the specified array.
- DelayedConsumerHashMap<T> - Class in dev.brachtendorf.concurrency
-
Accepts a consumer which executes all provided tasks in a batch no more often than the delay specified.
- DelayedConsumerHashMap(Consumer<T>, int) - Constructor for class dev.brachtendorf.concurrency.DelayedConsumerHashMap
- deriveKey(char[]) - Static method in class dev.brachtendorf.CryptoUtil
-
Derives a 128 bit AES key from a given password useful for further encryption usage.
- deriveKey(char[], byte[], int) - Static method in class dev.brachtendorf.CryptoUtil
-
Derives an AES key from a given password useful for further encryption usage.
- dev.brachtendorf - package dev.brachtendorf
- dev.brachtendorf.clustering - package dev.brachtendorf.clustering
- dev.brachtendorf.clustering.distance - package dev.brachtendorf.clustering.distance
- dev.brachtendorf.concurrency - package dev.brachtendorf.concurrency
- dev.brachtendorf.datastructures - package dev.brachtendorf.datastructures
- dev.brachtendorf.graphics - package dev.brachtendorf.graphics
- dev.brachtendorf.mutable - package dev.brachtendorf.mutable
- distance(double[], double[]) - Method in interface dev.brachtendorf.clustering.distance.DistanceFunction
- distance(double[], double[]) - Method in class dev.brachtendorf.clustering.distance.EuclideanDistance
- distance(double[], double[]) - Method in class dev.brachtendorf.clustering.distance.JaccardIndex
- distance(double[], double[]) - Method in class dev.brachtendorf.clustering.distance.ManhattanDistance
- distance(Color, Color) - Static method in class dev.brachtendorf.graphics.ColorUtil
-
Compute a distance metric of 2 colors.
- distance(DoubleSummaryStatistics[], double[]) - Method in interface dev.brachtendorf.clustering.distance.DistanceFunction
- distance(DoubleSummaryStatistics[], double[]) - Method in class dev.brachtendorf.clustering.distance.EuclideanDistance
- distance(DoubleSummaryStatistics[], double[]) - Method in class dev.brachtendorf.clustering.distance.JaccardIndex
- distance(DoubleSummaryStatistics[], double[]) - Method in class dev.brachtendorf.clustering.distance.ManhattanDistance
- distance(Color, Color) - Static method in class dev.brachtendorf.graphics.ColorUtil
-
Compute a distance metric of 2 colors.
- distanceFunction - Variable in class dev.brachtendorf.clustering.KMeans
-
Function to calculate distance between individual data points
- DistanceFunction - Interface in dev.brachtendorf.clustering.distance
- distanceSquared(double[], double[]) - Method in interface dev.brachtendorf.clustering.distance.DistanceFunction
- distanceSquared(double[], double[]) - Method in class dev.brachtendorf.clustering.distance.EuclideanDistance
- distanceSquared(double[], double[]) - Method in class dev.brachtendorf.clustering.distance.JaccardIndex
- distanceSquared(double[], double[]) - Method in class dev.brachtendorf.clustering.distance.ManhattanDistance
- distanceSquared(DoubleSummaryStatistics[], double[]) - Method in interface dev.brachtendorf.clustering.distance.DistanceFunction
- distanceSquared(DoubleSummaryStatistics[], double[]) - Method in class dev.brachtendorf.clustering.distance.EuclideanDistance
- distanceSquared(DoubleSummaryStatistics[], double[]) - Method in class dev.brachtendorf.clustering.distance.JaccardIndex
- distanceSquared(DoubleSummaryStatistics[], double[]) - Method in class dev.brachtendorf.clustering.distance.ManhattanDistance
- divide(byte[], byte) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculate the quotient for each field in the array
- divide(byte[], byte[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Pairwise divide the two vectors.
- divide(char[], char) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculate the quotient for each field in the array
- divide(char[], char[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Pairwise divide the two vectors.
- divide(double[], double) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculate the quotient for each field in the array
- divide(double[], double[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Pairwise divide the two vectors.
- divide(float[], float) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculate the quotient for each field in the array
- divide(float[], float[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Pairwise divide the two vectors.
- divide(int[], int) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculate the quotient for each field in the array
- divide(int[], int[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Pairwise divide the two vectors.
- divide(long[], long) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculate the quotient for each field in the array
- divide(long[], long[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Pairwise divide the two vectors.
- divide(short[], short) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculate the quotient for each field in the array
- divide(short[], short[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Pairwise divide the two vectors.
- dominantColor(BufferedImage) - Static method in class dev.brachtendorf.graphics.ImageUtil
-
Return the dominant color of this image.
- dominantColor(Image) - Static method in class dev.brachtendorf.graphics.ImageUtil
-
Return the dominant color of this image.
- doubleValue() - Method in class dev.brachtendorf.mutable.MutableByte
- doubleValue() - Method in class dev.brachtendorf.mutable.MutableDouble
- doubleValue() - Method in class dev.brachtendorf.mutable.MutableFloat
- doubleValue() - Method in class dev.brachtendorf.mutable.MutableInteger
- doubleValue() - Method in class dev.brachtendorf.mutable.MutableLong
- dumpReader(BufferedReader) - Static method in class dev.brachtendorf.NetworkUtil
-
Collect all content available in the reader and return it as a string
E
- element() - Method in class dev.brachtendorf.datastructures.CircularQueue
- encryptAES(SecretKey, String) - Static method in class dev.brachtendorf.CryptoUtil
-
Encrypt a given string with AES/CBC/PKCS5PADDING cipher.
- equals(Object) - Method in class dev.brachtendorf.datastructures.Pair
- equals(Object) - Method in class dev.brachtendorf.datastructures.Triple
- equals(Object) - Method in class dev.brachtendorf.mutable.MutableBoolean
- equals(Object) - Method in class dev.brachtendorf.mutable.MutableByte
- equals(Object) - Method in class dev.brachtendorf.mutable.MutableDouble
- equals(Object) - Method in class dev.brachtendorf.mutable.MutableFloat
- equals(Object) - Method in class dev.brachtendorf.mutable.MutableInteger
- equals(Object) - Method in class dev.brachtendorf.mutable.MutableLong
- equals(Object) - Method in class dev.brachtendorf.mutable.MutableObject
- EuclideanDistance - Class in dev.brachtendorf.clustering.distance
- EuclideanDistance() - Constructor for class dev.brachtendorf.clustering.distance.EuclideanDistance
- evenValue(T) - Static method in class dev.brachtendorf.Require
-
Checks if the supplied argument is an even non null numeric value and throws a IllegalArgumentException if it isn't
- evenValue(T, String) - Static method in class dev.brachtendorf.Require
-
Checks if the supplied argument is an even non null numeric value and throws a IllegalArgumentException if it isn't
- exact(T, T) - Static method in class dev.brachtendorf.Require
-
Checks if the supplied argument is the exact numeric value as the supplied argument and throws a IllegalArgumentException if it isn't
- exact(T, T, String) - Static method in class dev.brachtendorf.Require
-
Checks if the supplied argument is the exact numeric value as the supplied argument and throws a IllegalArgumentException if it isn't
F
- FastPixel - Interface in dev.brachtendorf.graphics
-
Utility class to access pixel data in a fraction of the time required by the native JDK methods.
- FastPixelByte - Class in dev.brachtendorf.graphics
-
High performant access of RGB/YCrCb/HSV Data.
- FastPixelByte(BufferedImage) - Constructor for class dev.brachtendorf.graphics.FastPixelByte
-
Constructs a fast pixel object with the underlying buffered image.
- FastPixelImpl - Class in dev.brachtendorf.graphics
- FastPixelImpl(int, int) - Constructor for class dev.brachtendorf.graphics.FastPixelImpl
- FastPixelInt - Class in dev.brachtendorf.graphics
- FastPixelInt(BufferedImage) - Constructor for class dev.brachtendorf.graphics.FastPixelInt
-
Constructs a fast pixel object with the underlying buffered image.
- FastPixelSlowDefault - Class in dev.brachtendorf.graphics
-
A fallback instance of fast pixel using a cached getRGB instance instead of the underlying buffer due to the fact that no other implementation currently is available.
- FastPixelSlowDefault(BufferedImage) - Constructor for class dev.brachtendorf.graphics.FastPixelSlowDefault
-
Constructs a fast pixel object with the underlying buffered image.
- fillArray(boolean[], Function<Integer, Boolean>) - Static method in class dev.brachtendorf.ArrayUtil
-
Fill the array with values returned by the supplier
- fillArray(boolean[], Supplier<Boolean>) - Static method in class dev.brachtendorf.ArrayUtil
-
Fill the entire array with the value returned by the supplier.
- fillArray(byte[], Supplier<Byte>) - Static method in class dev.brachtendorf.ArrayUtil
-
Fill the entire array with the value returned by the supplier.
- fillArray(char[], Function<Integer, Character>) - Static method in class dev.brachtendorf.ArrayUtil
-
Fill the array with values returned by the supplier
- fillArray(char[], Supplier<Character>) - Static method in class dev.brachtendorf.ArrayUtil
-
Fill the entire array with the value returned by the supplier.
- fillArray(double[], Function<Integer, Double>) - Static method in class dev.brachtendorf.ArrayUtil
-
Fill the array with values returned by the supplier
- fillArray(double[], Supplier<Double>) - Static method in class dev.brachtendorf.ArrayUtil
-
Fill the entire array with the value returned by the supplier.
- fillArray(float[], Function<Integer, Float>) - Static method in class dev.brachtendorf.ArrayUtil
-
Fill the array with values returned by the supplier
- fillArray(float[], Supplier<Float>) - Static method in class dev.brachtendorf.ArrayUtil
-
Fill the entire array with the value returned by the supplier.
- fillArray(int[], Function<Integer, Integer>) - Static method in class dev.brachtendorf.ArrayUtil
-
Fill the array with values returned by the supplier
- fillArray(int[], Supplier<Integer>) - Static method in class dev.brachtendorf.ArrayUtil
-
Fill the entire array with the value returned by the supplier.
- fillArray(long[], Function<Integer, Long>) - Static method in class dev.brachtendorf.ArrayUtil
-
Fill the array with values returned by the supplier
- fillArray(long[], Supplier<Long>) - Static method in class dev.brachtendorf.ArrayUtil
-
Fill the entire array with the value returned by the supplier.
- fillArray(short[], Function<Integer, Short>) - Static method in class dev.brachtendorf.ArrayUtil
-
Fill the array with values returned by the supplier
- fillArray(short[], Supplier<Short>) - Static method in class dev.brachtendorf.ArrayUtil
-
Fill the entire array with the value returned by the supplier.
- fillArray(T[], Function<Integer, T>) - Static method in class dev.brachtendorf.ArrayUtil
-
Fill the array with values returned by the supplier
- fillArray(T[], Supplier<T>) - Static method in class dev.brachtendorf.ArrayUtil
-
Fill the entire array with the value returned by the supplier.
- fillArrayMulti(T, Function<Integer, T>) - Static method in class dev.brachtendorf.ArrayUtil
-
Fill a multi dimensional array with the value returned by the supplier
- fillArrayMulti(T, Supplier<T>) - Static method in class dev.brachtendorf.ArrayUtil
-
Fill a multi dimensional array with the value returned by the supplier
- fillString(String, int, String) - Static method in class dev.brachtendorf.StringUtil
-
Append the given char to the end of the string until the string has reached the given size
- fillStringBeginning(String, int, String) - Static method in class dev.brachtendorf.StringUtil
-
Append the given char to the start of the string until the string has reached the given size
- findClosestDivisibleInteger(int, int) - Static method in class dev.brachtendorf.MathUtil
-
Find the closest value to a number which can be divided by the divisor.
- fitGaussian(double, double, double) - Static method in class dev.brachtendorf.MathUtil
- floatValue() - Method in class dev.brachtendorf.mutable.MutableByte
- floatValue() - Method in class dev.brachtendorf.mutable.MutableDouble
- floatValue() - Method in class dev.brachtendorf.mutable.MutableFloat
- floatValue() - Method in class dev.brachtendorf.mutable.MutableInteger
- floatValue() - Method in class dev.brachtendorf.mutable.MutableLong
- frontBackSearch(T[], T) - Static method in class dev.brachtendorf.ArrayUtil
-
Search the specified array for the specified value.
- frontBackSearch(T[], T, int, int) - Static method in class dev.brachtendorf.ArrayUtil
-
Search the specified array for the specified value.
- fxToAwtColor(Color) - Static method in class dev.brachtendorf.graphics.ColorUtil
-
Convert a JavaFX color to it's awt sibling
- fxToHex(Color) - Static method in class dev.brachtendorf.graphics.ColorUtil
-
Return the hexcode of a color
G
- get() - Method in enum dev.brachtendorf.graphics.ImageUtil.BImageType
- get(int) - Method in class dev.brachtendorf.datastructures.CircularQueue
-
Returns the element at the specified position in this queue.
- get(Object, int...) - Static method in class dev.brachtendorf.ArrayUtil
- getAlpha() - Method in interface dev.brachtendorf.graphics.FastPixel
-
Get the alpha component of the entire image mapped to a 2d array representing the x and y coordinates of the pixel.
- getAlpha() - Method in class dev.brachtendorf.graphics.FastPixelByte
-
Get the alpha component of the entire image mapped to a 2d array representing the x and y coordinates of the pixel.
- getAlpha() - Method in class dev.brachtendorf.graphics.FastPixelImpl
- getAlpha(int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Get the alpha value of the specified pixel
- getAlpha(int) - Method in class dev.brachtendorf.graphics.FastPixelImpl
- getAlpha(int, int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Get the alpha value of the specified pixel
- getAlphaInternal(int) - Method in class dev.brachtendorf.graphics.FastPixelByte
- getAlphaInternal(int) - Method in class dev.brachtendorf.graphics.FastPixelImpl
- getAlphaInternal(int) - Method in class dev.brachtendorf.graphics.FastPixelInt
- getAlphaInternal(int) - Method in class dev.brachtendorf.graphics.FastPixelSlowDefault
- getAndDecrement() - Method in class dev.brachtendorf.mutable.MutableByte
-
Return the internal value and decrement it afterwards.
- getAndDecrement() - Method in class dev.brachtendorf.mutable.MutableInteger
-
Return the internal value and decrement it afterwards.
- getAndDecrement() - Method in class dev.brachtendorf.mutable.MutableLong
-
Return the internal value and decrement it afterwards.
- getAndIncrement() - Method in class dev.brachtendorf.mutable.MutableByte
-
Return the internal value and increment it afterwards.
- getAndIncrement() - Method in class dev.brachtendorf.mutable.MutableInteger
-
Return the internal value and increment it afterwards.
- getAndIncrement() - Method in class dev.brachtendorf.mutable.MutableLong
-
Return the internal value and increment it afterwards.
- getAverageGrayscale() - Method in interface dev.brachtendorf.graphics.FastPixel
-
Get the average grayscale of the entire image mapped to a 2d array representing the x and y coordinates of the pixel.
- getAverageGrayscale() - Method in class dev.brachtendorf.graphics.FastPixelImpl
- getAverageGrayscale(int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Get the average grayscale at the specified offset
- getAverageGrayscale(int) - Method in class dev.brachtendorf.graphics.FastPixelImpl
- getAverageGrayscale(int, int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Get the average grayscale of the specified pixel
- getBlue() - Method in interface dev.brachtendorf.graphics.FastPixel
-
Get the blue component of the entire image mapped to a 2d array representing the x and y coordinates of the image.
- getBlue() - Method in class dev.brachtendorf.graphics.FastPixelImpl
- getBlue(int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Get the blue value of the specified offset
- getBlue(int) - Method in class dev.brachtendorf.graphics.FastPixelImpl
- getBlue(int, int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Get the blue value of the specified pixel
- getBlue1D() - Method in interface dev.brachtendorf.graphics.FastPixel
-
Get the blue component of the entire image mapped to a 1d array
- getBlue1D() - Method in class dev.brachtendorf.graphics.FastPixelByte
- getBlue1D() - Method in class dev.brachtendorf.graphics.FastPixelImpl
- getBlueInternal(int) - Method in class dev.brachtendorf.graphics.FastPixelByte
- getBlueInternal(int) - Method in class dev.brachtendorf.graphics.FastPixelImpl
- getBlueInternal(int) - Method in class dev.brachtendorf.graphics.FastPixelInt
- getBlueInternal(int) - Method in class dev.brachtendorf.graphics.FastPixelSlowDefault
- getCb(int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Return the Cb(blue-difference) component of the YCbCr color model for the specified offset.
- getCb(int, int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Return the Cb(blue-difference) component of the YCbCr color model for the specified pixel.
- getCluster(int) - Method in class dev.brachtendorf.clustering.ClusterResult
- getClusterData() - Method in class dev.brachtendorf.clustering.ClusterResult
- getClusters() - Method in class dev.brachtendorf.clustering.ClusterResult
- getContrastColor(Color) - Static method in class dev.brachtendorf.graphics.ColorUtil
-
Return either white or black depending on the supplied color to guarantee readability.
- getContrastColor(Color) - Static method in class dev.brachtendorf.graphics.ColorUtil
-
Return either white or black depending on the supplied color to guarantee readability.
- getCr(int) - Method in interface dev.brachtendorf.graphics.FastPixel
- getCr(int, int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Return the Cr(red-difference) component of the YCbCr color model for the specified pixel.
- getFirst() - Method in class dev.brachtendorf.datastructures.Pair
- getFirst() - Method in class dev.brachtendorf.datastructures.Triple
- getFractionalPart(double) - Static method in class dev.brachtendorf.MathUtil
-
Return the fractional part of the number
- getGreen() - Method in interface dev.brachtendorf.graphics.FastPixel
-
Get the green component of the entire image mapped to a 2d array representing the x and y coordinates of the pixel.
- getGreen() - Method in class dev.brachtendorf.graphics.FastPixelImpl
- getGreen(int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Get the green value of the specified offset
- getGreen(int) - Method in class dev.brachtendorf.graphics.FastPixelImpl
- getGreen(int, int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Get the green value of the specified pixel
- getGreen1D() - Method in interface dev.brachtendorf.graphics.FastPixel
-
Get the green component of the entire image mapped to a 1d array
- getGreen1D() - Method in class dev.brachtendorf.graphics.FastPixelByte
- getGreen1D() - Method in class dev.brachtendorf.graphics.FastPixelImpl
- getGreenInternal(int) - Method in class dev.brachtendorf.graphics.FastPixelByte
- getGreenInternal(int) - Method in class dev.brachtendorf.graphics.FastPixelImpl
- getGreenInternal(int) - Method in class dev.brachtendorf.graphics.FastPixelInt
- getGreenInternal(int) - Method in class dev.brachtendorf.graphics.FastPixelSlowDefault
- getHue(int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Return the hue component (angle) of the HSV color model for the specified offset
- getHue(int, int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Return the hue component (angle) of the HSV color model for the specified pixel
- getLowerShiftBitMask(int) - Static method in class dev.brachtendorf.MathUtil
-
Get the right shift offset until the first masked bit
- getLuma() - Method in interface dev.brachtendorf.graphics.FastPixel
-
Return the Y(Luma) component of the YCbCr color model for the entire image mapped to a 2d array representing the x and y coordinates of the pixel.
- getLuma() - Method in class dev.brachtendorf.graphics.FastPixelImpl
- getLuma(int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Return the Y(Luma) component of the YCbCr color model for the specified offset.
- getLuma(int) - Method in class dev.brachtendorf.graphics.FastPixelImpl
- getLuma(int, int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Return the Y(Luma) component of the YCbCr color model for the specified pixel.
- getLuma(Color) - Static method in class dev.brachtendorf.graphics.ColorUtil
-
Get the Y (luma component) of the YCrCb color model
- getLuma(Color) - Static method in class dev.brachtendorf.graphics.ColorUtil
-
Get the Y (luma component) of the YCrCb color model
- getLuma1D() - Method in interface dev.brachtendorf.graphics.FastPixel
-
Return the Y(Luma) component of the YCbCr color model fof the entire image mapped to a 1d array
- getLuma1D() - Method in class dev.brachtendorf.graphics.FastPixelByte
- getLuma1D() - Method in class dev.brachtendorf.graphics.FastPixelImpl
- getOffset(int, int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Map the x and y values to the underlying one dimensional data array
- getOffset(int, int) - Method in class dev.brachtendorf.graphics.FastPixelByte
- getOffset(int, int) - Method in class dev.brachtendorf.graphics.FastPixelInt
- getOffset(int, int) - Method in class dev.brachtendorf.graphics.FastPixelSlowDefault
- getOS() - Static method in enum dev.brachtendorf.MiscUtil.OS
-
Return the OS type this program is executed on
- getPalette(int) - Static method in class dev.brachtendorf.graphics.ColorUtil.ColorPalette
-
Return a default palette from blue to orange using rgba interpolation
- getPalette(int, Color, Color) - Static method in class dev.brachtendorf.graphics.ColorUtil.ColorPalette
-
Create a color palette using rgba interpolation
- getPaletteHue(int) - Static method in class dev.brachtendorf.graphics.ColorUtil.ColorPalette
-
Create a color palette with the hue component being altered instead of the individual rgb components.
- getPaletteHue(int, Color, Color) - Static method in class dev.brachtendorf.graphics.ColorUtil.ColorPalette
-
Create a color palette with the hue component being altered instead of the individual rgb components.
- getRed() - Method in interface dev.brachtendorf.graphics.FastPixel
-
Get the red component of the entire image mapped to a 2d array representing the x and y coordinates of the pixel.
- getRed() - Method in class dev.brachtendorf.graphics.FastPixelImpl
-
Get the red component of the entire image mapped to a 2d array representing the x and y coordinates of the pixel.
- getRed(int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Get the red value at the specified offset
- getRed(int) - Method in class dev.brachtendorf.graphics.FastPixelImpl
- getRed(int, int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Get the red value of the specified pixel
- getRed1D() - Method in interface dev.brachtendorf.graphics.FastPixel
-
Get the red component of the entire image mapped to a 1d array
- getRed1D() - Method in class dev.brachtendorf.graphics.FastPixelByte
- getRed1D() - Method in class dev.brachtendorf.graphics.FastPixelImpl
- getRedInternal(int) - Method in class dev.brachtendorf.graphics.FastPixelByte
- getRedInternal(int) - Method in class dev.brachtendorf.graphics.FastPixelImpl
- getRedInternal(int) - Method in class dev.brachtendorf.graphics.FastPixelInt
- getRedInternal(int) - Method in class dev.brachtendorf.graphics.FastPixelSlowDefault
- getRGB() - Method in interface dev.brachtendorf.graphics.FastPixel
-
Returns the rgb values of the entire image in an 2 d array in the default RGB color model(TYPE_INT_ARGB).
- getRGB() - Method in class dev.brachtendorf.graphics.FastPixelByte
-
Returns the rgb values of the entire image in an 2 d array in the default RGB color model(TYPE_INT_ARGB).
- getRGB() - Method in class dev.brachtendorf.graphics.FastPixelImpl
-
Returns the rgb values of the entire image in an 2 d array in the default RGB color model(TYPE_INT_ARGB).
- getRGB() - Method in class dev.brachtendorf.graphics.FastPixelSlowDefault
- getRGB(int) - Method in interface dev.brachtendorf.graphics.FastPixel
- getRGB(int) - Method in class dev.brachtendorf.graphics.FastPixelByte
- getRGB(int) - Method in class dev.brachtendorf.graphics.FastPixelInt
- getRGB(int) - Method in class dev.brachtendorf.graphics.FastPixelSlowDefault
- getRGB(int, int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Returns an integer pixel in the default RGB color model(TYPE_INT_ARGB).
- getRGB(int, int) - Method in class dev.brachtendorf.graphics.FastPixelInt
-
Returns an integer pixel in the default RGB color model(TYPE_INT_ARGB).
- getSat(int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Return the saturation component of the HSV color model for the specified offset
- getSat(int, int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Return the saturation component of the HSV color model for the specified pixel
- getScaledInstance(BufferedImage, int, int) - Static method in class dev.brachtendorf.graphics.ImageUtil
-
Resize the buffered image to an arbitrary dimension
- getSecond() - Method in class dev.brachtendorf.datastructures.Pair
- getSecond() - Method in class dev.brachtendorf.datastructures.Triple
- getSortedIndices(boolean[], boolean) - Static method in class dev.brachtendorf.ArrayUtil
-
Compute the sorted indices for the array.
- getSortedIndices(byte[], boolean) - Static method in class dev.brachtendorf.ArrayUtil
-
Compute the sorted indices for the array.
- getSortedIndices(char[], boolean) - Static method in class dev.brachtendorf.ArrayUtil
-
Compute the sorted indices for the array.
- getSortedIndices(double[], boolean) - Static method in class dev.brachtendorf.ArrayUtil
-
Compute the sorted indices for the array.
- getSortedIndices(float[], boolean) - Static method in class dev.brachtendorf.ArrayUtil
-
Compute the sorted indices for the array.
- getSortedIndices(int[], boolean) - Static method in class dev.brachtendorf.ArrayUtil
-
Compute the sorted indices for the array.
- getSortedIndices(long[], boolean) - Static method in class dev.brachtendorf.ArrayUtil
-
Compute the sorted indices for the array.
- getSortedIndices(short[], boolean) - Static method in class dev.brachtendorf.ArrayUtil
-
Compute the sorted indices for the array.
- getStats(int) - Method in class dev.brachtendorf.clustering.ClusterResult
- getSumSquaredError() - Method in class dev.brachtendorf.clustering.ClusterResult
- getThird() - Method in class dev.brachtendorf.datastructures.Triple
- getVal(int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Return the value component of the HSV color model for the specified offset
- getVal(int, int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Return the value component of the HSV color model for the specified pixel
- getValue() - Method in interface dev.brachtendorf.mutable.Mutable
-
Get an object encapsulating the current value
- getValue() - Method in class dev.brachtendorf.mutable.MutableBoolean
- getValue() - Method in class dev.brachtendorf.mutable.MutableByte
- getValue() - Method in class dev.brachtendorf.mutable.MutableDouble
- getValue() - Method in class dev.brachtendorf.mutable.MutableFloat
- getValue() - Method in class dev.brachtendorf.mutable.MutableInteger
- getValue() - Method in class dev.brachtendorf.mutable.MutableLong
- getValue() - Method in class dev.brachtendorf.mutable.MutableObject
- greaterThan(T, T) - Static method in class dev.brachtendorf.Require
-
Checks if the supplied argument is strictly greater than the lower bound value and throws a IllegalArgumentException if it isn't
- greaterThan(T, T, String) - Static method in class dev.brachtendorf.Require
-
Checks if the supplied argument is strictly greater than the lower bound value and throws a IllegalArgumentException if it isn't
H
- hasAlpha() - Method in interface dev.brachtendorf.graphics.FastPixel
-
Check if an image supports alpha values
- hasAlpha() - Method in class dev.brachtendorf.graphics.FastPixelImpl
- hashCode() - Method in class dev.brachtendorf.datastructures.Pair
- hashCode() - Method in class dev.brachtendorf.datastructures.Triple
- hashCode() - Method in class dev.brachtendorf.mutable.MutableBoolean
- hashCode() - Method in class dev.brachtendorf.mutable.MutableByte
- hashCode() - Method in class dev.brachtendorf.mutable.MutableDouble
- hashCode() - Method in class dev.brachtendorf.mutable.MutableFloat
- hashCode() - Method in class dev.brachtendorf.mutable.MutableInteger
- hashCode() - Method in class dev.brachtendorf.mutable.MutableLong
- hashCode() - Method in class dev.brachtendorf.mutable.MutableObject
- height - Variable in class dev.brachtendorf.graphics.FastPixelImpl
-
Height of the image
I
- ImageUtil - Class in dev.brachtendorf.graphics
- ImageUtil() - Constructor for class dev.brachtendorf.graphics.ImageUtil
- ImageUtil.BImageType - Enum in dev.brachtendorf.graphics
-
Buffered image types mapped to enum values for easier handling
- incrementAndGet() - Method in class dev.brachtendorf.mutable.MutableByte
-
Increment the internal value and return the result.
- incrementAndGet() - Method in class dev.brachtendorf.mutable.MutableInteger
-
Increment the internal value and return the result.
- incrementAndGet() - Method in class dev.brachtendorf.mutable.MutableLong
-
Increment the internal value and return the result.
- inRange(Collection<T>, T, T, String) - Static method in class dev.brachtendorf.Require
-
Checks if the supplied argument is lays within the given bounds throws a IllegalArgumentException if it doesn't
- inRange(T, T, T) - Static method in class dev.brachtendorf.Require
-
Checks if the supplied argument is lays within the given bounds throws a IllegalArgumentException if it doesn't
- inRange(T, T, T, String) - Static method in class dev.brachtendorf.Require
-
Checks if the supplied argument is lays within the given bounds throws a IllegalArgumentException if it doesn't
- interpolateColor(BufferedImage) - Static method in class dev.brachtendorf.graphics.ImageUtil
-
Calculate the interpolated average color of the image
- interpolateColor(Image) - Static method in class dev.brachtendorf.graphics.ImageUtil
-
Calculate the interpolated average color of the image
- intValue() - Method in class dev.brachtendorf.mutable.MutableByte
- intValue() - Method in class dev.brachtendorf.mutable.MutableDouble
- intValue() - Method in class dev.brachtendorf.mutable.MutableFloat
- intValue() - Method in class dev.brachtendorf.mutable.MutableInteger
- intValue() - Method in class dev.brachtendorf.mutable.MutableLong
- invertValue() - Method in class dev.brachtendorf.mutable.MutableBoolean
-
Invert the value of the internal field
- isAtFullCapacity() - Method in class dev.brachtendorf.datastructures.CircularQueue
-
Returns
trueif the capacity limit of this queue has been reached, i.e. - isDoubleEquals(double, double, double) - Static method in class dev.brachtendorf.MathUtil
-
Compare two doubles.
- isEmpty() - Method in class dev.brachtendorf.datastructures.CircularQueue
-
Returns true if this queue is empty; false otherwise.
- isEmpty() - Method in class dev.brachtendorf.datastructures.CountHashCollection
- isNumeric(Object) - Static method in class dev.brachtendorf.MathUtil
-
Check if the supplied variable represents a numeric value
- isReplaceOpaqueColors() - Method in interface dev.brachtendorf.graphics.FastPixel
-
Check if the pixel loader replaces opaque colors with a non opaque version.
- isReplaceOpaqueColors() - Method in class dev.brachtendorf.graphics.FastPixelImpl
- iterations() - Method in class dev.brachtendorf.clustering.KMeans
- iterator() - Method in class dev.brachtendorf.datastructures.CircularQueue
-
Returns an iterator over this queue's elements.
- iterator() - Method in class dev.brachtendorf.datastructures.CountHashCollection
J
- JaccardIndex - Class in dev.brachtendorf.clustering.distance
- JaccardIndex() - Constructor for class dev.brachtendorf.clustering.distance.JaccardIndex
K
- k - Variable in class dev.brachtendorf.clustering.KMeans
-
The number of cluster the data will be partitioned into
- KMeans - Class in dev.brachtendorf.clustering
- KMeans(int) - Constructor for class dev.brachtendorf.clustering.KMeans
-
Create a KMeans clusterer with k clusters and EuclideanDistance.
- KMeans(int, DistanceFunction) - Constructor for class dev.brachtendorf.clustering.KMeans
-
Create a KMeans clusterer
- KMeansPlusPlus - Class in dev.brachtendorf.clustering
- KMeansPlusPlus(int) - Constructor for class dev.brachtendorf.clustering.KMeansPlusPlus
-
Create a KMeans clusterer with k clusters and EuclideanDistance.
- KMeansPlusPlus(int, DistanceFunction) - Constructor for class dev.brachtendorf.clustering.KMeansPlusPlus
-
Create a KMeans clusterer
L
- lastIterationCount - Variable in class dev.brachtendorf.clustering.KMeans
- lessThan(T, T) - Static method in class dev.brachtendorf.Require
-
Checks if the supplied argument is strictly less than the upper bound value and throws a IllegalArgumentException if it isn't
- lessThan(T, T, String) - Static method in class dev.brachtendorf.Require
-
Checks if the supplied argument is strictly less than the upper bound value and throws a IllegalArgumentException if it isn't
- linearSearch(T[], T) - Static method in class dev.brachtendorf.ArrayUtil
-
Search the specified array for the specified value.
- linearSearch(T[], T, int, int) - Static method in class dev.brachtendorf.ArrayUtil
-
Search the specified array for the specified value.
- LINUX - dev.brachtendorf.MiscUtil.OS
- log(double, double) - Static method in class dev.brachtendorf.MathUtil
-
Returns the logarithm of an arbitrary base of a double value.
- LOGGER - Static variable in interface dev.brachtendorf.graphics.FastPixel
- longValue() - Method in class dev.brachtendorf.mutable.MutableByte
- longValue() - Method in class dev.brachtendorf.mutable.MutableDouble
- longValue() - Method in class dev.brachtendorf.mutable.MutableFloat
- longValue() - Method in class dev.brachtendorf.mutable.MutableInteger
- longValue() - Method in class dev.brachtendorf.mutable.MutableLong
- LUMA_BLUE - Static variable in class dev.brachtendorf.graphics.ColorUtil
- LUMA_GREEN - Static variable in class dev.brachtendorf.graphics.ColorUtil
- LUMA_RED - Static variable in class dev.brachtendorf.graphics.ColorUtil
M
- MAC_OS - dev.brachtendorf.MiscUtil.OS
- ManhattanDistance - Class in dev.brachtendorf.clustering.distance
- ManhattanDistance() - Constructor for class dev.brachtendorf.clustering.distance.ManhattanDistance
- MathUtil - Class in dev.brachtendorf
- MathUtil() - Constructor for class dev.brachtendorf.MathUtil
- maximum(byte[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Find the maximum value of the array
- maximum(char[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Find the maximum value of the array
- maximum(double[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Find the maximum value of the array
- maximum(float[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Find the maximum value of the array
- maximum(int[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Find the maximum value of the array
- maximum(long[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Find the maximum value of the array
- maximum(short[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Find the maximum value of the array
- maximumIndex(byte[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Find the index of the maximum value of the array.
- maximumIndex(char[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Find the index of the maximum value of the array.
- maximumIndex(double[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Find the index of the maximum value of the array.
- maximumIndex(float[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Find the index of the maximum value of the array.
- maximumIndex(int[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Find the index of the maximum value of the array.
- maximumIndex(long[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Find the index of the maximum value of the array.
- maximumIndex(short[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Find the index of the maximum value of the array.
- meanColor(BufferedImage) - Static method in class dev.brachtendorf.graphics.ImageUtil
-
Calculate the average color of this image.
- meanColor(Image) - Static method in class dev.brachtendorf.graphics.ImageUtil
-
Calculate the average color of this image.
- median(byte[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculate the median value of the array
- median(char[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculate the median value of the array
- median(double[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculate the median value of the array
- median(float[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculate the median value of the array
- median(int[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculate the median value of the array
- median(long[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculate the median value of the array
- median(short[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculate the median value of the array
- minimum(byte[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Find the minimum value of the array
- minimum(char[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Find the minimum value of the array
- minimum(double[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Find the minimum value of the array
- minimum(float[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Find the minimum value of the array
- minimum(int[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Find the minimum value of the array
- minimum(long[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Find the minimum value of the array
- minimum(short[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Find the minimum value of the array
- minimumIndex(byte[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Find the index of the minimum value of the array.
- minimumIndex(char[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Find the index of the minimum value of the array.
- minimumIndex(double[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Find the index of the minimum value of the array.
- minimumIndex(float[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Find the index of the minimum value of the array.
- minimumIndex(int[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Find the index of the minimum value of the array.
- minimumIndex(long[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Find the index of the minimum value of the array.
- minimumIndex(short[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Find the index of the minimum value of the array.
- MiscUtil - Class in dev.brachtendorf
-
Utility methods not belonging in any other specific category.
- MiscUtil() - Constructor for class dev.brachtendorf.MiscUtil
- MiscUtil.OS - Enum in dev.brachtendorf
-
Retrieve the OS type this program is executed on.
- multiply(byte[], byte) - Static method in class dev.brachtendorf.ArrayUtil
-
Scalar Multiplication.
- multiply(byte[], byte[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Pairwise multiply the two vectors.
- multiply(char[], char) - Static method in class dev.brachtendorf.ArrayUtil
-
Scalar Multiplication.
- multiply(char[], char[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Pairwise multiply the two vectors.
- multiply(double[], double) - Static method in class dev.brachtendorf.ArrayUtil
-
Scalar Multiplication.
- multiply(double[], double[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Pairwise multiply the two vectors.
- multiply(float[], float) - Static method in class dev.brachtendorf.ArrayUtil
-
Scalar Multiplication.
- multiply(float[], float[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Pairwise multiply the two vectors.
- multiply(int[], int) - Static method in class dev.brachtendorf.ArrayUtil
-
Scalar Multiplication.
- multiply(int[], int[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Pairwise multiply the two vectors.
- multiply(long[], long) - Static method in class dev.brachtendorf.ArrayUtil
-
Scalar Multiplication.
- multiply(long[], long[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Pairwise multiply the two vectors.
- multiply(short[], short) - Static method in class dev.brachtendorf.ArrayUtil
-
Scalar Multiplication.
- multiply(short[], short[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Pairwise multiply the two vectors.
- multiplyChar(String, int) - Static method in class dev.brachtendorf.StringUtil
-
Construct a string with multiple chars concatenated x times
- Mutable<T> - Interface in dev.brachtendorf.mutable
-
Mutable class wrapper for basic java data types.
- MutableBoolean - Class in dev.brachtendorf.mutable
-
Mutable class wrapper for boolean values.
- MutableBoolean() - Constructor for class dev.brachtendorf.mutable.MutableBoolean
-
Create a mutable Boolean with an initial value of False
- MutableBoolean(boolean) - Constructor for class dev.brachtendorf.mutable.MutableBoolean
-
Create a mutable Boolean.
- MutableByte - Class in dev.brachtendorf.mutable
-
Mutable class wrapper for byte values.
- MutableByte() - Constructor for class dev.brachtendorf.mutable.MutableByte
-
Create a mutable Boolean with an initial value of 0
- MutableByte(byte) - Constructor for class dev.brachtendorf.mutable.MutableByte
-
Create a mutable Boolean
- MutableDouble - Class in dev.brachtendorf.mutable
-
Mutable class wrapper for double values.
- MutableDouble() - Constructor for class dev.brachtendorf.mutable.MutableDouble
-
Create a mutable Double with an initial value of 0
- MutableDouble(double) - Constructor for class dev.brachtendorf.mutable.MutableDouble
-
Create a mutable Double.
- MutableFloat - Class in dev.brachtendorf.mutable
-
Mutable class wrapper for float values.
- MutableFloat() - Constructor for class dev.brachtendorf.mutable.MutableFloat
-
Create a mutable Float with an initial value of 0
- MutableFloat(float) - Constructor for class dev.brachtendorf.mutable.MutableFloat
-
Create a mutable Float.
- MutableInteger - Class in dev.brachtendorf.mutable
-
Mutable class wrapper for integer values.
- MutableInteger() - Constructor for class dev.brachtendorf.mutable.MutableInteger
-
Create a mutable Integer with an initial value of 0
- MutableInteger(int) - Constructor for class dev.brachtendorf.mutable.MutableInteger
-
Create a mutable Integer.
- MutableLong - Class in dev.brachtendorf.mutable
-
Mutable class wrapper for long values.
- MutableLong() - Constructor for class dev.brachtendorf.mutable.MutableLong
-
Create a mutable Long with an initial value of 0L
- MutableLong(long) - Constructor for class dev.brachtendorf.mutable.MutableLong
-
Create a mutable Long.
- MutableObject<T> - Class in dev.brachtendorf.mutable
-
* Mutable class wrapper for objects.
- MutableObject() - Constructor for class dev.brachtendorf.mutable.MutableObject
- MutableObject(T) - Constructor for class dev.brachtendorf.mutable.MutableObject
N
- NamedThreadFactory - Class in dev.brachtendorf.concurrency
-
Analogous implementation of the default thread factory used by java executors.
- NamedThreadFactory() - Constructor for class dev.brachtendorf.concurrency.NamedThreadFactory
-
A thread factory creating non daemon threads.
- NamedThreadFactory(boolean) - Constructor for class dev.brachtendorf.concurrency.NamedThreadFactory
-
A thread factory spawning threads with the threads factory default uncaught exception handler.
- NamedThreadFactory(String) - Constructor for class dev.brachtendorf.concurrency.NamedThreadFactory
-
A thread factory creating non daemon threads.
- NamedThreadFactory(String, boolean) - Constructor for class dev.brachtendorf.concurrency.NamedThreadFactory
-
Create a new thread factory with advanced settings.
- NamedThreadFactory(String, boolean, Thread.UncaughtExceptionHandler) - Constructor for class dev.brachtendorf.concurrency.NamedThreadFactory
-
A thread factory with advanced settings.
- NamedThreadFactory(String, Thread.UncaughtExceptionHandler) - Constructor for class dev.brachtendorf.concurrency.NamedThreadFactory
-
A thread factory creating non daemon threads
- NamedThreadFactory(Thread.UncaughtExceptionHandler) - Constructor for class dev.brachtendorf.concurrency.NamedThreadFactory
-
A thread factory creating non daemon threads.
- negativeValue(T) - Static method in class dev.brachtendorf.Require
-
Checks if the supplied argument is a negative non null numeric value and throws a IllegalArgumentException if it isn't
- negativeValue(T, String) - Static method in class dev.brachtendorf.Require
-
Checks if the supplied argument is a negative non null numeric value and throws a IllegalArgumentException if it isn't
- NetworkUtil - Class in dev.brachtendorf
- NetworkUtil() - Constructor for class dev.brachtendorf.NetworkUtil
- newThread(Runnable) - Method in class dev.brachtendorf.concurrency.NamedThreadFactory
- nonNull(Collection<T>) - Static method in class dev.brachtendorf.Require
-
Checks if the supplied Collection does not contain null values and throws a IllegalArgumentException if it does.
- nonNull(Collection<T>, String) - Static method in class dev.brachtendorf.Require
-
Checks if the supplied Collection does not contain null values and throws a IllegalArgumentException if it does.
- nonNull(T[]) - Static method in class dev.brachtendorf.Require
-
Checks if the supplied array does not contain null values and throws a IllegalArgumentException if it does.
- nonNull(T[], String) - Static method in class dev.brachtendorf.Require
-
Checks if the supplied array does not contain null values and throws a IllegalArgumentException if it does.
- normalizeValue(double, double, double, double, double) - Static method in class dev.brachtendorf.MathUtil
-
Linearly fit/transform a value from a given to a new range.
- normalizeValue(double, double, double, double, double, boolean) - Static method in class dev.brachtendorf.MathUtil
-
Linearly fit/transform a value from a given to a new range.
- numberOfClusters - Variable in class dev.brachtendorf.clustering.ClusterResult
O
- oddValue(T) - Static method in class dev.brachtendorf.Require
-
Checks if the supplied argument is an odd non null numeric value and throws a IllegalArgumentException if it isn't
- oddValue(T, String) - Static method in class dev.brachtendorf.Require
-
Checks if the supplied argument is an odd non null numeric value and throws a IllegalArgumentException if it isn't
- offer(E) - Method in class dev.brachtendorf.datastructures.CircularQueue
-
Adds the given element to this queue.
- OTHER - dev.brachtendorf.MiscUtil.OS
P
- Pair<S,U> - Class in dev.brachtendorf.datastructures
-
A convenience data structure encapsulating 2 values.
- Pair(Pair<? extends S, ? extends U>) - Constructor for class dev.brachtendorf.datastructures.Pair
-
Copy constructor.
- Pair(S, U) - Constructor for class dev.brachtendorf.datastructures.Pair
- peek() - Method in class dev.brachtendorf.datastructures.CircularQueue
- PlainAutoCloseable - Interface in dev.brachtendorf
-
Auto
AutoCloseablewithout throwing an exception - poll() - Method in class dev.brachtendorf.datastructures.CircularQueue
- positiveValue(T) - Static method in class dev.brachtendorf.Require
-
Checks if the supplied argument is a positive non null numeric value and throws a IllegalArgumentException if it isn't
- positiveValue(T, String) - Static method in class dev.brachtendorf.Require
-
Checks if the supplied argument is a positive non null numeric value and throws a IllegalArgumentException if it isn't
- printInformation() - Method in class dev.brachtendorf.clustering.ClusterResult
- put(Integer, T) - Method in class dev.brachtendorf.concurrency.DelayedConsumerHashMap
R
- readLineFromURL(String) - Static method in class dev.brachtendorf.NetworkUtil
-
Read a single line from a given url
- remove() - Method in class dev.brachtendorf.datastructures.CircularQueue
- remove(Object) - Method in class dev.brachtendorf.datastructures.CountHashCollection
- removeAll(Collection<?>) - Method in class dev.brachtendorf.datastructures.CountHashCollection
- removeEldestEntry(Map.Entry<K, V>) - Method in class dev.brachtendorf.datastructures.CircularLinkedHashMap
- removeFully(Object) - Method in class dev.brachtendorf.datastructures.CountHashCollection
- replacementA - Variable in class dev.brachtendorf.graphics.FastPixelImpl
- replacementB - Variable in class dev.brachtendorf.graphics.FastPixelImpl
- replacementG - Variable in class dev.brachtendorf.graphics.FastPixelImpl
- replacementR - Variable in class dev.brachtendorf.graphics.FastPixelImpl
- Require - Class in dev.brachtendorf
- Require() - Constructor for class dev.brachtendorf.Require
- resolvePublicAddress() - Static method in class dev.brachtendorf.NetworkUtil
-
Resolves the public facing ip address of this network.
- resolveSiteLocalAddress() - Static method in class dev.brachtendorf.NetworkUtil
-
Resolves the first found link local address of the current machine 192.168.xxx.xxx.
- restartApp() - Static method in class dev.brachtendorf.MiscUtil
-
Restart the java application by registering a shutdown hook at the very end of the life cycle.
- retainAll(Collection<?>) - Method in class dev.brachtendorf.datastructures.CountHashCollection
-
Retain all fully removes keys which are present in the collection and not just one instance of the duplicate!
- run() - Method in class dev.brachtendorf.concurrency.RunnableWithCallback
- RunnableWithCallback - Class in dev.brachtendorf.concurrency
-
A runnable wrapper which can be useful to schedule a task with a specific delay and invoking a callback once the runnable finished executing.
- RunnableWithCallback(Runnable, Runnable) - Constructor for class dev.brachtendorf.concurrency.RunnableWithCallback
S
- setAlpha(int[][]) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Set new alpha values for the entire picture
- setAlpha(int[][]) - Method in class dev.brachtendorf.graphics.FastPixelImpl
-
Set new alpha values for the entire picture
- setAlpha(int[][]) - Method in class dev.brachtendorf.graphics.FastPixelSlowDefault
- setAlpha(int, int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Set the alpha value.
- setAlpha(int, int) - Method in class dev.brachtendorf.graphics.FastPixelByte
- setAlpha(int, int) - Method in class dev.brachtendorf.graphics.FastPixelInt
- setAlpha(int, int) - Method in class dev.brachtendorf.graphics.FastPixelSlowDefault
- setAlpha(int, int, int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Set the alpha value of the specified pixel.
- setAverageGrayscale(int[][]) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Set the gray values of the entire image.
- setAverageGrayscale(int[][]) - Method in class dev.brachtendorf.graphics.FastPixelImpl
- setAverageGrayscale(int[][]) - Method in class dev.brachtendorf.graphics.FastPixelSlowDefault
- setAverageGrayscale(int, int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Set the gray values at the specified offset
- setAverageGrayscale(int, int, int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Set the gray values of the specified pixel image.
- setBlue(int[][]) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Set new blue values for the entire picture
- setBlue(int[][]) - Method in class dev.brachtendorf.graphics.FastPixelImpl
-
Set new blue values for the entire picture
- setBlue(int[][]) - Method in class dev.brachtendorf.graphics.FastPixelSlowDefault
- setBlue(int, int) - Method in interface dev.brachtendorf.graphics.FastPixel
- setBlue(int, int) - Method in class dev.brachtendorf.graphics.FastPixelByte
- setBlue(int, int) - Method in class dev.brachtendorf.graphics.FastPixelInt
- setBlue(int, int) - Method in class dev.brachtendorf.graphics.FastPixelSlowDefault
- setBlue(int, int, int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Set the blue value of the specified pixel
- setGreen(int[][]) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Set new green values for the entire picture
- setGreen(int[][]) - Method in class dev.brachtendorf.graphics.FastPixelImpl
-
Set new green values for the entire picture
- setGreen(int[][]) - Method in class dev.brachtendorf.graphics.FastPixelSlowDefault
- setGreen(int, int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Set the green value at the specified offset
- setGreen(int, int) - Method in class dev.brachtendorf.graphics.FastPixelByte
- setGreen(int, int) - Method in class dev.brachtendorf.graphics.FastPixelInt
- setGreen(int, int) - Method in class dev.brachtendorf.graphics.FastPixelSlowDefault
- setGreen(int, int, int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Set the green value of the specified pixel
- setRed(int[][]) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Set new red values for the entire picture
- setRed(int[][]) - Method in class dev.brachtendorf.graphics.FastPixelImpl
-
Set new red values for the entire picture
- setRed(int[][]) - Method in class dev.brachtendorf.graphics.FastPixelSlowDefault
- setRed(int, int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Set the red value at the specified offset
- setRed(int, int) - Method in class dev.brachtendorf.graphics.FastPixelByte
- setRed(int, int) - Method in class dev.brachtendorf.graphics.FastPixelInt
- setRed(int, int) - Method in class dev.brachtendorf.graphics.FastPixelSlowDefault
- setRed(int, int, int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Set the red value of the specified pixel
- setRed(int, int, int) - Method in class dev.brachtendorf.graphics.FastPixelInt
-
Set the red value of the specified pixel
- setReplaceOpaqueColors(int, int, int, int, int) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Replace all pixels values in the image which have an alpha < than the specified threshold.
- setReplaceOpaqueColors(int, int, int, int, int) - Method in class dev.brachtendorf.graphics.FastPixelImpl
- setReplaceOpaqueColors(int, Color) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Replace all pixels values in the image which have an alpha < than the specified threshold.
- setReplaceOpaqueColors(int, Color) - Method in interface dev.brachtendorf.graphics.FastPixel
-
Replace all pixels values in the image which have an alpha < than the specified threshold.
- setValue(boolean) - Method in class dev.brachtendorf.mutable.MutableBoolean
-
Set the internal field to the new value
- setValue(byte) - Method in class dev.brachtendorf.mutable.MutableByte
-
Set the internal field to the new value
- setValue(double) - Method in class dev.brachtendorf.mutable.MutableDouble
-
Set the internal field to the new value
- setValue(float) - Method in class dev.brachtendorf.mutable.MutableFloat
-
Set the internal field to the new value
- setValue(int) - Method in class dev.brachtendorf.mutable.MutableInteger
-
Set the internal field to the new value
- setValue(long) - Method in class dev.brachtendorf.mutable.MutableLong
-
Set the internal field to the new value
- setValue(Boolean) - Method in class dev.brachtendorf.mutable.MutableBoolean
- setValue(Byte) - Method in class dev.brachtendorf.mutable.MutableByte
- setValue(Double) - Method in class dev.brachtendorf.mutable.MutableDouble
- setValue(Float) - Method in class dev.brachtendorf.mutable.MutableFloat
- setValue(Integer) - Method in class dev.brachtendorf.mutable.MutableInteger
- setValue(Long) - Method in class dev.brachtendorf.mutable.MutableLong
- setValue(T) - Method in interface dev.brachtendorf.mutable.Mutable
-
Set the internal field to the new value
- setValue(T) - Method in class dev.brachtendorf.mutable.MutableObject
- size() - Method in class dev.brachtendorf.datastructures.CircularQueue
-
Returns the number of elements stored in the queue.
- size() - Method in class dev.brachtendorf.datastructures.CountHashCollection
- sizeUnique() - Method in class dev.brachtendorf.datastructures.CountHashCollection
-
Returns the number of unique elements in this collection.
- SOLARIS - dev.brachtendorf.MiscUtil.OS
- stats - Variable in class dev.brachtendorf.clustering.ClusterResult
-
Compute the min max average and mean of each cluster
- StringUtil - Class in dev.brachtendorf
- StringUtil() - Constructor for class dev.brachtendorf.StringUtil
- subtract(byte[], byte) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculate the difference for each field in the array
- subtract(char[], char) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculate the difference for each field in the array
- subtract(double[], double) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculate the difference for each field in the array
- subtract(float[], float) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculate the difference for each field in the array
- subtract(int[], int) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculate the difference for each field in the array
- subtract(long[], long) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculate the difference for each field in the array
- subtract(short[], short) - Static method in class dev.brachtendorf.ArrayUtil
-
Calculate the difference for each field in the array
T
- toArray() - Method in class dev.brachtendorf.datastructures.CountHashCollection
-
Returns an array containing all of the elements in this collection.
- toArray(T[]) - Method in class dev.brachtendorf.datastructures.CountHashCollection
-
Returns an array containing all of the elements in this collection.
- toArrayUnique() - Method in class dev.brachtendorf.datastructures.CountHashCollection
- toArrayUnique(K[]) - Method in class dev.brachtendorf.datastructures.CountHashCollection
- toImage(File) - Method in class dev.brachtendorf.clustering.ClusterResult
- toNewType(BufferedImage, int) - Static method in class dev.brachtendorf.graphics.ImageUtil
-
Convert the image to an image of the new type
- toNewType(BufferedImage, ImageUtil.BImageType) - Static method in class dev.brachtendorf.graphics.ImageUtil
-
Convert the image to an image of the new type
- toString() - Method in class dev.brachtendorf.datastructures.CountHashCollection
- toString() - Method in class dev.brachtendorf.datastructures.Pair
- toString() - Method in class dev.brachtendorf.datastructures.Triple
- toString() - Method in enum dev.brachtendorf.MiscUtil.OS
- toString(double[], int) - Static method in class dev.brachtendorf.ArrayUtil
-
Return the string representation of an array containing floating point numbers with fixed decimal places.The string representation consists of a list of the array's elements,enclosed in square brackets ("[]").
- toString(float[], int) - Static method in class dev.brachtendorf.ArrayUtil
-
Return the string representation of an array containing floating point numbers with fixed decimal places.
- toString(Object[]) - Static method in class dev.brachtendorf.ArrayUtil
-
Returns a string representation of the contents of the specified array.If the array contains other arrays as elements, they are converted to strings by the Object.toString method inherited from Object, which describes their identities rather than their contents.
- triangularNumber(int) - Static method in class dev.brachtendorf.MathUtil
-
Calculate the triangular number.
- Triple<S,U,V> - Class in dev.brachtendorf.datastructures
-
A convenience data structure encapsulating 3 values.
- Triple(Triple<? extends S, ? extends U, ? extends V>) - Constructor for class dev.brachtendorf.datastructures.Triple
-
Copy constructor.
- Triple(S, U, V) - Constructor for class dev.brachtendorf.datastructures.Triple
- twoDimtoOneDim(int, int, int) - Static method in class dev.brachtendorf.ArrayUtil
-
Map 2 dimensional coordinates to a one dimensional array
- TYPE_3BYTE_BGR - dev.brachtendorf.graphics.ImageUtil.BImageType
-
Represents an image with 8-bit RGB color components, corresponding to a Windows-style BGR color model) with the colors Blue, Green, and Red stored in 3 bytes.
- TYPE_4BYTE_ABGR - dev.brachtendorf.graphics.ImageUtil.BImageType
-
Represents an image with 8-bit RGBA color components with the colors Blue, Green, and Red stored in 3 bytes and 1 byte of alpha.
- TYPE_4BYTE_ABGR_PRE - dev.brachtendorf.graphics.ImageUtil.BImageType
-
Represents an image with 8-bit RGBA color components with the colors Blue, Green, and Red stored in 3 bytes and 1 byte of alpha.
- TYPE_BYTE_BINARY - dev.brachtendorf.graphics.ImageUtil.BImageType
-
Represents an opaque byte-packed 1, 2, or 4 bit image.
- TYPE_BYTE_GRAY - dev.brachtendorf.graphics.ImageUtil.BImageType
-
Represents a unsigned byte grayscale image, non-indexed.
- TYPE_BYTE_INDEXED - dev.brachtendorf.graphics.ImageUtil.BImageType
-
Represents an indexed byte image.
- TYPE_CUSTOM - dev.brachtendorf.graphics.ImageUtil.BImageType
-
Image type is not recognized so it must be a customized image.
- TYPE_INT_ARGB - dev.brachtendorf.graphics.ImageUtil.BImageType
-
Represents an image with 8-bit RGBA color components packed into integer pixels.
- TYPE_INT_ARGB_PRE - dev.brachtendorf.graphics.ImageUtil.BImageType
-
Represents an image with 8-bit RGBA color components packed into integer pixels.
- TYPE_INT_BGR - dev.brachtendorf.graphics.ImageUtil.BImageType
-
Represents an image with 8-bit RGB color components, corresponding to a Windows- or Solaris- style BGR color model, with the colors Blue, Green, and Red packed into integer pixels.
- TYPE_INT_RGB - dev.brachtendorf.graphics.ImageUtil.BImageType
-
Represents an image with 8-bit RGB color components packed into integer pixels.
- TYPE_USHORT_555_RGB - dev.brachtendorf.graphics.ImageUtil.BImageType
-
Represents an image with 5-5-5 RGB color components (5-bits red, 5-bits green, 5-bits blue) with no alpha.
- TYPE_USHORT_565_RGB - dev.brachtendorf.graphics.ImageUtil.BImageType
-
Represents an image with 5-6-5 RGB color components (5-bits red, 6-bits green, 5-bits blue) with no alpha.
- TYPE_USHORT_GRAY - dev.brachtendorf.graphics.ImageUtil.BImageType
-
Represents an unsigned short grayscale image, non-indexed).
U
- UNKNOWN - dev.brachtendorf.MiscUtil.OS
V
- valueOf(String) - Static method in enum dev.brachtendorf.graphics.ImageUtil.BImageType
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum dev.brachtendorf.MiscUtil.OS
-
Returns the enum constant of this type with the specified name.
- values() - Static method in enum dev.brachtendorf.graphics.ImageUtil.BImageType
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum dev.brachtendorf.MiscUtil.OS
-
Returns an array containing the constants of this enum type, in the order they are declared.
W
- width - Variable in class dev.brachtendorf.graphics.FastPixelImpl
-
Width of the image
- WINDOWS - dev.brachtendorf.MiscUtil.OS
All Classes All Packages