All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mybaits.jpa.sql.split.impl.SqlMethodSplitNotIn Maven / Gradle / Ivy

There is a newer version: 1.8
Show newest version
package com.mybaits.jpa.sql.split.impl;

import com.mybaits.jpa.jpaEnum.KeyWord;
import com.mybaits.jpa.sql.split.ISqlMethodSplit;

import java.util.ArrayList;
import java.util.List;

/**
 * 处理jpa 方法名关键字
 * Created by Administrator on 2019/12/20 0020.
 */
public class SqlMethodSplitNotIn implements ISqlMethodSplit {

    @Override
    public List sqlMethodSplit(List attributes) {
        List cruxList=new ArrayList<>();
        for (String attribute : attributes) {
            if(attribute.indexOf(KeyWord.NotIn.getValue())==-1){
                cruxList.add(attribute);
                continue;
            }
            String[] cruxs=attribute.split(KeyWord.NotIn.getValue());
            if(cruxs.length>0){
                for (String s : cruxs) {
                    cruxList.add(s);
                    cruxList.add(KeyWord.NotIn.getValue());
                }
            }
        }
        return cruxList;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy