Package com.rpl.rama
Interface SortedRangeOptions
- All Known Subinterfaces:
SortedRangeOptions.Impl
- All Known Implementing Classes:
SortedRangeOptions.CapturedSortedRangeOptions
public interface SortedRangeOptions
Interface for declaring options for
Path.sortedMapRange(java.lang.Object, java.lang.Object) or Path.sortedSetRange(java.lang.Object, java.lang.Object).- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic classstatic interface -
Method Summary
Static MethodsModifier and TypeMethodDescriptionstatic SortedRangeOptions.Implcreate()Creates an empty SortedRangeOptions.static SortedRangeOptions.ImplExcludes the start key from the results (by default it's included).static SortedRangeOptions.ImplIncludes the end key in the results (by default it's excluded).
-
Method Details
-
create
Creates an empty SortedRangeOptions.SortedRangeOptions.excludeStart()is the same asSortedRangeOptions.create().excludeStart() -
excludeStart
Excludes the start key from the results (by default it's included). -
includeEnd
Includes the end key in the results (by default it's excluded).
-