Package com.github.jsonj

Examples of com.github.jsonj.JsonPrimitive.asInt()


public class JsonBuilderTest {
    public void shouldConstructInteger() {
        JsonPrimitive p1 = primitive(1234);
        double d1 = p1.asDouble();
        JsonPrimitive p2 = primitive(d1);
        Assert.assertEquals(1234, p2.asInt());
    }

    @SuppressWarnings({ "rawtypes", "unchecked" })
    public void shouldConvertCollectionToJsonElement() {
        Map m = new HashMap();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.