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

com.itranswarp.rdb.UpdateSetInfo Maven / Gradle / Ivy

package com.itranswarp.rdb;

class UpdateSetInfo {

    final String field;
    final Object value;

    public UpdateSetInfo(String field, Object value) {
        this.field = field;
        this.value = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy