Package me.datafox.dfxengine.text.utils
Class TextUtils
java.lang.Object
me.datafox.dfxengine.text.utils.TextUtils
Utilities for this module
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic boolean
The number is considered to be one if it is1
, or1.
followed by zero or more zeroes.static boolean
The number is considered to be zero if it is0
, or0.
followed by zero or more zeroes.static String
-
Constructor Details
-
TextUtils
public TextUtils()
-
-
Method Details
-
isZero
The number is considered to be zero if it is0
, or0.
followed by zero or more zeroes.- Parameters:
number
- number formatted as aString
- Returns:
true
if the number is zero
-
isOne
The number is considered to be one if it is1
, or1.
followed by zero or more zeroes.- Parameters:
number
- number formatted as aString
- Returns:
true
if the number is one
-
join
Joins aList
ofStrings
together using a delimiter and a last delimiter. For an empty list, this method returns an empty string. For a list with one element, that element is returned. For a list of two elements, the returned string iselement1 + lastDelimiter + element2
. For all other lists, the normal delimiter is used between all other elements, but the last delimiter is used between the second to last and the last elements. The most common delimiters are", "
and" and "
.
-