Package | Description |
---|---|
io.vertx.codegen |
= Vert.x Codegen
Vert.x Codegen is an annotation processing tool for processing Vert.x API and create API in different JVM lauguages.
|
Modifier and Type | Method and Description |
---|---|
MethodKind |
MethodInfo.getKind() |
static MethodKind |
MethodKind.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MethodKind[] |
MethodKind.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static Map<String,MethodKind> |
MethodKind.vars()
Useful for testing the method kind, allows to do method.kind == METHOD_HANDLER instead of method.kind.name() == "HANDLER"
|
Modifier and Type | Method and Description |
---|---|
protected MethodInfo |
ClassModel.createMethodInfo(Set<ClassTypeInfo> ownerTypes,
String methodName,
String comment,
Doc doc,
MethodKind kind,
TypeInfo returnType,
Text returnDescription,
boolean isFluent,
boolean isCacheReturn,
List<ParamInfo> mParams,
ExecutableElement methodElt,
boolean isStatic,
boolean isDefault,
ArrayList<TypeParamInfo.Method> typeParams,
TypeElement declaringElt) |
protected MethodInfo |
ProxyModel.createMethodInfo(Set<ClassTypeInfo> ownerTypes,
String methodName,
String comment,
Doc doc,
MethodKind kind,
TypeInfo returnType,
Text returnDescription,
boolean isFluent,
boolean isCacheReturn,
List<ParamInfo> mParams,
ExecutableElement methodElt,
boolean isStatic,
boolean isDefault,
ArrayList<TypeParamInfo.Method> typeParams,
TypeElement declaringElt) |
Constructor and Description |
---|
MethodInfo(Set<ClassTypeInfo> ownerTypes,
String name,
MethodKind kind,
TypeInfo returnType,
Text returnDescription,
boolean fluent,
boolean cacheReturn,
List<ParamInfo> params,
String comment,
Doc doc,
boolean staticMethod,
boolean defaultMethod,
List<TypeParamInfo.Method> typeParams) |
ProxyMethodInfo(Set<ClassTypeInfo> ownerTypes,
String name,
MethodKind kind,
TypeInfo returnType,
Text returnDescription,
boolean fluent,
boolean cacheReturn,
List<ParamInfo> params,
String comment,
Doc doc,
boolean staticMethod,
boolean defaultMethod,
List<TypeParamInfo.Method> typeParams,
boolean proxyIgnore,
boolean proxyClose) |
Copyright © 2017. All rights reserved.