public enum SystemProperty extends Enum<SystemProperty>
| Enum Constant and Description |
|---|
TARGET |
| Modifier and Type | Method and Description |
|---|---|
abstract String |
getDefaultValue() |
abstract String |
getKey() |
String |
getValue(Properties properties) |
static SystemProperty |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SystemProperty[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SystemProperty TARGET
public static SystemProperty[] values()
for (SystemProperty c : SystemProperty.values()) System.out.println(c);
public static SystemProperty 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 getValue(Properties properties)
public abstract String getKey()
public abstract String getDefaultValue()
Copyright © 2017. All rights reserved.