Java Question return byte() from external library

stefanobusetto

Active Member
Licensed User
Longtime User
hi,
i've written an external library following the good examples i've found in the documentation section
how can i return a byte() from an external function?

instead of :
public class ...
{ public String do_something ( String s )
{ return "stefano" ;
}

i need something like :
public class ...
{ public byte() do_something ( String s )
{ return ??? ;
}

is it possible?
which is the corresponding java data type for b4a byte()
very tanks
 
Top