return null;
}
};
column = addColumnFunction(250, column, function, "Profile");
function = new FunctionInteger() {
@Override
public BigInteger apply(Object element) {
ProfileStatusDTO status = asProfileStatus(element);
if (status != null) {
return status.getCount();
}
return null;
}
};
column = addColumnFunction(bounds, column, function, "Count");
function = new FunctionInteger() {
@Override
public BigInteger apply(Object element) {
ProfileStatusDTO status = asProfileStatus(element);
if (status != null) {
return status.getMinimumInstances();
}
return null;
}
};
column = addColumnFunction(bounds, column, function, "Minumum");
function = new FunctionInteger() {
@Override
public BigInteger apply(Object element) {
ProfileStatusDTO status = asProfileStatus(element);
if (status != null) {
return status.getMaximumInstances();