public enum DoxygenParameterType extends Enum<DoxygenParameterType>
Enum Constant and Description |
---|
BOOLEAN
An boolean value which is represented by 'YES'
and 'NO' in the doxygen configuration.
|
INTEGER
An integer values.
|
LITERAL
A value as-it.
|
STRING
A usual string value.
|
STRING_QUOTED
A quoted string means a string value which is quoted
by using dobule quotes.
|
Modifier and Type | Method and Description |
---|---|
static DoxygenParameterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DoxygenParameterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DoxygenParameterType LITERAL
public static final DoxygenParameterType STRING
public static final DoxygenParameterType STRING_QUOTED
public static final DoxygenParameterType INTEGER
public static final DoxygenParameterType BOOLEAN
public static DoxygenParameterType[] values()
for (DoxygenParameterType c : DoxygenParameterType.values()) System.out.println(c);
public static DoxygenParameterType 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–2016 SoftwareEntwicklung Beratung Schulung. All rights reserved.