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

com.easy.query.api.proxy.key.ListMapKey Maven / Gradle / Ivy

There is a newer version: 2.0.106
Show newest version
package com.easy.query.api.proxy.key;

import com.easy.query.core.util.EasyObjectUtil;

import java.util.List;

/**
 * create time 2024/3/2 19:52
 * 文件说明
 *
 * @author xuejiaming
 */
public class ListMapKey implements MapKey> {
    private final String name;

    public ListMapKey(String name){

        this.name = name;
    }
    @Override
    public String getName() {
        return name;
    }

    @Override
    public Class> getPropType() {
        return EasyObjectUtil.typeCastNullable(List.class);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy