protected static enum LocaleFilter.FilterType extends Enum<LocaleFilter.FilterType>
| Enum Constant and Description |
|---|
Any
The filter allows any locale.
|
None
The filter allows no locale.
|
| Modifier and Type | Method and Description |
|---|---|
static LocaleFilter.FilterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LocaleFilter.FilterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LocaleFilter.FilterType None
public static final LocaleFilter.FilterType Any
public static LocaleFilter.FilterType[] values()
for (LocaleFilter.FilterType c : LocaleFilter.FilterType.values()) System.out.println(c);
public static LocaleFilter.FilterType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2022. All rights reserved.