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