Package org.hibernate.search.util
Class StringHelper
java.lang.Object
org.hibernate.search.util.StringHelper
Deprecated.
Will be removed without replacement.
Inspired from
org.hibernate.util.StringHelper, but removing
most methods as they are not needed for Hibernate Search.- Author:
- Emmanuel Bernard, Sanne Grinovero
-
Method Summary
Modifier and TypeMethodDescriptionstatic booleanDeprecated.static booleanisNotEmpty(String string) Deprecated.static StringDeprecated.Joins the elements of the given iterable to a string, separated by the given separator string.static StringDeprecated.Joins the elements of the given array to a string, separated by the given separator string.static StringDeprecated.Joins the elements of the given iterator to a string, separated by the given separator string.static StringDeprecated.
-
Method Details
-
isNotEmpty
Deprecated. -
isEmpty
Deprecated. -
qualify
Deprecated. -
join
Deprecated.Joins the elements of the given array to a string, separated by the given separator string.- Parameters:
array- the array to joinseparator- the separator string- Returns:
- a string made up of the string representations of the given array's members, separated by the given separator string
-
join
Deprecated.Joins the elements of the given iterable to a string, separated by the given separator string.- Parameters:
iterable- the iterable to joinseparator- the separator string- Returns:
- a string made up of the string representations of the given iterable members, separated by the given separator string
-
join
Deprecated.Joins the elements of the given iterator to a string, separated by the given separator string.- Parameters:
iterator- the iterator to joinseparator- the separator string- Returns:
- a string made up of the string representations of the given iterator members, separated by the given separator string
-