aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/enums/FeedSort.kt
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-08-19 21:12:02 -0700
committerAllan Wang <me@allanwang.ca>2017-08-19 21:12:02 -0700
commit8c178bd82d75ef237c97863fae555ca0346e7352 (patch)
tree0d532c6ed127110d1bf66d4522f008419c900b44 /app/src/main/kotlin/com/pitchedapps/frost/enums/FeedSort.kt
parent1240e2663413b56c5b97c8ff40cb5c1bdc2df23b (diff)
downloadfrost-8c178bd82d75ef237c97863fae555ca0346e7352.tar.gz
frost-8c178bd82d75ef237c97863fae555ca0346e7352.tar.bz2
frost-8c178bd82d75ef237c97863fae555ca0346e7352.zip
Refactor enums and optimize imports
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/enums/FeedSort.kt')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/enums/FeedSort.kt18
1 files changed, 18 insertions, 0 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/enums/FeedSort.kt b/app/src/main/kotlin/com/pitchedapps/frost/enums/FeedSort.kt
new file mode 100644
index 00000000..65b3c101
--- /dev/null
+++ b/app/src/main/kotlin/com/pitchedapps/frost/enums/FeedSort.kt
@@ -0,0 +1,18 @@
+package com.pitchedapps.frost.enums
+
+import android.support.annotation.StringRes
+import com.pitchedapps.frost.R
+
+/**
+ * Created by Allan Wang on 2017-06-23.
+ */
+enum class FeedSort(@StringRes val textRes: Int) {
+ DEFAULT(R.string.kau_default),
+ MOST_RECENT(R.string.most_recent),
+ TOP(R.string.top_stories);
+
+ companion object {
+ val values = values() //save one instance
+ operator fun invoke(index: Int) = values[index]
+ }
+} \ No newline at end of file