aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
Diffstat (limited to 'main')
-rw-r--r--main/src/cgeo/geocaching/enumerations/CacheType.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/main/src/cgeo/geocaching/enumerations/CacheType.java b/main/src/cgeo/geocaching/enumerations/CacheType.java
index be66de1..730c989 100644
--- a/main/src/cgeo/geocaching/enumerations/CacheType.java
+++ b/main/src/cgeo/geocaching/enumerations/CacheType.java
@@ -31,7 +31,14 @@ public enum CacheType {
/** No real cache type -> filter */
ALL("all", "display all caches", "9a79e6ce-3344-409c-bbe9-496530baf758", R.string.all_types, R.drawable.type_unknown);
+ /**
+ * id field is used when for storing caches in the database.
+ */
public final String id;
+ /**
+ * human readable name of the cache type<br>
+ * used in web parsing as well as for gpx import/export.
+ */
public final String pattern;
public final String guid;
private final int stringId;