(String string)
| 493 | } |
| 494 | |
| 495 | public static boolean isInteger(String string) { |
| 496 | try { |
| 497 | Integer.parseInt(string); |
| 498 | return true; |
| 499 | } catch (Exception e) { |
| 500 | return false; |
| 501 | } |
| 502 | } |
| 503 | |
| 504 | public static SlotActionType stringToSlotActionType(String string) { |
| 505 | // converts a string to SlotActionType |