SqlFilter Class
- java.
lang. Object - com.
microsoft. azure. servicebus. rules. Filter - com.
microsoft. azure. servicebus. rules. SqlFilter
- com.
- com.
public class SqlFilter
extends Filter
Represents a SQL language-based filter expression that is evaluated against a message.
Constructor Summary
Constructor | Description |
---|---|
SqlFilter(String sqlExpression) |
Creates an instance of |
Method Summary
Modifier and Type | Method and Description |
---|---|
boolean | equals(Object o) |
String |
getSqlExpression()
Gets the match expression of this filter. |
int | hashCode() |
Methods inherited from java.lang.Object
Constructor Details
SqlFilter
public SqlFilter(String sqlExpression)
Creates an instance of SqlFilter
with the given match expression.
Parameters:
sqlExpression
- SQL language-based filter expression
Method Details
equals
public boolean equals(Object o)
Overrides:
SqlFilter.equals(Object o)Parameters:
o
getSqlExpression
public String getSqlExpression()
Gets the match expression of this filter.
Returns:
SQL language-based expression of this filter
hashCode
public int hashCode()
Overrides:
SqlFilter.hashCode()Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for Java