Skip to content

Commit

Permalink
Removed DataType completely.
Browse files Browse the repository at this point in the history
Signed-off-by: Aleksa Dacic <aleksa.dacic99@gmail.com>
  • Loading branch information
aleksadacic committed Feb 14, 2025
1 parent 91edcfd commit 559139a
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 108 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>

Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package io.github.aleksadacic.dataquerying.internal.search;

import io.github.aleksadacic.dataquerying.internal.enums.ConditionalOperator;
import io.github.aleksadacic.dataquerying.internal.enums.DataType;
import io.github.aleksadacic.dataquerying.api.SearchOperator;
import lombok.Getter;
import lombok.Setter;
Expand All @@ -14,7 +13,6 @@ public class FilterData {
private String attribute;
private Object value;
private SearchOperator searchOperator; // EQ, NOT_EQ, GTE, LTE, IN, LIKE, etc.
private DataType type; // STRING, NUMBER, DATE, ARRAY, etc.
private List<FilterData> filters; // nested filters
private ConditionalOperator conditionalOperator; // AND, OR for a filter group
}

This file was deleted.

0 comments on commit 559139a

Please sign in to comment.