Package javassist
Class CtMethod.ConstParameter
- java.lang.Object
-
- javassist.CtMethod.ConstParameter
-
- Enclosing class:
- CtMethod
public static class CtMethod.ConstParameter extends java.lang.ObjectInstances of this class represent a constant parameter. They are used to specify the parameter given to the methods created byCtNewMethod.wrapped().
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CtMethod.ConstParameterinteger(int i)Makes an integer constant.static CtMethod.ConstParameterinteger(long i)Makes a long integer constant.static CtMethod.ConstParameterstring(java.lang.String s)Makes anStringconstant.
-
-
-
Method Detail
-
integer
public static CtMethod.ConstParameter integer(int i)
Makes an integer constant.- Parameters:
i- the constant value.
-
integer
public static CtMethod.ConstParameter integer(long i)
Makes a long integer constant.- Parameters:
i- the constant value.
-
string
public static CtMethod.ConstParameter string(java.lang.String s)
Makes anStringconstant.- Parameters:
s- the constant value.
-
-