MCPcopy Index your code
hub / github.com/Coderx-Gamer/ui-utils / isInteger

Method isInteger

src/main/java/com/ui_utils/MainClient.java:495–502  ·  view source on GitHub ↗
(String string)

Source from the content-addressed store, hash-verified

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

Callers 1

createWidgetsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected