static SwitchStatement |
Expressions.switch_(Type type,
Expression switchValue,
Expression defaultBody,
Method method,
Iterable<? extends SwitchCase> cases) |
Creates a SwitchExpression that represents a switch statement
that has a default case.
|
static SwitchStatement |
Expressions.switch_(Type type,
Expression switchValue,
Expression defaultBody,
Method method,
SwitchCase... cases) |
Creates a SwitchExpression that represents a switch statement
that has a default case, using varargs.
|
static SwitchStatement |
Expressions.switch_(Expression switchValue,
Expression defaultBody,
Method method,
Iterable<? extends SwitchCase> cases) |
Creates a SwitchExpression that represents a switch statement
that has a default case.
|
static SwitchStatement |
Expressions.switch_(Expression switchValue,
Expression defaultBody,
Method method,
SwitchCase... cases) |
Creates a SwitchExpression that represents a switch statement
that has a default case, using varargs.
|
static SwitchStatement |
Expressions.switch_(Expression switchValue,
Expression defaultBody,
SwitchCase... cases) |
Creates a SwitchExpression that represents a switch statement
that has a default case.
|
static SwitchStatement |
Expressions.switch_(Expression switchValue,
SwitchCase... cases) |
Creates a SwitchExpression that represents a switch statement
without a default case.
|