- indexOfFirstDigit(String) - Static method in class com.nwawsoft.util.natives.StringFunctions
-
Returns the index of the first digit (0-9) in the input String.
- init() - Method in class com.nwawsoft.util.tools.ScreenshotRobot
-
(Re-)Initializes the ScreenshotRobot.
- insert(Object) - Method in class com.nwawsoft.util.datastructures.IntList
-
- insert(Object) - Method in class com.nwawsoft.util.datastructures.List
-
If there is a currently selected object the specified element is added before it.
- insert(Object) - Method in class com.nwawsoft.util.datastructures.StringList
-
Inserts the Object in front of where the 'current' reference is, but only if it is a String.
- IntArrayFunctions - Class in com.nwawsoft.util.natives
-
Supplies functions to work with arrays of type int.
- IntArrayFunctions() - Constructor for class com.nwawsoft.util.natives.IntArrayFunctions
-
- IntList - Class in com.nwawsoft.util.datastructures
-
Works like List
but ignores objects except Integer
objects and List
objects that are not
purely made out of Integer
s.
- IntList() - Constructor for class com.nwawsoft.util.datastructures.IntList
-
- isDigit(char) - Static method in class com.nwawsoft.util.natives.CharFunctions
-
Returns whether a specified character is a digit between 0 and 9.
- isEmpty() - Method in class com.nwawsoft.util.datastructures.Graph
-
Returns true if the Graph
contains no GraphNode
objects.
- isEmpty() - Method in class com.nwawsoft.util.datastructures.List
-
Returns whether the list is empty.
- isEmpty() - Method in class com.nwawsoft.util.datastructures.Queue
-
Returns whether the queue is empty.
- isEmpty() - Method in class com.nwawsoft.util.datastructures.Stack
-
Returns whether the stack is empty.
- isEqual(int[], int[]) - Static method in class com.nwawsoft.util.natives.IntArrayFunctions
-
Returns whether two int arrays have exactly the same values in the same order.
- isFileIdentifier(String) - Static method in class com.nwawsoft.util.natives.StringFunctions
-
Checks whether a String only contains [a-z], [A-Z], [0-9], '/', '.' ':' and '_'
- isFileName(String) - Static method in class com.nwawsoft.util.natives.StringFunctions
-
Checks whether a String only contains [a-z], [A-Z], [0-9], '.' and '_'
- isFilePath(String) - Static method in class com.nwawsoft.util.natives.StringFunctions
-
Checks whether a String only contains [a-z], [A-Z], [0-9], '/', '.' and '_'
- isInJar(Object) - Static method in class com.nwawsoft.util.jar.ProtocolFunctions
-
Returns whether a class has been loaded from a '.jar'.
- isLowerCaseLetter(char) - Static method in class com.nwawsoft.util.natives.CharFunctions
-
Returns whether a specified character is one of the 26 standard lower case
letters from 'a' to 'z'.
- isMarked() - Method in class com.nwawsoft.util.datastructures.Graph.GraphNode
-
Returns whether the GraphNode
object's "marked" flag is set.
- isNormalized(String) - Static method in class com.nwawsoft.util.natives.StringFunctions
-
Checks whether a String only contains ['a'-'z'] and '_'.
- isNumeric(char) - Static method in class com.nwawsoft.util.natives.CharFunctions
-
Checks whether a specified character is either a digit from 0 to 9 or a '.' or ','.
- isOnlyDigits(String) - Static method in class com.nwawsoft.util.natives.StringFunctions
-
Checks whether only digits from '0' to '9' appear in a the String.
- isOnlyFirstCharCapital(String) - Static method in class com.nwawsoft.util.natives.StringFunctions
-
Checks whether a String has no upper case letters except for the very first.
- isOnlyLowerCaseLetters(String) - Static method in class com.nwawsoft.util.natives.StringFunctions
-
Checks wether only Characters from 'a' to 'z' appear in a the String.
- isOnlyUpperCaseLetters(String) - Static method in class com.nwawsoft.util.natives.StringFunctions
-
Checks whether only Characters from 'A' to 'Z' appear in a the String.
- isPrime(int) - Static method in class com.nwawsoft.util.math.PrimeNumberFunctions
-
Returns whether a number is prime or not.
- isPrime(long) - Static method in class com.nwawsoft.util.math.PrimeNumberFunctions
-
Returns whether a number is prime or not.
- isSpecialCharacter(char) - Static method in class com.nwawsoft.util.natives.CharFunctions
-
Returns true, if the specified character is neither a lower case letter, an
upper case letter or a digit.
- isSuperPrime(int) - Static method in class com.nwawsoft.util.math.PrimeNumberFunctions
-
Returns whether the specified number is a super prime number.
- isType(Class) - Method in class com.nwawsoft.util.datastructures.List
-
Returns whether all contents of the list are objects of the specified class and sets the currently selected
object to the first object.
- isTypeOrNull(Class) - Method in class com.nwawsoft.util.datastructures.List
-
Returns whether all contents of the list are objects of the specified class or null and sets the currently
selected object to the first object.
- isUpperCaseLetter(char) - Static method in class com.nwawsoft.util.natives.CharFunctions
-
Returns whether a specified character is one of the 26 standard upper case
letters from 'A' to 'Z'.