public static enum RunCommand.Response extends Enum<RunCommand.Response>
| Enum Constant and Description |
|---|
arbiterOnly |
hosts |
ismaster |
primary |
secondary |
setName |
| Modifier and Type | Method and Description |
|---|---|
static RunCommand.Response |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RunCommand.Response[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RunCommand.Response primary
public static final RunCommand.Response secondary
public static final RunCommand.Response arbiterOnly
public static final RunCommand.Response ismaster
public static final RunCommand.Response hosts
public static final RunCommand.Response setName
public static RunCommand.Response[] values()
for (RunCommand.Response c : RunCommand.Response.values()) System.out.println(c);
public static RunCommand.Response 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 © 2018. All rights reserved.