Examples of PascalNameFilter


Examples of com.alibaba.fastjson.serializer.PascalNameFilter

public class PascalNameFilterTest extends TestCase {

    public void test_0() throws Exception {
        JSONSerializer serializer = new JSONSerializer();
        serializer.getNameFilters().add(new PascalNameFilter());
       
        VO vo = new VO();
        vo.setId(123);
        vo.setName("wenshao");
       
View Full Code Here

Examples of com.alibaba.fastjson.serializer.PascalNameFilter

public class PascalNameFilterTest extends TestCase {

    public void test_0() throws Exception {
        JSONSerializer serializer = new JSONSerializer();
        serializer.getNameFilters().add(new PascalNameFilter());
       
        VO vo = new VO();
        vo.setId(123);
        vo.setName("wenshao");
       
View Full Code Here

Examples of com.alibaba.fastjson.serializer.PascalNameFilter

public class PascalNameFilterTest_1 extends TestCase {

    public void test_0() throws Exception {
        JSONSerializer serializer = new JSONSerializer();
        serializer.getNameFilters().add(new PascalNameFilter());

        Map<String, Object> vo = new LinkedHashMap<String, Object>();
        vo.put("", 123);
        vo.put(null, "wenshao");
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.