Interface StringAttributeCollectionFilter
- All Superinterfaces:
HasToRequest<StringAttributeCollectionFilterRequest>,Serializable
public interface StringAttributeCollectionFilter
extends HasToRequest<StringAttributeCollectionFilterRequest>, Serializable
Represents a collection filter for string attribute values with a specific type.
Requires typePublicId and one of: none, any, or isEmpty.
minProperties = 2, maxProperties = 2 (none/any/isEmpty are mutually exclusive).
-
Method Summary
Modifier and TypeMethodDescriptiongetAny()Returns the ANY filter - matches if any of the string attributes match this filter.Returns whether to match empty collections.getNone()Returns the NONE filter - matches if none of the string attributes match this filter.getType()Returns the type MetaResourceReference for this attribute collection filter.Methods inherited from interface HasToRequest
toRequest
-
Method Details
-
getType
MetaResourceReference getType()Returns the type MetaResourceReference for this attribute collection filter.- Returns:
- the type MetaResourceReference
-
getNone
StringFilter getNone()Returns the NONE filter - matches if none of the string attributes match this filter. Not supported for MULTI_VALUE_LIST attribute kinds; use isEmpty instead.- Returns:
- the NONE filter, or null if not specified
-
getAny
StringFilter getAny()Returns the ANY filter - matches if any of the string attributes match this filter. Not supported for MULTI_VALUE_LIST attribute kinds; use isEmpty instead.- Returns:
- the ANY filter, or null if not specified
-
getIsEmpty
Boolean getIsEmpty()Returns whether to match empty collections.- Returns:
- true if matching empty collections, null if not specified
-