class documentation

class ComparisonType(enum.IntEnum): (source)

View In Hierarchy

Key comparison mode for the Client.get operation.

Constant CEILING Lowest key >= the supplied key.
Constant EQUAL Exact match on the key.
Constant FLOOR Highest key <= the supplied key.
Constant HIGHER Lowest key strictly > the supplied key.
Constant LOWER Highest key strictly < the supplied key.

Lowest key >= the supplied key.

Value
int(pb.KeyComparisonType.CEILING)

Exact match on the key.

Value
int(pb.KeyComparisonType.EQUAL)

Highest key <= the supplied key.

Value
int(pb.KeyComparisonType.FLOOR)

Lowest key strictly > the supplied key.

Value
int(pb.KeyComparisonType.HIGHER)

Highest key strictly < the supplied key.

Value
int(pb.KeyComparisonType.LOWER)