blob: 790d80469e73df8a227fc1a21085897d459cee7a [file] [log] [blame]
package com.intellij.tasks.jira.jql.psi;
import org.jetbrains.annotations.Nullable;
/**
* Simple clauses such as EQ, NE, GT, LT, GE, LE, CONTAINS, NOT_CONTAINS, IN, NOT_IN, IS and IS_NOT
*
* @author Mikhail Golubev
*/
public interface JqlSimpleClause extends JqlTerminalClause {
@Nullable
JqlOperand getOperand();
}