public enum PfnArgumentMode extends Enum<PfnArgumentMode>
| Enum Constant and Description |
|---|
EXPANDED_AND_TRIMMED_VALUES
The original template arguments will be collapsed as is done by
UNEXPANDED_VALUES.
|
TEMPLATE_ARGUMENTS
The original template arguments are left as is.
|
UNEXPANDED_VALUES
This is the normal mode.
|
| Modifier and Type | Method and Description |
|---|---|
static PfnArgumentMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PfnArgumentMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PfnArgumentMode UNEXPANDED_VALUES
public static final PfnArgumentMode EXPANDED_AND_TRIMMED_VALUES
public static final PfnArgumentMode TEMPLATE_ARGUMENTS
public static PfnArgumentMode[] values()
for (PfnArgumentMode c : PfnArgumentMode.values()) System.out.println(c);
public static PfnArgumentMode 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 © 2010–2018 University of Erlangen-Nürnberg - Open Source Research Group. All rights reserved.