
net.cassite.daf4j.UpdateEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of daf4j-api Show documentation
Show all versions of daf4j-api Show documentation
A library provides facade api for data accessing.
The newest version!
package net.cassite.daf4j;
/**
* 更新依据
*/
public class UpdateEntry {
/**
* 要更新的字段
*/
public final IData> data;
/**
* 要更新为的值(可以是表达式)
*/
public final Object updateValue;
UpdateEntry(IData> data, Object updateValue) {
this.data = data;
this.updateValue = updateValue;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy