Package | Description |
---|---|
io.vertx.codegen | |
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 formatting or parsing string, eg:CASE_CAMEL.format(CASE_SNAKE.parse("foo_bar")),it will return fooBar
|
Modifier and Type | Method and Description |
---|---|
String |
ModuleInfo.getName(Case _case) |
String |
MethodInfo.getName(Case _case) |
String |
ParamInfo.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 © 2022 Eclipse. All rights reserved.