public interface UntypedQueryStepBuilder<S,E> extends QueryStepBuilder<S,E>, NumericCastableQueryStepBuilder<S,E>
| Modifier and Type | Method and Description |
|---|---|
QueryStepBuilder<S,java.lang.Boolean> |
asBoolean()
Converts the elements in the current result set into
Booleans. |
QueryStepBuilder<S,java.lang.Character> |
asCharacter()
Converts the elements in the current result set into
Characters. |
EObjectQueryStepBuilder<S> |
asEObject()
Converts the elements in the current result set into
EObjects. |
EObjectQueryStepBuilder<S> asEObject()
EObjects.
This method first checks if the element in question is an instance of EObject. If it is an EObject, it is cast
down and forwarded. Otherwise, it is discarded, i.e. all non-EObjects will be filtered out. All null
values will also be filtered out.
null.QueryStepBuilder<S,java.lang.Boolean> asBoolean()
Booleans.
This method first checks if the element in question is an instance of Boolean. If it is a Boolean, it is cast
down and forwarded. Otherwise, it is discarded, i.e. all non-Booleans will be filtered out. All null
values will also be filtered out.
null.QueryStepBuilder<S,java.lang.Character> asCharacter()
Characters.
This method first checks if the element in question is an instance of Character. If it is a Character, it is cast
down and forwarded. Otherwise, it is discarded, i.e. all non-Characters will be filtered out. All
null values will also be filtered out.
null.