Class ExprRawString
- All Implemented Interfaces:
Debuggable,Expression<Object>,Loopable<Object>,Simplifiable<Expression<? extends Object>>,SyntaxElement,Converter<String,,Object> RuntimeErrorProducer,SyntaxRuntimeErrorProducer
@Name("Raw String")
@Description({"Returns the string without formatting (colors, decorations, etc.) and without stripping them from it.","For example, <code>raw \"&aHello There!\"</code> would output <code>&aHello There!</code>"})
@Example("send raw \"&aThis text is unformatted!\" to all players")
@Since("2.7")
public class ExprRawString
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 org.skriptlang.skript.lang.converter.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.final <R> @Nullable Expression<? extends R> getConvertedExpression(Class<R>... to) Usually, you want to overrideSimpleExpression.getConvertedExpr(Class[]).protected StringClass<?> Gets the return type of this expression.static voidregister(SyntaxRegistry syntaxRegistry) 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, getDefaultPatterns, getExpr, getPatterns, infoBuilder, isSingle, register, register, registerDefault, registerDefault, setExpr, simplifyMethods inherited from class ch.njol.skript.lang.util.SimpleExpression
acceptChange, change, check, check, check, getArray, getConvertedExpr, getNode, getSingle, getSource, getTime, isDefault, isLoopOf, iterator, preInit, setTime, setTime, setTime, setTime, setTime, supportsLoopPeeking, 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, canBeSingle, canReturn, canReturnAnyOf, changeInPlace, changeInPlace, getAcceptedChangeModes, getOptionalSingle, getSyntaxTypeName, possibleReturnTypes, returnNestedStructures, returnsNestedStructures, stream, streamAllMethods inherited from interface org.skriptlang.skript.log.runtime.RuntimeErrorProducer
error, error, getRuntimeErrorManager, warning, warningMethods inherited from interface ch.njol.skript.lang.SyntaxElement
getParserMethods inherited from interface org.skriptlang.skript.log.runtime.SyntaxRuntimeErrorProducer
getErrorSource
-
Constructor Details
-
ExprRawString
public ExprRawString()
-
-
Method Details
-
register
-
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
-
getConvertedExpression
@SafeVarargs @Nullable public final <R> @Nullable Expression<? extends R> getConvertedExpression(Class<R>... to) Description copied from class:SimpleExpressionUsually, you want to overrideSimpleExpression.getConvertedExpr(Class[]). However, it may be useful to override this method if you have an expression with a return type that is unknown until runtime (like variables). Usually, you'll be fine with just the default implementation. This method is final on versions below 2.2-dev36.- Specified by:
getConvertedExpressionin interfaceExpression<Object>- Overrides:
getConvertedExpressionin classSimpleExpression<Object>- Parameters:
to- The desired return type of the returned expression- Returns:
- The converted expression
- See Also:
-