blob: 37b37fcf0aba4867ad9c38b18b87a32b3b018e78 [file] [log] [blame]
package com.intellij.tasks.jira.jql.psi;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/**
* @author Mikhail Golubev
*/
public interface JqlHistoryPredicate extends JqlElement {
enum Type {
FROM,
TO,
BEFORE,
AFTER,
BY,
ON,
DURING
}
@NotNull
Type getType();
@Nullable
JqlOperand getOperand();
}