Package ch.njol.skript.lang
Class Condition
java.lang.Object
ch.njol.skript.lang.TriggerItem
ch.njol.skript.lang.Statement
ch.njol.skript.lang.Condition
- All Implemented Interfaces:
Debuggable,SyntaxElement
A condition which must be fulfilled for the trigger to continue. If the condition is in a section the behaviour depends on the section.
- See Also:
-
Field Summary
Fields inherited from class ch.njol.skript.lang.TriggerItem
parent -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract booleanChecks whether this condition is satisfied with the given event.final booleanstatic @Nullable Conditionfinal booleanExecutes this item.protected final voidsetNegated(boolean invert) Sets the negation state of this condition.Methods inherited from class ch.njol.skript.lang.TriggerItem
debug, getIndentation, getNext, getParent, getTrigger, setNext, setParent, toString, walk, walkMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface ch.njol.skript.lang.Debuggable
toStringMethods inherited from interface ch.njol.skript.lang.SyntaxElement
getParser, init
-
Constructor Details
-
Condition
protected Condition()
-
-
Method Details
-
check
Checks whether this condition is satisfied with the given event. This should not alter the event or the world in any way, as conditions are only checked until one returns false. All subsequent conditions of the same trigger will then be omitted.
You might want to useSimpleExpression.check(Event, Checker)- Parameters:
event- the event to check- Returns:
trueif the condition is satisfied,falseotherwise or if the condition doesn't apply to this event.
-
run
Description copied from class:TriggerItemExecutes this item.- Specified by:
runin classTriggerItem- Parameters:
event- The event to run this item with- Returns:
- True if the next item should be run, or false for the item following this item's parent.
-
setNegated
protected final void setNegated(boolean invert) Sets the negation state of this condition. This will change the behaviour ofExpression.check(Event, Checker, boolean). -
isNegated
public final boolean isNegated()- Returns:
- whether this condition is negated or not.
-
parse
-