public enum CompetitionSearchParameterLevel extends Enum<CompetitionSearchParameterLevel>
Java class for CompetitionSearchParameter.Level.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="CompetitionSearchParameter.Level">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="LOW"/>
<enumeration value="MEDIUM"/>
<enumeration value="HIGH"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
HIGH
High - competition rate (0.6667, 1.0000]
|
LOW
Low - competition rate [0.0000, 0.3333]
|
MEDIUM
Medium - competition rate (0.3333, 0.6667]
|
| Modifier and Type | Method and Description |
|---|---|
static CompetitionSearchParameterLevel |
fromValue(String v) |
String |
value() |
static CompetitionSearchParameterLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompetitionSearchParameterLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompetitionSearchParameterLevel LOW
public static final CompetitionSearchParameterLevel MEDIUM
public static final CompetitionSearchParameterLevel HIGH
public static CompetitionSearchParameterLevel[] values()
for (CompetitionSearchParameterLevel c : CompetitionSearchParameterLevel.values()) System.out.println(c);
public static CompetitionSearchParameterLevel 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 nullpublic String value()
public static CompetitionSearchParameterLevel fromValue(String v)
Copyright © 2023. All rights reserved.