public enum EParameterMode extends Enum<EParameterMode>
Enum Constant and Description |
---|
aslocator |
defaultValue |
in |
inout |
notSpecified |
out |
output |
readonly |
variadic |
Modifier and Type | Method and Description |
---|---|
static EParameterMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EParameterMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EParameterMode defaultValue
public static final EParameterMode in
public static final EParameterMode out
public static final EParameterMode inout
public static final EParameterMode output
public static final EParameterMode readonly
public static final EParameterMode aslocator
public static final EParameterMode variadic
public static final EParameterMode notSpecified
public static EParameterMode[] values()
for (EParameterMode c : EParameterMode.values()) System.out.println(c);
public static EParameterMode 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 © 2019. All rights reserved.