Package tech.tablesaw.filtering
Interface StringFilterSpec<T>
-
- All Superinterfaces:
FilterSpec<T>
- All Known Subinterfaces:
DictionaryMap,StringData,StringFilters
- All Known Implementing Classes:
ByteDictionaryMap,DeferredStringColumn,IntDictionaryMap,NullDictionaryMap,ShortDictionaryMap,StringColumn,TextualStringData
@Beta public interface StringFilterSpec<T> extends FilterSpec<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TcontainsString(String string)TendsWith(String string)TequalsIgnoreCase(Column<String> other)TisAlpha()TisAlphaNumeric()TisEmptyString()TisEqualTo(String string)TisEqualTo(Column<String> other)TisIn(String... strings)TisIn(Collection<String> strings)TisLongerThan(int stringLength)TisLowerCase()TisNotEqualTo(String string)TisNotEqualTo(Column<String> other)TisNotIn(String... strings)TisNotIn(Collection<String> strings)TisNumeric()TisShorterThan(int stringLength)TisUpperCase()TlengthEquals(int stringLength)TmatchesRegex(String string)TstartsWith(String string)TstartsWith(Column<String> other)-
Methods inherited from interface tech.tablesaw.filtering.FilterSpec
isMissing, isNotMissing
-
-
-
-
Method Detail
-
isEmptyString
T isEmptyString()
-
isAlpha
T isAlpha()
-
isNumeric
T isNumeric()
-
isAlphaNumeric
T isAlphaNumeric()
-
isUpperCase
T isUpperCase()
-
isLowerCase
T isLowerCase()
-
lengthEquals
T lengthEquals(int stringLength)
-
isShorterThan
T isShorterThan(int stringLength)
-
isLongerThan
T isLongerThan(int stringLength)
-
isIn
T isIn(Collection<String> strings)
-
isNotIn
T isNotIn(Collection<String> strings)
-
-