Package ch.njol.skript.expressions
Class ExprMiddleOfLocation
java.lang.Object
ch.njol.skript.lang.util.SimpleExpression<T>
ch.njol.skript.expressions.base.PropertyExpression<F,T>
ch.njol.skript.expressions.base.SimplePropertyExpression<org.bukkit.Location,org.bukkit.Location>
ch.njol.skript.expressions.ExprMiddleOfLocation
- All Implemented Interfaces:
Converter<org.bukkit.Location,org.bukkit.Location>
,Debuggable
,Expression<org.bukkit.Location>
,SyntaxElement
@Name("Middle of Location")
@Description("Returns the middle/center of a location. In other words, returns the middle of the X, Z coordinates and the floor value of the Y coordinate of a location.")
@Examples({"command /stuck:","\texecutable by: players","\ttrigger:","\t\tteleport player to the center of player\'s location","\t\tsend \"You\'re no longer stuck.\""})
@Since("2.6.1")
public class ExprMiddleOfLocation
extends SimplePropertyExpression<org.bukkit.Location,org.bukkit.Location>
-
Nested Class Summary
Nested classes/interfaces inherited from interface ch.njol.skript.classes.Converter
Converter.ConverterInfo<F,T>, Converter.ConverterUtils
-
Field Summary
Fields inherited from interface ch.njol.skript.classes.Converter
NO_CHAINING, NO_COMMAND_ARGUMENTS, NO_LEFT_CHAINING, NO_RIGHT_CHAINING
-
Constructor Summary
-
Method Summary
Methods inherited from class ch.njol.skript.expressions.base.SimplePropertyExpression
get, init, toString
Methods inherited from class ch.njol.skript.expressions.base.PropertyExpression
get, get, getAll, getAnd, getExpr, isSingle, register, setExpr, simplify
Methods inherited from class ch.njol.skript.lang.util.SimpleExpression
acceptChange, change, check, check, check, getArray, getConvertedExpr, getConvertedExpression, getSingle, getSource, getTime, isDefault, isLoopOf, iterator, setTime, setTime, setTime, setTime, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface ch.njol.skript.lang.Expression
beforeChange, stream
Methods inherited from interface ch.njol.skript.lang.SyntaxElement
getParser
-
Constructor Details
-
ExprMiddleOfLocation
public ExprMiddleOfLocation()
-
-
Method Details
-
convert
public @Nullable org.bukkit.Location convert(org.bukkit.Location loc)Description copied from interface:Converter
Converts an object from the given to the desired type.- Specified by:
convert
in interfaceConverter<org.bukkit.Location,org.bukkit.Location>
- Specified by:
convert
in classSimplePropertyExpression<org.bukkit.Location,org.bukkit.Location>
- Parameters:
loc
- The object to convert.- Returns:
- the converted object
-
getReturnType
Description copied from interface:Expression
Gets the return type of this expression.- Returns:
- A supertype of any objects returned by
Expression.getSingle(Event)
and the component type of any arrays returned byExpression.getArray(Event)
-
getPropertyName
- Specified by:
getPropertyName
in classSimplePropertyExpression<org.bukkit.Location,org.bukkit.Location>
-