public enum Tags extends Enum<Tags>
| Enum Constant and Description |
|---|
ACCEPTANCE |
DELETED |
PUBLISHED |
| Modifier and Type | Method and Description |
|---|---|
String |
getTag() |
static Tags |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Tags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Tags ACCEPTANCE
public static final Tags PUBLISHED
public static final Tags DELETED
public static Tags[] values()
for (Tags c : Tags.values()) System.out.println(c);
public static Tags 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 getTag()
Copyright © 2013–2019 Europeana Cloud Development Team. All rights reserved.