Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@s1monw1
Created September 20, 2022 22:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save s1monw1/1450c085a41734e0f555bda9368bd77d to your computer and use it in GitHub Desktop.
Save s1monw1/1450c085a41734e0f555bda9368bd77d to your computer and use it in GitHub Desktop.
@NotNull
public static final String getParsableNumber(@NotNull String number) {
Intrinsics.checkParameterIsNotNull(number, "number");
return ParsableNumber.constructor_impl(number);
}
public static final void main() {
String parsableNumber = getParsableNumber("100.12212");
BigDecimal var1 = ParsableNumber.getParsed_impl(parsableNumber);
System.out.println(var1);
System.out.println(parsableNumber);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment