Merge branch 'test' into ext-dev

yun-zuoyi
nies 4 years ago
commit 3d4a0e0bb9

@ -5756,6 +5756,16 @@ public class WmsEnumUtil {
}
return tmp;
}
public static String valueOfDescription(int val) {
String tmp = null;
for (int i = 0; i < values().length; i++) {
if (values()[i].value == val) {
tmp = values()[i].description;
}
}
return tmp;
}
}
/**

Loading…
Cancel
Save