Package com.alibaba.fastjson.support.odps.udf

Examples of com.alibaba.fastjson.support.odps.udf.JSONContains


import com.alibaba.fastjson.support.odps.udf.JSONContains;

public class JSONContains_Test extends TestCase {

    public void test_contians() throws Exception {
        JSONContains udf = new JSONContains();
        Assert.assertTrue(udf.evaluate("{\"name\":\"123\"}", "$.name"));
        Assert.assertFalse(udf.evaluate("{\"name\":\"123\"}", "$.value"));
    }
View Full Code Here

TOP

Related Classes of com.alibaba.fastjson.support.odps.udf.JSONContains

Copyright © 2018 www.massapicom. 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.