public enum ClientAppConfigType extends Enum<ClientAppConfigType>
| Enum Constant and Description |
|---|
CLI
Arguments are passed via the command line
|
ENV
Arguments are passed via environment variables
|
PROPERTIES
Arguments are passed via a properties file
|
| Modifier and Type | Method and Description |
|---|---|
static ClientAppConfigType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClientAppConfigType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClientAppConfigType PROPERTIES
public static final ClientAppConfigType CLI
public static final ClientAppConfigType ENV
public static ClientAppConfigType[] values()
for (ClientAppConfigType c : ClientAppConfigType.values()) System.out.println(c);
public static ClientAppConfigType 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 © 2013. All Rights Reserved.