in modules/core/src/main/java/org/apache/fluo/recipes/core/types/TypedSnapshotBase.java [126:131]
public int toInteger(int defaultValue) {
if (getBytes() == null) {
return defaultValue;
}
return encoder.decodeInteger(getBytes());
}