public enum CliOption extends Enum<CliOption>
| Enum Constant and Description |
|---|
LOCATIONS |
LOG_LEVEL |
PASSWORD |
URL |
USERNAME |
| Modifier and Type | Method and Description |
|---|---|
String |
getCliOption() |
static CliOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CliOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CliOption USERNAME
public static final CliOption PASSWORD
public static final CliOption URL
public static final CliOption LOCATIONS
public static final CliOption LOG_LEVEL
public static CliOption[] values()
for (CliOption c : CliOption.values()) System.out.println(c);
public static CliOption 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 String getCliOption()
Copyright © 2016–2017. All rights reserved.