org.homeunix.thecave.buddi.i18n.keys
Enum PluginRangeFilters
java.lang.Object
java.lang.Enum<PluginRangeFilters>
org.homeunix.thecave.buddi.i18n.keys.PluginRangeFilters
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<PluginRangeFilters>
public enum PluginRangeFilters
- extends java.lang.Enum<PluginRangeFilters>
|
Method Summary |
static PluginRangeFilters |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static PluginRangeFilters[] |
values()
Returns an array containing the constants of this enum type, in
the order they're declared. |
| Methods inherited from class java.lang.Enum |
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
PLUGIN_FILTER_THIS_WEEK
public static final PluginRangeFilters PLUGIN_FILTER_THIS_WEEK
PLUGIN_FILTER_LAST_MONTH
public static final PluginRangeFilters PLUGIN_FILTER_LAST_MONTH
PLUGIN_FILTER_LAST_QUARTER
public static final PluginRangeFilters PLUGIN_FILTER_LAST_QUARTER
PLUGIN_FILTER_LAST_WEEK
public static final PluginRangeFilters PLUGIN_FILTER_LAST_WEEK
PLUGIN_FILTER_LAST_YEAR
public static final PluginRangeFilters PLUGIN_FILTER_LAST_YEAR
PLUGIN_FILTER_ONE_MONTH
public static final PluginRangeFilters PLUGIN_FILTER_ONE_MONTH
PLUGIN_FILTER_OTHER
public static final PluginRangeFilters PLUGIN_FILTER_OTHER
PLUGIN_FILTER_SIX_MONTHS
public static final PluginRangeFilters PLUGIN_FILTER_SIX_MONTHS
PLUGIN_FILTER_THIS_MONTH
public static final PluginRangeFilters PLUGIN_FILTER_THIS_MONTH
PLUGIN_FILTER_THIS_QUARTER
public static final PluginRangeFilters PLUGIN_FILTER_THIS_QUARTER
PLUGIN_FILTER_THIS_YEAR
public static final PluginRangeFilters PLUGIN_FILTER_THIS_YEAR
PLUGIN_FILTER_THIS_YEAR_TO_DATE
public static final PluginRangeFilters PLUGIN_FILTER_THIS_YEAR_TO_DATE
PLUGIN_FILTER_TODAY
public static final PluginRangeFilters PLUGIN_FILTER_TODAY
PLUGIN_FILTER_TWO_MONTHS
public static final PluginRangeFilters PLUGIN_FILTER_TWO_MONTHS
PLUGIN_FILTER_YEAR
public static final PluginRangeFilters PLUGIN_FILTER_YEAR
PLUGIN_FILTER_YESTERDAY
public static final PluginRangeFilters PLUGIN_FILTER_YESTERDAY
PLUGIN_FILTER_ONE_WEEK_AGO
public static final PluginRangeFilters PLUGIN_FILTER_ONE_WEEK_AGO
PLUGIN_FILTER_ONE_MONTH_AGO
public static final PluginRangeFilters PLUGIN_FILTER_ONE_MONTH_AGO
PLUGIN_FILTER_ONE_YEAR_AGO
public static final PluginRangeFilters PLUGIN_FILTER_ONE_YEAR_AGO
PLUGIN_FILTER_ONE_WEEK_FROM_NOW
public static final PluginRangeFilters PLUGIN_FILTER_ONE_WEEK_FROM_NOW
PLUGIN_FILTER_END_OF_NEXT_MONTH
public static final PluginRangeFilters PLUGIN_FILTER_END_OF_NEXT_MONTH
PLUGIN_FILTER_END_OF_THIS_YEAR
public static final PluginRangeFilters PLUGIN_FILTER_END_OF_THIS_YEAR
PLUGIN_FILTER_END_OF_NEXT_YEAR
public static final PluginRangeFilters PLUGIN_FILTER_END_OF_NEXT_YEAR
values
public static final PluginRangeFilters[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(PluginRangeFilters c : PluginRangeFilters.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static PluginRangeFilters valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name