aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-query/src/main/java/tools/refinery/store/query/literal/CanNegate.java
blob: 35dcb3fbcc35f6021b8f67cb35c820585182fba4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
/*
 * SPDX-FileCopyrightText: 2021-2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package tools.refinery.store.query.literal;

public interface CanNegate<T extends CanNegate<T>> extends Literal {
	T negate();
}