All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.swrlapi.builtins.arguments.SQWRLCollectionVariableBuiltInArgument Maven / Gradle / Ivy

There is a newer version: 2.1.2
Show newest version
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