Package de.elo.ix.client
Class FindByAspectValue
java.lang.Object
de.elo.ix.client.FindByAspectValue
- All Implemented Interfaces:
Serializable
This class contains disjunct conditions to search for aspect data in the database. Used as value
in
FindByIndex.aspects
.- Since:
- 21.03.000.003
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected IndexSearchValue
A singleIndexSearchValue
condition.protected List<IndexSearchValue>
List
of disjunct conditions to filter aspect data in the database. -
Constructor Summary
ConstructorsConstructorDescriptionFindByAspectValue
(IndexSearchValue condition) FindByAspectValue
(IndexSearchValue disjunctCondition, IndexSearchValue... disjunctConditions) FindByAspectValue
(List<IndexSearchValue> disjunctConditions) -
Method Summary
Modifier and TypeMethodDescriptionvoid
setCondition
(IndexSearchValue condition) void
setDisjunctConditions
(List<IndexSearchValue> disjunctConditions) toString()
-
Field Details
-
condition
A singleIndexSearchValue
condition. This field is for convenience in case you only have a single disjunct condition for the same aspect index line. In case you have more than one conditions, use the fielddisjunctConditions
. Server-side, this field will be merged intodisjunctConditions
, so you can set both. Then, all the conditions will get evaluated. -
disjunctConditions
List
of disjunct conditions to filter aspect data in the database. The server will evaluate all conditions in this list with logical OR.
-
-
Constructor Details
-
FindByAspectValue
public FindByAspectValue() -
FindByAspectValue
-
FindByAspectValue
-
FindByAspectValue
public FindByAspectValue(IndexSearchValue disjunctCondition, IndexSearchValue... disjunctConditions) -
FindByAspectValue
-
-
Method Details