public enum SearchMode extends Enum<SearchMode>
RadioBrowser.listStationsBy(Paging,
SearchMode, String, ListParameter...)| Enum Constant and Description |
|---|
bycodec
Search by codec.
|
bycodecexact
Search by exact codec.
|
bycountry
Search by country.
|
bycountryexact
Search by exact country.
|
byid
Search by ID.
|
bylanguage
Search by language.
|
bylanguageexact
Search by exact language.
|
byname
Search by name.
|
bynameexact
Search by exact name.
|
bystate
Search by state.
|
bystateexact
Search by exact state.
|
bytag
Search by tag.
|
bytagexact
Search by exact tag.
|
| Modifier and Type | Method and Description |
|---|---|
static SearchMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SearchMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchMode byid
public static final SearchMode byname
public static final SearchMode bynameexact
public static final SearchMode bycodec
public static final SearchMode bycodecexact
public static final SearchMode bycountry
public static final SearchMode bycountryexact
public static final SearchMode bystate
public static final SearchMode bystateexact
public static final SearchMode bylanguage
public static final SearchMode bylanguageexact
public static final SearchMode bytag
public static final SearchMode bytagexact
public static SearchMode[] values()
for (SearchMode c : SearchMode.values()) System.out.println(c);
public static SearchMode 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 © 2017. All rights reserved.