Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Handle remaining data types #2

Open
bstoots opened this issue Oct 6, 2017 · 0 comments
Open

Handle remaining data types #2

bstoots opened this issue Oct 6, 2017 · 0 comments

Comments

@bstoots
Copy link
Owner

bstoots commented Oct 6, 2017

Our current type mapping implementation looks similar to this:

WOX Java C# PHP
byte byte/java.lang.Byte sbyte (System.SByte) TODO
short short/java.lang.Short short (System.Int16) TODO
int int/java.lang.Integer int (System.Int32) integer
long long/java.lang.Long long (System.Int64) TODO
float float/java.lang.Float float (System.Single) double
double double/java.lang.Double double (System.Double) double
char char/java.lang.Character char (System.Char) TODO
boolean boolean/java.lang.Boolean bool (System.Bool) boolean
string java.lang.String string (System.String) string
object java.lang.Object object (System.Object) TODO
array any Array any Array array
list java.util.ArrayList System.Collections.ArrayList TODO
map java.util.HashMap System.Collections.Hashtable TODO
class java.lang.Class System.Type TODO

This should be expanded to provide representations for all standard WOX types.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant