public interface IStringUtil
Define common String operations
- 導入されたバージョン:
- 1.0.0
- バージョン:
- 1.0.0
- 作成者:
- yui-KITAMURA
-
メソッドの概要
修飾子とタイプメソッド説明concat
(CharSequence... arg) concat
(Iterable<? extends CharSequence> arg) get joined stringconcatWithDelimiter
(CharSequence delimiter, CharSequence... arg) concatWithDelimiter
(CharSequence delimiter, Iterable<? extends CharSequence> arg) get joined string that each separated with delimiterboolean
test the two objects String value are equal.boolean
test the two strings are equal.boolean
test the two objects String value are equal in Case-sensitive.boolean
test the two strings are equal in Case-sensitive.boolean
Check the objects string representation is empty.boolean
Check the value is empty.nullToEmpty
(String value) if the value is null then return""
(Empty string)
-
メソッドの詳細
-
eq
test the two strings are equal.null
-safe -
eqCase
test the two strings are equal in Case-sensitive.null
-safe- 関連項目:
-
eq
test the two objects String value are equal.- パラメータ:
first
- first object to be string valuesecond
- second object to be string value- 戻り値:
- if two string value are same then
true
- 関連項目:
-
eqCase
test the two objects String value are equal in Case-sensitive.- パラメータ:
first
- first object to be string valuesecond
- second object to be string value- 戻り値:
- if two string value are same then
true
- 関連項目:
-
concat
get joined string- パラメータ:
arg
- any list or arrays to concat- 戻り値:
- single string value that joined all arguments
-
concat
- 関連項目:
-
concatWithDelimiter
get joined string that each separated with delimiter- パラメータ:
delimiter
- joint stringarg
- any list or arrays to concat- 戻り値:
- single string value that joined all arguments each separated with delimiter
-
concatWithDelimiter
-
isEmpty
Check the value is empty.- パラメータ:
value
- the value that you want to test- 戻り値:
- if
null
or length is 0 thentrue
, otherwisefalse
-
isEmpty
Check the objects string representation is empty.- パラメータ:
obj
- the object that you want to test- 戻り値:
true
when null or theObject.toString()
value is empty- 関連項目:
-
StringUtils.isEmpty(String)
-
nullToEmpty
if the value is null then return""
(Empty string)- パラメータ:
value
- the String object or null value- 戻り値:
- if the value is
null
then empty string(""
). Other case, same as original value
-