jueves, 9 de septiembre de 2021

Clase utilitaria DeString

  1. package util;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. public class DeString {
  5. public static Integer aInteger(String s) {
  6. Integer result = null;
  7. if (s != null) {
  8. try {
  9. result = Integer.valueOf(s);
  10. } catch (NumberFormatException e) {
  11. }
  12. }
  13. return result;
  14. }
  15. public static Double aDouble(String s) {
  16. Double result = null;
  17. if (s != null) {
  18. try {
  19. result = Double.valueOf(s);
  20. } catch (NumberFormatException e) {
  21. }
  22. }
  23. return result;
  24. }
  25. public static List<Integer> ids(String _ids) {
  26. List<Integer> list = new ArrayList<>();
  27. if (_ids != null) {
  28. String[] v_ids = _ids.split(",");
  29. for (String v_id : v_ids) {
  30. Integer id = aInteger(v_id);
  31. if (id != null) {
  32. list.add(id);
  33. } else {
  34. list = null;
  35. break;
  36. }
  37. }
  38. }
  39. return list;
  40. }
  41. /*Listas*/
  42. public static Integer[] aIntegerL(String[] s) {
  43. Integer[] result = null;
  44. if ((s != null) && (s.length > 0)) {
  45. result = new Integer[s.length];
  46. for (int i = 0; i < result.length; i++) {
  47. try {
  48. result[i] = Integer.valueOf(s[i]);
  49. } catch (NumberFormatException ex) {
  50. result = null;
  51. break;
  52. }
  53. }
  54. }
  55. return result;
  56. }
  57. public static Double[] aDoubleL(String[] s) {
  58. Double[] result = null;
  59. if ((s != null) && (s.length > 0)) {
  60. result = new Double[s.length];
  61. for (int i = 0; i < result.length; i++) {
  62. try {
  63. result[i] = Double.valueOf(s[i]);
  64. } catch (NumberFormatException ex) {
  65. result = null;
  66. break;
  67. }
  68. }
  69. }
  70. return result;
  71. }
  72. }