Package ch.njol.skript.expressions
Class ExprUUID
java.lang.Object
ch.njol.skript.lang.util.SimpleExpression<T>
ch.njol.skript.expressions.base.PropertyExpression<F,T>
ch.njol.skript.expressions.base.SimplePropertyExpression<Object,String>
ch.njol.skript.expressions.ExprUUID
- All Implemented Interfaces:
Converter<Object,String>,Debuggable,Expression<String>,SyntaxElement
@Name("UUID")
@Description({"The UUID of a player, entity or world.","In the future there will be an option to use a player\'s UUID instead of the name in variable names (i.e. when %player% is used), but for now this can be used.","<em>Please note that this expression does not work for offline players if you are under 1.8!</em>"})
@Examples({"# prevents people from joining the server if they use the name of a player","# who has played on this server at least once since this script has been added","on login:","\tif {uuid::%name of player%} exists:","\t\t{uuid::%name of player%} is not uuid of player","\t\tkick player due to \"Someone with your name has played on this server before\"","\telse:","\t\tset {uuid::%name of player%} to uuid of player"})
@Since("2.1.2, 2.2 (offline players\' UUIDs), 2.2-dev24 (other entities\' UUIDs)")
public class ExprUUID
extends SimplePropertyExpression<Object,String>
-
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
Constructors -
Method Summary
Methods inherited from class ch.njol.skript.expressions.base.SimplePropertyExpression
get, init, toStringMethods inherited from class ch.njol.skript.expressions.base.PropertyExpression
get, get, getAll, getAnd, getExpr, isSingle, register, setExpr, simplifyMethods 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, toStringMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface ch.njol.skript.lang.Expression
beforeChange, streamMethods inherited from interface ch.njol.skript.lang.SyntaxElement
getParser
-
Constructor Details
-
ExprUUID
public ExprUUID()
-
-
Method Details
-
convert
Description copied from interface:ConverterConverts an object from the given to the desired type. -
getReturnType
Description copied from interface:ExpressionGets 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:
getPropertyNamein classSimplePropertyExpression<Object,String>
-