Class ExprColored
- All Implemented Interfaces:
Debuggable, Expression<Object>, Loopable<Object>, Simplifiable<Expression<? extends Object>>, SyntaxElement, Converter<String,Object>, RuntimeErrorProducer, SyntaxRuntimeErrorProducer
@Name("Colored/Formatted/Uncolored")
@Description("Parses or removes colors and, optionally, chat styles in/from a message.")
@Example("on chat:\n\tset message to colored message # only safe tags, such as colors, will be parsed\n") @Example("command /fade <player>:\n\ttrigger:\n\t\tset the display name of the player-argument to the uncolored display name of the player-argument\n") @Example("command /format <text>:\n\ttrigger:\n\t\tmessage formatted text-argument # parses all tags, but this is okay as the output is sent back to the executor\n")
@Since({"2.0","2.15 ('uncolored' vs 'unformatted' distinction)"})
public class ExprColored
extends ch.njol.skript.expressions.base.SimplePropertyExpression<String,Object>
-
Field Summary
Fields inherited from class ch.njol.skript.expressions.base.SimplePropertyExpression
rawExprFields inherited from class ch.njol.skript.expressions.base.PropertyExpression
DEFAULT_PRIORITYFields inherited from interface Converter
ALL_CHAINING, ALLOW_UNSAFE_CASTS, NO_CHAINING, NO_LEFT_CHAINING, NO_RIGHT_CHAINING -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionConverts an object using this Converter.protected StringClass<?> Gets the return type of this expression.booleaninit(Expression<?>[] expressions, int matchedPattern, Kleenean isDelayed, SkriptParser.ParseResult parseResult) Called just after the constructor andSyntaxElement.preInit().booleanDeprecated, for removal: This API element is subject to removal in a future version.This method is only available for compatibility purposes.static voidregister(SyntaxRegistry syntaxRegistry) Methods inherited from class ch.njol.skript.expressions.base.SimplePropertyExpression
get, toStringMethods inherited from class ch.njol.skript.expressions.base.PropertyExpression
get, get, getAll, getAnd, getDefaultPatterns, getExpr, getPatterns, infoBuilder, isSingle, register, register, registerDefault, registerDefault, setExpr, simplifyMethods inherited from class SimpleExpression
acceptChange, change, check, check, check, getArray, getConvertedExpr, getConvertedExpression, getNode, getSingle, getSource, getTime, isDefault, isLoopOf, iterator, preInit, setTime, setTime, setTime, setTime, setTime, supportsLoopPeeking, toStringMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface Expression
beforeChange, canBeSingle, canReturn, canReturnAnyOf, changeInPlace, changeInPlace, getAcceptedChangeModes, getOptionalSingle, getSyntaxTypeName, possibleReturnTypes, returnNestedStructures, returnsNestedStructures, stream, streamAllMethods inherited from interface RuntimeErrorProducer
error, error, getRuntimeErrorManager, warning, warningMethods inherited from interface SyntaxElement
getParserMethods inherited from interface SyntaxRuntimeErrorProducer
getErrorSource
-
Constructor Details
-
ExprColored
public ExprColored()
-
-
Method Details
-
register
-
init
public boolean init(Expression<?>[] expressions, int matchedPattern, Kleenean isDelayed, SkriptParser.ParseResult parseResult) Description copied from interface:SyntaxElementCalled just after the constructor andSyntaxElement.preInit().- Specified by:
initin interfaceSyntaxElement- Overrides:
initin classch.njol.skript.expressions.base.SimplePropertyExpression<String,Object> - Parameters:
expressions- all %expr%s included in the matching pattern in the order they appear in the pattern. If an optional value was left out, it will still be included in this list holding the default value of the desired type, which usually depends on the event.matchedPattern- The index of the pattern which matchedisDelayed- Whether this expression is used after a delay or not (i.e. if the event has already passed when this expression will be called)parseResult- Additional information about the match.- Returns:
- Whether this expression was initialised successfully. An error should be printed prior to returning false to specify the cause.
- See Also:
-
convert
Description copied from interface:ConverterConverts an object using this Converter. -
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
-
isUnsafeFormat
Deprecated, for removal: This API element is subject to removal in a future version.This method is only available for compatibility purposes.
-