Skip to content

Commit e3f874e

Browse files
committed
fixup! Java/Jinq: Add README as a stub
1 parent fcf640d commit e3f874e

File tree

1 file changed

+18
-19
lines changed

1 file changed

+18
-19
lines changed

by-language/java-jinq/README.rst

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Introduction
2424
============
2525

2626
`Jinq`_ and `jOOQ`_ are in a similar area like `LINQ`_. We've picked up and
27-
summarized some bits from blog posts and interviews by Dr. Ming-Yee Iu and
27+
summarized a few quotes from blog posts and interviews by Dr. Ming-Yee Iu and
2828
Lukas Eder, the main authors of Jinq and jOOQ.
2929

3030
Firstly, you may enjoy the guest post by Dr. Ming-Yee Iu `Java 8 Will
@@ -45,6 +45,23 @@ Querying`_ at the `jOOQ Tuesdays series`_.
4545
instead, which provide most of the benefits of LINQ but don’t require tight
4646
language integration like LINQ.
4747

48+
Details
49+
=======
50+
51+
From the documentation at http://www.jinq.org/, about what Jinq actually is,
52+
and does.
53+
54+
Jinq provides developers an easy and natural way to write database queries
55+
in Java. You can treat database data like normal Java objects stored in
56+
collections. You can iterate over them and filter them using normal Java
57+
commands, and all your code will be automatically translated into optimized
58+
database queries. Finally, LINQ-style queries are available for Java!
59+
60+
With Jinq, you can write database queries using a simple, natural Java
61+
syntax. Using Java 8's new support for functional programming, you can
62+
filter and transform data in a database using the same code you would use
63+
for normal Java data.
64+
4865

4966
********
5067
Synopsis
@@ -66,24 +83,6 @@ A few other concise `Jinq code examples`_ can be discovered at the Jinq code
6683
base.
6784

6885

69-
*******
70-
Details
71-
*******
72-
73-
From the documentation at http://www.jinq.org/, about what Jinq actually is,
74-
and does.
75-
76-
Jinq provides developers an easy and natural way to write database queries
77-
in Java. You can treat database data like normal Java objects stored in
78-
collections. You can iterate over them and filter them using normal Java
79-
commands, and all your code will be automatically translated into optimized
80-
database queries. Finally, LINQ-style queries are available for Java!
81-
82-
With Jinq, you can write database queries using a simple, natural Java
83-
syntax. Using Java 8's new support for functional programming, you can
84-
filter and transform data in a database using the same code you would use
85-
for normal Java data.
86-
8786

8887
.. _CrateDB: https://github.com/crate/crate
8988
.. _Jinq code examples: https://github.com/my2iu/Jinq/blob/main/sample/src/com/example/jinq/sample/SampleMain.java

0 commit comments

Comments
 (0)