mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-20 06:00:44 +00:00
Add byte[] as a type that we can getAsString
This commit is contained in:
@ -69,6 +69,10 @@ public class ValueUtils
|
||||
{
|
||||
return (s);
|
||||
}
|
||||
else if(value instanceof byte[] ba)
|
||||
{
|
||||
return (new String(ba));
|
||||
}
|
||||
else
|
||||
{
|
||||
return (String.valueOf(value));
|
||||
|
Reference in New Issue
Block a user