Github user spmallette commented on the issue:
https://github.com/apache/tinkerpop/pull/842
> gx:InetAddress - I'm not sure what we can expect to get in @value here as
the example shows localhost
There's not much more to it than that. We use the standard Jackson
serializer to handle that and it pretty much does this:
```text
gremlin> i = InetAddress.getByName("java.sun.com")
==>java.sun.com/156.151.59.19
gremlin> mapper = GraphSONMapper.build().create().createMapper()
==>org.apache.tinkerpop.shaded.jackson.databind.ObjectMapper@76b224cd
gremlin> mapper.writeValueAsString(i)
==>"java.sun.com"
```
---