protected static enum OpenState.InternalState extends Enum<OpenState.InternalState>
| Enum Constant and Description |
|---|
FILE_OPEN_RESULT
Estado que indica que a tentativa de abertura do arquivo já foi feita.
|
INITIAL
O estado inicial.
|
RESULT_MESSAGE_WRITTEN
Estado que a mensagem de retorno ja foi escrita no buffer.
|
| Modifier and Type | Method and Description |
|---|---|
static OpenState.InternalState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OpenState.InternalState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OpenState.InternalState INITIAL
public static final OpenState.InternalState FILE_OPEN_RESULT
public static final OpenState.InternalState RESULT_MESSAGE_WRITTEN
public static OpenState.InternalState[] values()
for (OpenState.InternalState c : OpenState.InternalState.values()) System.out.println(c);
public static OpenState.InternalState 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 Tecgraf/PUC-Rio. All rights reserved.