JavaScript is disabled on your browser.
Overview
Package
Class
Use
Tree
Deprecated
Index
Help
Prev Letter
Next Letter
Frames
No Frames
All Classes
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
R
S
T
U
V
W
J
join(List<String>)
- Static method in class cn.trinea.android.common.util.
ListUtils
join list to string, separator is "," join(null) = ""; join({}) = ""; join({a,b}) = "a,b";
join(List<String>, char)
- Static method in class cn.trinea.android.common.util.
ListUtils
join list to string join(null, '#') = ""; join({}, '#') = ""; join({a,b,c}, ' ') = "abc"; join({a,b,c}, '#') = "a#b#c";
join(List<String>, String)
- Static method in class cn.trinea.android.common.util.
ListUtils
join list to string. if separator is null, use
ListUtils.DEFAULT_JOIN_SEPARATOR
join(null, "#") = ""; join({}, "#$") = ""; join({a,b,c}, null) = "a,b,c"; join({a,b,c}, "") = "abc"; join({a,b,c}, "#") = "a#b#c"; join({a,b,c}, "#$") = "a#$b#$c";
joinParas(Map<String, String>)
- Static method in class cn.trinea.android.common.util.
HttpUtils
join paras
joinParasWithEncodedValue(Map<String, String>)
- Static method in class cn.trinea.android.common.util.
HttpUtils
join paras with encoded value
JSONUtils
- Class in
cn.trinea.android.common.util
Json Utils
JSONUtils()
- Constructor for class cn.trinea.android.common.util.
JSONUtils
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
R
S
T
U
V
W
Overview
Package
Class
Use
Tree
Deprecated
Index
Help
Prev Letter
Next Letter
Frames
No Frames
All Classes