public static enum UnarySystemFunction.Strategy extends Enum<UnarySystemFunction.Strategy>
UnarySystemFunction.| Enum Constant and Description |
|---|
GET_ENV
Retrieves environment variables
|
GET_SYSTEM_PROPERTY
Retrieves system properties
|
| Modifier and Type | Method and Description |
|---|---|
static UnarySystemFunction.Strategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnarySystemFunction.Strategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnarySystemFunction.Strategy GET_ENV
public static final UnarySystemFunction.Strategy GET_SYSTEM_PROPERTY
public static UnarySystemFunction.Strategy[] values()
for (UnarySystemFunction.Strategy c : UnarySystemFunction.Strategy.values()) System.out.println(c);
public static UnarySystemFunction.Strategy 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 © 2023. All rights reserved.