46474849505152535455
return true; if (value instanceof Blob == false) return false; Blob blob = (Blob) value; byte[] bytes = blob.getBytes(); int length = bytes.length; return length >= min && length <= max; }