public static enum Message.Field extends Enum<Message.Field>
| Enum Constant and Description |
|---|
DATE |
DOC_ID |
INDEX_NAME |
R_ID |
TYPE |
VALUE |
| Modifier and Type | Method and Description |
|---|---|
static Message.Field |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Message.Field[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Message.Field TYPE
public static final Message.Field DATE
public static final Message.Field INDEX_NAME
public static final Message.Field DOC_ID
public static final Message.Field R_ID
public static final Message.Field VALUE
public static Message.Field[] values()
for (Message.Field c : Message.Field.values()) System.out.println(c);
public static Message.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 nullCopyright © 2020–2021 ICIJ. All rights reserved.