This base class represents the API for all ranges in the Cloud Bigtable client. Please note
this mutable type. It's intended to support fluent DSLs.For example:
// A Range that encloses all stringsByteStringRange.unbounded();// Range that includes all strings including "begin" up until "end"ByteStringRange.unbounded().of("start","end");// Create a Bytestring range with an unbounded start and the inclusive end "end"ByteStringRange.unbounded().endClosed("end");// Ranges are mutable, so take care to clone them to get a new instanceByteStringRanger1=ByteStringRange.of("a","z");ByteStringRanger2=r1.clone().endUnbounded();
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-18 UTC."],[],[]]