public enum Relevancy extends Enum<Relevancy>
Enum Constant and Description |
---|
DEFAULT
The default option.
|
HIGH
The increased relevancy option.
|
NONE
The irrelevant option.
|
Modifier and Type | Method and Description |
---|---|
static Relevancy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Relevancy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Relevancy NONE
public static final Relevancy DEFAULT
public static final Relevancy HIGH
public static Relevancy[] values()
for (Relevancy c : Relevancy.values()) System.out.println(c);
public static Relevancy 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 © 2021 e-Spirit AG. All Rights Reserved. Build 5.2.210210