package com.github.jreddit.oauth.param; /** * Enumerator for the duration of tokens.
*
* There are two possible values: * */ public enum RedditDuration { PERMANENT("permanent"), TEMPORARY("temporary"); private final String value; RedditDuration(String value) { this.value = value; } public String value() { return this.value; } }