Xtend QueryDsl

A small Xtend wrapper for the awesome QueryDsl library

License

License

MIT
Categories

Categories

Querydsl Data Databases
GroupId

GroupId

com.github.oehme.xtend
ArtifactId

ArtifactId

xtend-querydsl
Last Version

Last Version

1.0.0
Release Date

Release Date

Type

Type

jar
Description

Description

Xtend QueryDsl
A small Xtend wrapper for the awesome QueryDsl library
Project URL

Project URL

https://github.com/oehme/xtend-querydsl
Project Organization

Project Organization

itemis AG
Source Code Management

Source Code Management

https://github.com/oehme/xtend-querydsl

Download xtend-querydsl

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.oehme.xtend/xtend-querydsl/ -->
<dependency>
    <groupId>com.github.oehme.xtend</groupId>
    <artifactId>xtend-querydsl</artifactId>
    <version>1.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.oehme.xtend/xtend-querydsl/
implementation 'com.github.oehme.xtend:xtend-querydsl:1.0.0'
// https://jarcasting.com/artifacts/com.github.oehme.xtend/xtend-querydsl/
implementation ("com.github.oehme.xtend:xtend-querydsl:1.0.0")
'com.github.oehme.xtend:xtend-querydsl:jar:1.0.0'
<dependency org="com.github.oehme.xtend" name="xtend-querydsl" rev="1.0.0">
  <artifact name="xtend-querydsl" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.oehme.xtend', module='xtend-querydsl', version='1.0.0')
)
libraryDependencies += "com.github.oehme.xtend" % "xtend-querydsl" % "1.0.0"
[com.github.oehme.xtend/xtend-querydsl "1.0.0"]

Dependencies

compile (2)

Group / Artifact Type Version
org.eclipse.xtend : org.eclipse.xtend.lib jar 2.4.3
com.mysema.querydsl : querydsl-core jar 3.2.1

Project Modules

There are no modules declared in this project.

xtend-querydsl

A small Xtend wrapper for the awesome QueryDsl library.

Build Status Download

Features

This wrapper mainly adds operator overloads for expressions. Instead of writing

    person.firstName.eq("Stefan").and(person.age.gt(20))

You can now write

    person.firstName == "Stefan" && person.age > 20

Versions

Version
1.0.0