Package org.apache.solr.cluster.api
Interface HashRange
- 
 @Deprecated public interface HashRange Deprecated.A range of hash that is stored in a shard
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default booleanincludes(int hash)Deprecated.Check if a given hash falls in this rangedefault booleanisSubset(HashRange subset)Deprecated.Check if another range is a subset of this rangeintmax()Deprecated.maximum value (inclusive)intmin()Deprecated.minimum value (inclusive)
 
- 
- 
- 
Method Detail- 
minint min() Deprecated.minimum value (inclusive)
 - 
maxint max() Deprecated.maximum value (inclusive)
 - 
includesdefault boolean includes(int hash) Deprecated.Check if a given hash falls in this range
 - 
isSubsetdefault boolean isSubset(HashRange subset) Deprecated.Check if another range is a subset of this range
 
- 
 
-