com.cherokeesoft.db.utils.update.DefineCondition Maven / Gradle / Ivy
package com.cherokeesoft.db.utils.update;
public class DefineCondition {
private final MapSerialisable mapSerialisable;
public DefineCondition(MapSerialisable mapSerialisable) {
this.mapSerialisable = mapSerialisable;
}
public boolean defined(String name) {
return mapSerialisable.getRawMapRequest().containsKey(name);
}
}