io.virtdata.libbasics.shared.from_string.to_unset.UnsetIfStringNe Maven / Gradle / Ivy
package io.virtdata.libbasics.shared.from_string.to_unset;
import io.virtdata.annotations.Categories;
import io.virtdata.annotations.Category;
import io.virtdata.annotations.ThreadSafeMapper;
import io.virtdata.api.VALUE;
import java.util.function.Function;
@Categories(Category.nulls)
@ThreadSafeMapper
public class UnsetIfStringNe implements Function {
private String compareto;
public UnsetIfStringNe(String compareto) {
this.compareto = compareto;
}
@Override
public Object apply(String s) {
if (s!=null && (!s.equals(compareto))) {
return VALUE.unset;
}
if (s!=null) {
return s;
}
throw new RuntimeException("This function is not able to take null values as input. If you need to do that, consider using NullIfNullOrEmpty()");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy