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.
|
io.vertx.codegen.type |
Modifier and Type | Class and Description |
---|---|
class |
CamelCase |
class |
KebabCase |
class |
LowerCamelCase |
class |
QualifiedCase |
class |
SnakeCase |
Modifier and Type | Field and Description |
---|---|
static Case |
Case.CAMEL
Camel case, for instance FooBar.
|
static Case |
Case.KEBAB
Kebab case, for instance foo-bar.
|
static Case |
Case.LOWER_CAMEL
Camel case starting with a lower case, for instance fooBar.
|
static Case |
Case.QUALIFIED
Java full qualified case, for instance foo.bar
|
static Case |
Case.SNAKE
Snake case, for instance foo_bar.
|
Modifier and Type | Method and Description |
---|---|
static Map<String,Case> |
Case.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 |
---|---|
String |
ParamInfo.getName(Case _case) |
String |
MethodInfo.getName(Case _case) |
String |
ModuleInfo.getName(Case _case) |
String |
Case.to(Case dest,
String name)
Convert a name from this case to the dest case
|
Modifier and Type | Method and Description |
---|---|
String |
ClassTypeInfo.getSimpleName(Case _case) |
Copyright © 2017. All rights reserved.