Package com.alibaba.fastjson.serializer

Examples of com.alibaba.fastjson.serializer.PropertyPreFilter


    public void test_0() throws Exception {
        class VO {
            public int getId() { throw new RuntimeException(); }
        }

        PropertyPreFilter filter = new PropertyPreFilter () {
            public boolean apply(JSONSerializer serializer, Object source, String name) {
                return false;
            }
        };
View Full Code Here

TOP

Related Classes of com.alibaba.fastjson.serializer.PropertyPreFilter

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.