public enum Category extends Enum<Category>
| Enum Constant and Description |
|---|
cinema |
internet |
literature |
music |
sports |
theater |
travels |
tv |
| Modifier and Type | Method and Description |
|---|---|
static Category |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Category[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Category music
public static final Category literature
public static final Category sports
public static final Category tv
public static final Category cinema
public static final Category internet
public static final Category travels
public static final Category theater
public static Category[] values()
for (Category c : Category.values()) System.out.println(c);
public static Category 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.