public enum NoAnswer extends Enum<NoAnswer> implements Answer
| Enum Constant and Description |
|---|
INSTANCE |
| Modifier and Type | Method and Description |
|---|---|
char |
charAt(int index) |
int |
length() |
void |
reply(ProcessExecution execution)
Reply to the current process execution with the answer
|
CharSequence |
subSequence(int start,
int end) |
String |
toString() |
static NoAnswer |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NoAnswer[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NoAnswer INSTANCE
public static NoAnswer[] values()
for (NoAnswer c : NoAnswer.values()) System.out.println(c);
public static NoAnswer 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 length()
length in interface CharSequencepublic char charAt(int index)
charAt in interface CharSequencepublic CharSequence subSequence(int start, int end)
subSequence in interface CharSequencepublic void reply(ProcessExecution execution) throws IOException
Answerreply in interface AnswerIOExceptionCopyright © 2014 JBoss by Red Hat. All rights reserved.