public enum ParameterModeType extends Enum<ParameterModeType>
| Enum Constant and Description |
|---|
in
In.
|
inOut
In/ out.
|
out
Out.
|
result
Return.
|
returnValue
Return.
|
unknown
Unknown.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static ParameterModeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParameterModeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParameterModeType unknown
public static final ParameterModeType in
public static final ParameterModeType inOut
public static final ParameterModeType out
public static final ParameterModeType returnValue
public static final ParameterModeType result
public static ParameterModeType[] values()
for (ParameterModeType c : ParameterModeType.values()) System.out.println(c);
public static ParameterModeType 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 toString()
toString in class Enum<ParameterModeType>Copyright © 2000-2024 Sualeh Fatehi. All rights reserved.