public enum Field extends Enum<Field>
| Enum Constant and Description |
|---|
AUTHOR |
CATEGORY |
DESCRIPTION |
IMAGE |
LINK |
NAME |
TIME |
| Modifier and Type | Method and Description |
|---|---|
char |
getC() |
static Field[] |
getFeedFields() |
static Field[] |
getItemFields() |
static Field |
valueOf(char c) |
static Field |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Field[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Field NAME
public static final Field IMAGE
public static final Field DESCRIPTION
public static final Field AUTHOR
public static final Field TIME
public static final Field LINK
public static final Field CATEGORY
public static Field[] values()
for (Field c : Field.values()) System.out.println(c);
public static Field 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 char getC()
public static Field valueOf(char c)
public static Field[] getFeedFields()
public static Field[] getItemFields()
Copyright © 2008–2013 CodeLutin. All rights reserved.