- add(ConsoleColor, String) - Static method in enum com.frostdeveloper.api.utility.ConsoleColor
-
A method used to add a color to a console message, this method will always automatically include
a reset at the end of the string.
- addDays(int) - Method in class com.frostdeveloper.api.FrostAPI
-
Adds a number of days to a date returning a new object.
- addDays(Date, int) - Method in class com.frostdeveloper.api.FrostAPI
-
Adds a number of days to a date returning a new object.
- addHours(int) - Method in class com.frostdeveloper.api.FrostAPI
-
Adds a number of hours to a date returning a new object.
- addHours(Date, int) - Method in class com.frostdeveloper.api.FrostAPI
-
Adds a number of hours to a date returning a new object.
- addMilliseconds(int) - Method in class com.frostdeveloper.api.FrostAPI
-
Adds a number of milliseconds to a date returning a new object.
- addMilliseconds(Date, int) - Method in class com.frostdeveloper.api.FrostAPI
-
Adds a number of milliseconds to a date returning a new object.
- addMinutes(int) - Method in class com.frostdeveloper.api.FrostAPI
-
Adds a number of minutes to a date returning a new object.
- addMinutes(Date, int) - Method in class com.frostdeveloper.api.FrostAPI
-
Adds a number of minutes to a date returning a new object.
- addMonths(int) - Method in class com.frostdeveloper.api.FrostAPI
-
Adds a number of months to a date returning a new object.
- addMonths(Date, int) - Method in class com.frostdeveloper.api.FrostAPI
-
Adds a number of months to a date returning a new object.
- addSeconds(int) - Method in class com.frostdeveloper.api.FrostAPI
-
Adds a number of seconds to a date returning a new object.
- addSeconds(Date, int) - Method in class com.frostdeveloper.api.FrostAPI
-
Adds a number of seconds to a date returning a new object.
- addTime(String) - Method in class com.frostdeveloper.api.FrostAPI
-
A method used to add a set amount of time to today's date, it will take a string and try to convert
it into a valid time format, for example, '12m' will be parsed as 12 minutes and add 12 minutes to
a specific date.
- addToList(List<String>, String, boolean) - Method in class com.frostdeveloper.api.FrostAPI
-
A method used to add a string to a list if a condition is met
- addToList(List<Object>, Object, boolean) - Method in class com.frostdeveloper.api.FrostAPI
-
A method used to add an object to a list if a condition is met
- addToList(List<Boolean>, Boolean, boolean) - Method in class com.frostdeveloper.api.FrostAPI
-
A method used to add a boolean to a list if a condition is met
- addToList(List<Integer>, Integer, boolean) - Method in class com.frostdeveloper.api.FrostAPI
-
A method used to add an integer to a list if a condition is met
- addWeeks(int) - Method in class com.frostdeveloper.api.FrostAPI
-
Adds a number of weeks to a date returning a new object.
- addWeeks(Date, int) - Method in class com.frostdeveloper.api.FrostAPI
-
Adds a number of weeks to a date returning a new object.
- addYears(int) - Method in class com.frostdeveloper.api.FrostAPI
-
Adds a number of years to a date returning a new object.
- addYears(Date, int) - Method in class com.frostdeveloper.api.FrostAPI
-
Adds a number of years to a date returning a new object.
- getExtension(String, boolean) - Method in class com.frostdeveloper.api.FrostAPI
-
A method used to get the file extension from a string representation of a file path.
- getExtension(String) - Method in class com.frostdeveloper.api.FrostAPI
-
A method used to get the file extension from a string representation of a file path
- getExtension(File, boolean) - Method in class com.frostdeveloper.api.FrostAPI
-
A method used to get the file extension from a file path, Additionally define whether
the extension should contain its '.' character.
- getExtension(File) - Method in class com.frostdeveloper.api.FrostAPI
-
A method used to get the file extension from a file path
- getExtension(Path, boolean) - Method in class com.frostdeveloper.api.FrostAPI
-
A method used to get the file extension from a file path, Additionally define whether
the extension should contain its '.' character.
- getExtension(Path) - Method in class com.frostdeveloper.api.FrostAPI
-
A method used to get the file extension from a file path
- getInstance() - Static method in class com.frostdeveloper.api.FrostAPI
-
A method used to return an instance of this api class
- getLevenshteinDistance(String, String) - Method in class com.frostdeveloper.api.FrostAPI
-
A method used to return the LevenshteinDistance between two string, this method will
return and integer that tells you how much of a difference there is between two strings.
- getProperty(String) - Method in class com.frostdeveloper.api.core.Properties
-
A method used to search for a specific property key inside our property list, If the
key is not found, this method will return null
- getProperty(String, Object) - Method in class com.frostdeveloper.api.core.Properties
-
A method used to search for a specific property key inside our property list, If the
key is not found, this method will return the specified default property value.
- getToday() - Method in class com.frostdeveloper.api.FrostAPI
-
A method used to return the current time
- getTodayAsString() - Method in class com.frostdeveloper.api.FrostAPI
-
A method used to return the current date and time as a string
- getTodayAsString(String) - Method in class com.frostdeveloper.api.FrostAPI
-
A method used to return the current date and time as a string
- toBoolean(Object) - Method in class com.frostdeveloper.api.FrostAPI
-
A method used to return an object as a boolean
- toDay(Object) - Method in class com.frostdeveloper.api.FrostAPI
-
A method used in a runnable.
- toDouble(Object) - Method in class com.frostdeveloper.api.FrostAPI
-
A method used to return an object as a double
- toFile(String) - Method in class com.frostdeveloper.api.FrostAPI
-
A method used to create a file object from a string path.
- toFile(Path) - Method in class com.frostdeveloper.api.FrostAPI
-
A method used to create a file object from a path.
- toFile(File, String) - Method in class com.frostdeveloper.api.FrostAPI
-
A method used to create a file object from a string path.
- toHour(Object) - Method in class com.frostdeveloper.api.FrostAPI
-
A method used in a runnable.
- toInteger(Object) - Method in class com.frostdeveloper.api.FrostAPI
-
A method used to return an object as an integer
- toLocale(String) - Method in class com.frostdeveloper.api.FrostAPI
-
A method used to convert a string into a usable locale, this method pairs with the
Apache Commons library to convert the string.
- toMinute(Object) - Method in class com.frostdeveloper.api.FrostAPI
-
A method used in a runnable.
- toSecond(Object) - Method in class com.frostdeveloper.api.FrostAPI
-
A method used in a runnable.
- toString(Object) - Method in class com.frostdeveloper.api.FrostAPI
-
A method used to return an object as a string
- toString() - Method in enum com.frostdeveloper.api.utility.ConsoleColor
-
A method used to get the color code for a console color