Package org.apache.ibatis.submitted.enumtypehandler_on_map.PersonMapper

Examples of org.apache.ibatis.submitted.enumtypehandler_on_map.PersonMapper.TypeName


    }
    @Test
    public void testEnumWithoutParam() {
        SqlSession sqlSession = sqlSessionFactory.openSession();
        PersonMapper personMapper = sqlSession.getMapper(PersonMapper.class);
        List<Person> persons = personMapper.getByTypeNoParam(new TypeName() {
            public String getName() {
                return "";
            }
            public Type getType() {
                return Person.Type.PERSON;
View Full Code Here


    }
    @Test
    public void testEnumWithoutParam() {
        SqlSession sqlSession = sqlSessionFactory.openSession();
        PersonMapper personMapper = sqlSession.getMapper(PersonMapper.class);
        List<Person> persons = personMapper.getByTypeNoParam(new TypeName() {
            public String getName() {
                return "";
            }
            public Type getType() {
                return Person.Type.PERSON;
View Full Code Here

TOP

Related Classes of org.apache.ibatis.submitted.enumtypehandler_on_map.PersonMapper.TypeName

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.