![JAR search and dependency download from the Maven repository](/logo.png)
org.opentcs.components.kernel.Query Maven / Gradle / Ivy
// SPDX-FileCopyrightText: The openTCS Authors
// SPDX-License-Identifier: MIT
package org.opentcs.components.kernel;
import java.io.Serializable;
/**
* Marks a query (parameter) object.
*
* @param The result type.
*/
public interface Query {
/**
* A convenience class to be used as the result type for queries that do not return any result.
*/
class Void
implements
Serializable {
/**
* Creates a new instance.
*/
public Void() {
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy