Package io.camunda.search.clients.source
Record Class SearchSourceFilter
java.lang.Object
java.lang.Record
io.camunda.search.clients.source.SearchSourceFilter
-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionSearchSourceFilter(List<String> includes, List<String> excludes) Creates an instance of aSearchSourceFilterrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.excludes()Returns the value of theexcludesrecord component.final inthashCode()Returns a hash code value for this object.includes()Returns the value of theincludesrecord component.static SearchSourceFilterof(Function<SearchSourceFilter.Builder, io.camunda.util.ObjectBuilder<SearchSourceFilter>> fn) final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
SearchSourceFilter
Creates an instance of aSearchSourceFilterrecord class.- Parameters:
includes- the value for theincludesrecord componentexcludes- the value for theexcludesrecord component
-
-
Method Details
-
of
public static SearchSourceFilter of(Function<SearchSourceFilter.Builder, io.camunda.util.ObjectBuilder<SearchSourceFilter>> fn) -
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
includes
Returns the value of theincludesrecord component.- Returns:
- the value of the
includesrecord component
-
excludes
Returns the value of theexcludesrecord component.- Returns:
- the value of the
excludesrecord component
-