File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
stream-android-core/src/main/java/io/getstream/android/core Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 1515 */
1616package io.getstream.android.core.api.sort
1717
18+ import io.getstream.android.core.annotations.StreamPublishedApi
19+
1820/* *
1921 * The direction of a sort operation. This enum defines whether a sort should be performed in
2022 * ascending (forward) or descending (reverse) order. The raw values correspond to the values
2123 * expected by the remote API.
2224 */
25+ @StreamPublishedApi
2326public enum class SortDirection (public val value : Int ) {
2427 /* * Sort in ascending order (A to Z, 1 to 9, etc.). */
2528 FORWARD (1 ),
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ package io.getstream.android.core.api.sort
1717
1818import io.getstream.android.core.annotations.StreamInternalApi
1919import io.getstream.android.core.annotations.StreamPublishedApi
20- import io.getstream.android.core.internal.filter .SortFieldImpl
20+ import io.getstream.android.core.internal.sort .SortFieldImpl
2121
2222/* *
2323 * A protocol that defines a sortable field for a specific model type.
Original file line number Diff line number Diff line change 1313 * See the License for the specific language governing permissions and
1414 * limitations under the License.
1515 */
16- package io.getstream.android.core.internal.filter
16+ package io.getstream.android.core.internal.sort
1717
1818import io.getstream.android.core.api.sort.AnySortComparator
1919import io.getstream.android.core.api.sort.SortComparator
You can’t perform that action at this time.
0 commit comments