Class ApiMethodArg
- java.lang.Object
-
- org.apache.camel.support.component.ApiMethodArg
-
public class ApiMethodArg extends Object
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ApiMethodArgarg(String name, Class<?> type)static ApiMethodArgarg(String name, Class<?> type, String typeArgs)static ApiMethodArgarg(String name, Class<?> type, String typeArgs, String description)StringgetDescription()StringgetName()StringgetRawTypeArgs()Class<?>getType()StringgetTypeArgs()StringtoString()
-
-
-
Method Detail
-
getName
public String getName()
-
getType
public Class<?> getType()
-
getTypeArgs
public String getTypeArgs()
-
getRawTypeArgs
public String getRawTypeArgs()
-
getDescription
public String getDescription()
-
arg
public static ApiMethodArg arg(String name, Class<?> type)
-
arg
public static ApiMethodArg arg(String name, Class<?> type, String typeArgs)
-
arg
public static ApiMethodArg arg(String name, Class<?> type, String typeArgs, String description)
-
-