public class SelectResult extends Object
Modifier and Type | Class and Description |
---|---|
static class |
SelectResult.As
SelectResult.As is a SelectResult that you can specify an alias name to it.
|
static class |
SelectResult.From
SelectResult.From is a SelectResult that you can specify the data source alias name.
|
Modifier and Type | Method and Description |
---|---|
static SelectResult.From |
all()
Creates a SelectResult object that returns all properties data.
|
static SelectResult.As |
expression(Expression expression)
Creates a SelectResult object with the given expression.
|
static SelectResult.As |
property(String property)
Creates a SelectResult object with the given property name.
|
@NonNull public static SelectResult.As property(@NonNull String property)
property
- The property name.@NonNull public static SelectResult.As expression(@NonNull Expression expression)
expression
- The expression.@NonNull public static SelectResult.From all()