public enum Tag extends Enum<Tag>
Enum Constant and Description |
---|
academic |
clarity |
creative |
customer |
elegant |
jobapp |
objective |
picky |
professional |
Modifier and Type | Method and Description |
---|---|
static Tag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Tag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Tag picky
public static final Tag academic
public static final Tag clarity
public static final Tag professional
public static final Tag creative
public static final Tag customer
public static final Tag jobapp
public static final Tag objective
public static final Tag elegant
public static Tag[] values()
for (Tag c : Tag.values()) System.out.println(c);
public static Tag 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 null