public interface Album extends DynamicObject<Album> { @Key(":artist") String getArtist(); @Key(":album") String getAlbum(); @Key(":tracks") int getTracks(); @Key(":year") int getYear(); }
String edn = "{:artist \"Meshuggah\", :album \"Chaosphere\", :tracks 8, :year 1998}"; Album album = DynamicObject.deserialize(edn, Album.class); album.getArtist(); // => "Meshuggah"
I realize that none of these data languages will have the same extent of support and tooling as JSON or XML, but I want to ensure that dynamic-object's supported data languages all have attentive stewardship and bright futures. It's distressing that a lot of the issues with Edn and Fressian have not gotten much traction. Are these languages still actively being supported and fostered? If so, how much development activity is taking place on internal forks? Are any public updates planned for these languages any time soon?
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clo...@googlegroups.com
Note that posts from new members are moderated - please be patient with your first post.
To unsubscribe from this group, send email to
clojure+u...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
---
You received this message because you are subscribed to the Google Groups "Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email to clojure+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.