Package jason.stdlib
Class literal
java.lang.Object
jason.asSemantics.DefaultInternalAction
jason.stdlib.literal
- All Implemented Interfaces:
InternalAction,Serializable
@Manual(literal=".literal(argument)",
hint="checks whether the argument is a literal",
argsHint="the term to be checked",
argsType="term",
examples={".literal(b(10)): true",".literal(b(10)[a,b]): true",".literal(~b(20)[a,b]): true",".literal(b): true",".literal(10): false",".literal(\"Jason\"): false",".literal(X): false if X is free, true if X is bound to a literal",".literal(a(X)): true",".literal([a,b,c]): false",".literal([a,b,c(X)]): false"},
seeAlso={"jason.stdlib.atom","jason.stdlib.list","jason.stdlib.number","jason.stdlib.string","jason.stdlib.structure","jason.stdlib.ground"})
public class literal
extends DefaultInternalAction
Internal action: .literal.
Description: checks whether the argument is a literal, e.g.: "p", "p(1)", "p(1)[a,b]", "~p(1)[a,b]".
Parameter:
- + argument (any term): the term to be checked.
Examples:
-
.literal(b(10)): true. -
.literal(b): true. -
.literal(10): false. -
.literal("Jason"): false. -
.literal(X): false if X is free, true if X is bound to a literal. -
.literal(a(X)): true. -
.literal([a,b,c]): false. -
.literal([a,b,c(X)]): false.
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic InternalActioncreate()execute(TransitionSystem ts, Unifier un, Term[] args) Executes the internal action.intintMethods inherited from class jason.asSemantics.DefaultInternalAction
canBeUsedInContext, checkArguments, destroy, prepareArguments, suspendIntention
-
Constructor Details
-
literal
public literal()
-
-
Method Details
-
create
-
getMinArgs
public int getMinArgs()- Overrides:
getMinArgsin classDefaultInternalAction
-
getMaxArgs
public int getMaxArgs()- Overrides:
getMaxArgsin classDefaultInternalAction
-
execute
Description copied from interface:InternalActionExecutes the internal action. It should return a Boolean or an Iterator. A true boolean return means that the IA was successfully executed. An Iterator result means that there is more than one answer for this IA (e.g. see member internal action). - Specified by:
executein interfaceInternalAction- Overrides:
executein classDefaultInternalAction- Throws:
Exception
-