Enum MethodArgMode
- java.lang.Object
-
- java.lang.Enum<MethodArgMode>
-
- org.uitnet.testing.smartfwk.common.MethodArgMode
-
- All Implemented Interfaces:
Serializable,Comparable<MethodArgMode>
public enum MethodArgMode extends Enum<MethodArgMode>
- Author:
- Madhav Krishna
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ININOUTOUTREF_CURSOR
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MethodArgModevalueOf(String name)Returns the enum constant of this type with the specified name.static MethodArgMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IN
public static final MethodArgMode IN
-
INOUT
public static final MethodArgMode INOUT
-
OUT
public static final MethodArgMode OUT
-
REF_CURSOR
public static final MethodArgMode REF_CURSOR
-
-
Method Detail
-
values
public static MethodArgMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MethodArgMode c : MethodArgMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MethodArgMode valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-