Class LineageFilterFieldBoolean

java.lang.Object
com.atlan.model.lineage.LineageFilterField
com.atlan.model.lineage.LineageFilterFieldBoolean

public class LineageFilterFieldBoolean extends LineageFilterField
Class used to provide a proxy to building up a lineage filter with the appropriate subset of conditions available, for boolean fields.
  • Constructor Details

    • LineageFilterFieldBoolean

      public LineageFilterFieldBoolean(SearchableField field)
  • Method Details

    • eq

      public LineageFilter eq(Boolean value)
      Returns a filter that will match all assets whose provided field has a value that is exactly the provided value.
      Parameters:
      value - the value to check the field's value equals
      Returns:
      a filter that will only match assets whose value for the field is exactly the value provided
    • neq

      public LineageFilter neq(Boolean value)
      Returns a filter that will match all assets whose provided field has a value that is not exactly the provided value.
      Parameters:
      value - the value to check the field's value does not equal
      Returns:
      a filter that will only match assets whose value for the field is not exactly the value provided