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

com.github.datalking.beans.PropertyValues Maven / Gradle / Ivy

package com.github.datalking.beans;

/**
 * 多个属性值键值对操作 接口
 * 用于包装一个对象的多个PropertyValue
 *
 * @author yaoo on 4/3/18
 */
public interface PropertyValues {

    PropertyValue[] getPropertyValues();

    PropertyValue getPropertyValue(String propertyName);

    boolean contains(String propertyName);

    boolean isEmpty();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy