Parse functions

String-to-primitive parsing functions from io.deephaven.function.Parse.

TypeNameSignatureDescription
FUNCTIONparseBooleanBoolean(String)Parses the string argument as a boolean.
FUNCTIONparseBytebyte(String)Parses the string argument as a byte.
FUNCTIONparseBytebyte(String, int)Parses the string argument as a byte.
FUNCTIONparseDoubledouble(String)Parses the string argument as a double.
FUNCTIONparseFloatfloat(String)Parses the string argument as a float.
FUNCTIONparseIntint(String)Parses the string argument as an int.
FUNCTIONparseIntint(String, int)Parses the string argument as an int.
FUNCTIONparseLonglong(String)Parses the string argument as a long.
FUNCTIONparseLonglong(String, int)Parses the string argument as a long.
FUNCTIONparseShortshort(String)Parses the string argument as a short.
FUNCTIONparseShortshort(String, int)Parses the string argument as a short.
FUNCTIONparseUnsignedIntint(String)Parses the string argument as an unsigned int.
FUNCTIONparseUnsignedIntint(String, int)Parses the string argument as an unsigned int.
FUNCTIONparseUnsignedLonglong(String)Parses the string argument as an unsigned long.
FUNCTIONparseUnsignedLonglong(String, int)Parses the string argument as an unsigned long.