public enum XMLFileStatus extends Enum<XMLFileStatus>
| Enum Constant and Description |
|---|
PROCESSED |
UNPROCESSED |
| Modifier and Type | Method and Description |
|---|---|
static XMLFileStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XMLFileStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XMLFileStatus PROCESSED
public static final XMLFileStatus UNPROCESSED
public static XMLFileStatus[] values()
for (XMLFileStatus c : XMLFileStatus.values()) System.out.println(c);
public static XMLFileStatus 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 © 2015 jkniv. All rights reserved.