public boolean toBoolean()

in modules/core/src/main/java/org/apache/fluo/recipes/core/types/TypedSnapshotBase.java [197:202]


    public boolean toBoolean(boolean defaultValue) {
      if (getBytes() == null) {
        return defaultValue;
      }
      return encoder.decodeBoolean(getBytes());
    }