public static enum OutputFile.Success extends Enum<OutputFile.Success>
Modifier and Type | Field and Description |
---|---|
protected int |
errors |
Modifier and Type | Method and Description |
---|---|
int |
getErrors()
Retrieves the errors associated with the enumeration
|
static OutputFile.Success |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OutputFile.Success[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputFile.Success PASS
public static final OutputFile.Success FAIL
public static OutputFile.Success[] values()
for (OutputFile.Success c : OutputFile.Success.values()) System.out.println(c);
public static OutputFile.Success 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 int getErrors()
Copyright © 2017. All rights reserved.