Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions api/src/org/labkey/api/data/CompareType.java
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,7 @@ protected Collection getCollectionParam(Object value)
*/


public static final CompareType ARRAY_IS_EMPTY = new CompareType("Is Empty", "arrayisempty", "ARRAYISEMPTY", false, null, OperatorType.ARRAYISEMPTY)
public static final CompareType ARRAY_IS_EMPTY = new CompareType("Is Empty", "arrayisempty", "ARRAY_ISEMPTY", false, null, OperatorType.ARRAYISEMPTY)
{
@Override
public ArrayIsEmptyClause createFilterClause(@NotNull FieldKey fieldKey, Object value)
Expand All @@ -844,7 +844,7 @@ public boolean meetsCriteria(ColumnRenderProperties col, Object value, Object[]
}
};

public static final CompareType ARRAY_IS_NOT_EMPTY = new CompareType("Is Not Empty", "arrayisnotempty", "ARRAYISNOTEMPTY", false, null, OperatorType.ARRAYISNOTEMPTY)
public static final CompareType ARRAY_IS_NOT_EMPTY = new CompareType("Is Not Empty", "arrayisnotempty", "ARRAY_ISNOTEMPTY", false, null, OperatorType.ARRAYISNOTEMPTY)
{
@Override
public ArrayIsEmptyClause createFilterClause(@NotNull FieldKey fieldKey, Object value)
Expand All @@ -859,7 +859,7 @@ public boolean meetsCriteria(ColumnRenderProperties col, Object value, Object[]
}
};

public static final CompareType ARRAY_CONTAINS_ALL = new CompareType("Contains All", "arraycontainsall", "ARRAYCONTAINSALL", true, null, OperatorType.ARRAYCONTAINSALL)
public static final CompareType ARRAY_CONTAINS_ALL = new CompareType("Contains All", "arraycontainsall", "ARRAY_CONTAINS_ALL", true, null, OperatorType.ARRAYCONTAINSALL)
{
@Override
public ArrayContainsAllClause createFilterClause(@NotNull FieldKey fieldKey, Object value)
Expand All @@ -880,7 +880,7 @@ public String getValueSeparator()
}
};

public static final CompareType ARRAY_CONTAINS_ANY = new CompareType("Contains Any", "arraycontainsany", "ARRAYCONTAINSANY", true, null, OperatorType.ARRAYCONTAINSANY)
public static final CompareType ARRAY_CONTAINS_ANY = new CompareType("Contains Any", "arraycontainsany", "ARRAY_CONTAINS_ANY", true, null, OperatorType.ARRAYCONTAINSANY)
{
@Override
public ArrayContainsAnyClause createFilterClause(@NotNull FieldKey fieldKey, Object value)
Expand All @@ -901,7 +901,7 @@ public String getValueSeparator()
}
};

public static final CompareType ARRAY_CONTAINS_NONE = new CompareType("Contains None", "arraycontainsnone", "ARRAYCONTAINSNONE", true, null, OperatorType.ARRAYCONTAINSNONE)
public static final CompareType ARRAY_CONTAINS_NONE = new CompareType("Contains None", "arraycontainsnone", "ARRAY_CONTAINS_NONE", true, null, OperatorType.ARRAYCONTAINSNONE)
{
@Override
public ArrayContainsNoneClause createFilterClause(@NotNull FieldKey fieldKey, Object value)
Expand All @@ -922,7 +922,7 @@ public String getValueSeparator()
}
};

public static final CompareType ARRAY_MATCHES = new CompareType("Contains Exactly", "arraymatches", "ARRAYMATCHES", true, null, OperatorType.ARRAYMATCHES)
public static final CompareType ARRAY_MATCHES = new CompareType("Contains Exactly", "arraymatches", "ARRAY_CONTAINS_EXACT", true, null, OperatorType.ARRAYMATCHES)
{
@Override
public ArrayMatchesClause createFilterClause(@NotNull FieldKey fieldKey, Object value)
Expand All @@ -943,7 +943,7 @@ public String getValueSeparator()
}
};

public static final CompareType ARRAY_NOT_MATCHES = new CompareType("Does Not Contain Exactly", "arraynotmatches", "ARRAYNOTMATCHES", true, null, OperatorType.ARRAYNOTMATCHES)
public static final CompareType ARRAY_NOT_MATCHES = new CompareType("Does Not Contain Exactly", "arraynotmatches", "ARRAY_CONTAINS_NOT_EXACT", true, null, OperatorType.ARRAYNOTMATCHES)
{
@Override
public ArrayNotMatchesClause createFilterClause(@NotNull FieldKey fieldKey, Object value)
Expand Down