Package | Description |
---|---|
io.vertx.codegen | |
io.vertx.codegen.format | |
io.vertx.codegen.type |
Modifier and Type | Method and Description |
---|---|
String |
ModuleInfo.getName(Case _case) |
String |
MethodInfo.getName(Case _case) |
String |
ParamInfo.getName(Case _case) |
Modifier and Type | Class and Description |
---|---|
class |
CamelCase
Camel case, for instance FooBar.
|
class |
KebabCase
Kebab case, for instance foo-bar.
|
class |
LowerCamelCase
Camel case starting with a lower case, for instance fooBar.
|
class |
QualifiedCase
Java full qualified case, for instance foo.bar
|
class |
SnakeCase
Snake case, for instance foo_bar.
|
Modifier and Type | Field and Description |
---|---|
static Case |
KebabCase.INSTANCE
A
CamelCase instance. |
static Case |
CamelCase.INSTANCE
A
CamelCase instance. |
static Case |
SnakeCase.INSTANCE
A
SnakeCase instance. |
static Case |
LowerCamelCase.INSTANCE
A
LowerCamelCase instance. |
static Case |
QualifiedCase.QUALIFIED
A
QualifiedCase instance. |
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 |
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 © 2021 Eclipse. All rights reserved.