Skip to content

Commit 70a56e8

Browse files
author
Psilo
committed
update README.md
update ANTLR test bump version
1 parent d8a4675 commit 70a56e8

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
lines changed

README.md

+19
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,25 @@ Where `scanId` is a numeric mandatory parameter and the rest is checked using th
297297
"datetime"
298298
```
299299
300+
##### Supported Operators
301+
302+
```java
303+
"==", "="
304+
"<>", "!="
305+
"<"
306+
">"
307+
"<="
308+
">="
309+
"IS NULL"
310+
"IS NOT NULL"
311+
"LIKE" (string only)
312+
"NOT LIKE" (string only)
313+
"STARTSWITH" (string only)
314+
"NOT STARTSWITH" (string only)
315+
"ENDSWITH" (string only)
316+
"NOT ENDSWITH" (string only)
317+
```
318+
300319
##### Example 3 (enums)
301320
302321
```java

antlr4/testInput.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
blummi IS NOT NULL AND userId == :userId[long] AND (?timeFrom <= :timeFrom[datetime] OR timeTo > :timeTo[~MyEnum]) OR blubb != :blubb[bool] OR blah <> :blah[int] OR wuzi NOT LIKE :wuzi[string] OR zuwi ENDSWITH :zuwi[string] or wasi NOT STARTSWITH :wasi[string]
1+
(blummi IS NOT NULL AND userId == :userId[long] AND (?timeFrom <= :timeFrom[datetime] OR timeTo > :timeTo[~MyEnum]) OR blubb != :blubb[bool] OR blah <> :blah[int] OR wuzi NOT LIKE :wuzi[string] OR zuwi ENDSWITH :zuwi[string] or wasi NOT STARTSWITH :wasi[string]) OR (scanId = :scanId[long] AND (searchName LIKE :searchString[string] OR ?name LIKE :searchString2[string] OR opcIdString LIKE :searchString[string] OR description LIKE :searchString[string]))

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
<modelVersion>4.0.0</modelVersion>
1919
<artifactId>http-server</artifactId>
20-
<version>0.1.19</version>
20+
<version>0.1.20</version>
2121
<name>HttpServer</name>
2222
<packaging>jar</packaging>
2323

src/main/java/info/unterrainer/commons/httpserver/Information.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
public class Information {
44
public static final String name = "Http-Server";
5-
public static final String buildTime = "2021-01-21T17:02:07Z";
6-
public static final String pomVersion = "0.1.19";
5+
public static final String buildTime = "2021-01-21T17:09:29Z";
6+
public static final String pomVersion = "0.1.20";
77
}

0 commit comments

Comments
 (0)