public static enum RequestMessage.ResultsMode extends Enum<RequestMessage.ResultsMode>
Enum Constant and Description |
---|
EITHER |
RESULTSET |
UPDATECOUNT |
Modifier and Type | Method and Description |
---|---|
static RequestMessage.ResultsMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RequestMessage.ResultsMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequestMessage.ResultsMode RESULTSET
public static final RequestMessage.ResultsMode UPDATECOUNT
public static final RequestMessage.ResultsMode EITHER
public static RequestMessage.ResultsMode[] values()
for (RequestMessage.ResultsMode c : RequestMessage.ResultsMode.values()) System.out.println(c);
public static RequestMessage.ResultsMode 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.