public enum ShortFilmAttribute extends Enum<ShortFilmAttribute>
| Enum Constant and Description |
|---|
ALL |
ARTIST |
DESCRIPTION |
GENRE |
RATING |
SHORT_FILM |
| Modifier and Type | Method and Description |
|---|---|
String |
getParameterValue() |
static ShortFilmAttribute |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ShortFilmAttribute[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ShortFilmAttribute ALL
public static final ShortFilmAttribute GENRE
public static final ShortFilmAttribute ARTIST
public static final ShortFilmAttribute RATING
public static final ShortFilmAttribute SHORT_FILM
public static final ShortFilmAttribute DESCRIPTION
public static ShortFilmAttribute[] values()
for (ShortFilmAttribute c : ShortFilmAttribute.values()) System.out.println(c);
public static ShortFilmAttribute 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 getParameterValue()
Copyright © 2018. All rights reserved.