| Enum Constant and Description |
|---|
CONTEST |
CULTURE |
JOB |
NEWS |
SPORT |
STATEMENT |
| Modifier and Type | Method and Description |
|---|---|
static RssType |
valueOf(int rssTypeId) |
static RssType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RssType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RssType NEWS
public static final RssType CONTEST
public static final RssType CULTURE
public static final RssType JOB
public static final RssType SPORT
public static final RssType STATEMENT
public static RssType[] values()
for (RssType c : RssType.values()) System.out.println(c);
public static RssType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static RssType valueOf(int rssTypeId)