greaterOrEquals static method

Filter greaterOrEquals(
  1. String attributeName,
  2. String attrValue
)

Creates a Filter that matches an entry that contains the attributeName with a value that is greater than or equal to attrValue.

Implementation

static Filter greaterOrEquals(String attributeName, String attrValue) =>
    Filter(TYPE_GREATER_OR_EQUAL, attributeName, attrValue);