public static enum Document.Status extends Enum<Document.Status>
| Modifier and Type | Field and Description |
|---|---|
short |
code |
| Modifier and Type | Method and Description |
|---|---|
static Document.Status |
fromCode(int code) |
static Document.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Document.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Document.Status PARSED
public static final Document.Status INDEXED
public static final Document.Status DONE
public static Document.Status[] values()
for (Document.Status c : Document.Status.values()) System.out.println(c);
public static Document.Status 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 static Document.Status fromCode(int code)
Copyright © 2020–2022 ICIJ. All rights reserved.