public enum SMFTParsingStatus extends Enum<SMFTParsingStatus>
| Enum Constant and Description |
|---|
FAILURE
Parsing failed.
|
SUCCESS
Parsing succeeded.
|
| Modifier and Type | Method and Description |
|---|---|
static SMFTParsingStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SMFTParsingStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SMFTParsingStatus SUCCESS
public static final SMFTParsingStatus FAILURE
public static SMFTParsingStatus[] values()
for (SMFTParsingStatus c : SMFTParsingStatus.values()) System.out.println(c);
public static SMFTParsingStatus 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 © 2017 <code@io7m.com> http://io7m.com