org.swrlapi.builtins.arguments.SQWRLCollectionVariableBuiltInArgument Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swrlapi Show documentation
Show all versions of swrlapi Show documentation
Java API for working with SWRL rules and SQWRL queries
package org.swrlapi.builtins.arguments;
import org.checkerframework.checker.nullness.qual.NonNull;
/**
* Interface representing SQWRL collection arguments to SWRL built-ins
*/
public interface SQWRLCollectionVariableBuiltInArgument extends SWRLVariableBuiltInArgument
{
/**
* @return The name of the enclosing SQWRL query
*/
@NonNull String getQueryName();
/**
* @return The collection name
*/
@NonNull String getCollectionName();
/**
* @return The collection group ID
*/
@NonNull String getGroupID();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy