public static enum EReplyMessage.ReplyStatus extends Enum<EReplyMessage.ReplyStatus>
| Enum Constant and Description |
|---|
ERROR
The request handling failed.
|
OK_CONTINUING
The request handling is successful, so far.
|
OK_FINAL
The request handling is successfully completed.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
isFinal()
Returns
true if this is a final reply and
false if more replies are expected. |
static EReplyMessage.ReplyStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EReplyMessage.ReplyStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EReplyMessage.ReplyStatus OK_FINAL
public static final EReplyMessage.ReplyStatus OK_CONTINUING
public static final EReplyMessage.ReplyStatus ERROR
public static EReplyMessage.ReplyStatus[] values()
for (EReplyMessage.ReplyStatus c : EReplyMessage.ReplyStatus.values()) System.out.println(c);
public static EReplyMessage.ReplyStatus 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 boolean isFinal()
true if this is a final reply and
false if more replies are expected.true if this is a final reply.Copyright © 2019. All rights reserved.