ICondition

public interface ICondition<T>

Represents a condition which can be used by filters or search methods.

T : The type of object to apply method interface to.

Methods

MethodDescription
check(T el)Returns true if the specified object satisfy the conditions.

check(T el)

public abstract boolean check(T el)

Returns true if the specified object satisfy the conditions.

Parameters:

ParameterTypeDescription
elTThe object to check.

Returns: boolean - True if the object satisfy the conditions.