Class ActionQuerySet<T extends ActionQuery>
java.lang.Object
org.tweetyproject.commons.BeliefSet<T,ActionSignature>
org.tweetyproject.action.query.syntax.ActionQuerySet<T>
- Type Parameters:
T
- the type of ActionQuery
- All Implemented Interfaces:
Iterable<T>
,Collection<T>
,BeliefBase
- Direct Known Subclasses:
SActionQuerySet
An Action Query Set consists of action queries in a specific query language
and provides some common functionalities for such queries.
- Author:
- Sebastian Homann
-
Field Summary
Fields inherited from class org.tweetyproject.commons.BeliefSet
EQUALS_USES_SIGNATURE
-
Constructor Summary
ConstructorDescriptionCreates an empty ActionQuerySetActionQuerySet
(Collection<? extends T> c) Creates a new ActionQuerySet initialized with the given collection of action queries. -
Method Summary
Methods inherited from class org.tweetyproject.commons.BeliefSet
add, add, addAll, clear, contains, containsAll, equals, getSignature, hashCode, isEmpty, iterator, remove, removeAll, retainAll, setSignature, size, toArray, toArray, toString, toString
Methods inherited from interface org.tweetyproject.commons.BeliefBase
getMinimalSignature
Methods inherited from interface java.util.Collection
parallelStream, removeIf, spliterator, stream, toArray
-
Constructor Details
-
ActionQuerySet
Creates a new ActionQuerySet initialized with the given collection of action queries.- Parameters:
c
- a collection of action queries
-
ActionQuerySet
public ActionQuerySet()Creates an empty ActionQuerySet
-