Class ExprColorFromHexCode
- All Implemented Interfaces:
Debuggable,Expression<Color>,Loopable<Color>,Simplifiable<Expression<? extends Color>>,SyntaxElement,Converter<String,,Color> RuntimeErrorProducer,SyntaxRuntimeErrorProducer
@Name("Color from Hex Code")
@Description("Returns a proper argb color from a hex code string. The hex code must contain RRGGBB values, but can also contain a leading # or AARRGGBB format. Invalid codes will cause runtime errors.")
@Example("send color from hex code \"#FFBBA7\"") @Example("send color from hex code \"FFBBA7\"") @Example("send color from hex code \"#AAFFBBA7\"")
@Since("2.14")
public class ExprColorFromHexCode
extends ch.njol.skript.expressions.base.SimplePropertyExpression<String,Color>
-
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
Methods inherited from class ch.njol.skript.expressions.base.SimplePropertyExpression
get, initMethods inherited from class ch.njol.skript.expressions.base.PropertyExpression
get, get, getAll, getAnd, getDefaultPatterns, getExpr, getPatterns, infoBuilder, isSingle, register, register, registerDefault, registerDefault, setExprMethods inherited from class ch.njol.skript.lang.util.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 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface ch.njol.skript.lang.Expression
beforeChange, canBeSingle, canReturn, 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
-
ExprColorFromHexCode
public ExprColorFromHexCode()
-
-
Method Details
-
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
-
toString
- Specified by:
toStringin interfaceDebuggable- Overrides:
toStringin classch.njol.skript.expressions.base.SimplePropertyExpression<String,Color> - Parameters:
event- The event to get information from. This is always null if debug == false.debug- If true this should print more information, if false this should print what is shown to the end user- Returns:
- String representation of this object
-
simplify
Description copied from interface:SimplifiableSimplifies this object. This should be called immediately after init() returns true. If simplification is not possible, the object is returned as is.
References to the original object should be replaced with the simplified object.
Any returned object should attempt to maintain the original value ofDebuggable.toString(Event, boolean). An addition indicating that the value was simplified can be added in the debug string. SeeSimplifiedLiteralfor an example.
Simplification should never invalidate contracts. For example, any simplified expression should take care to return the same or a more specific type than the original expression, never a more generic type. Likewise, be sure to maintain the behavior of change() and acceptsChange(). Failure to do so can result in unexpected behavior and tricky bugs.
Finally, simplified results should updateExpression.getSource()to point to the expression prior to simplification. This makes maintaining the above contracts easier.- Specified by:
simplifyin interfaceExpression<Color>- Specified by:
simplifyin interfaceSimplifiable<Expression<? extends Color>>- Overrides:
simplifyin classch.njol.skript.expressions.base.PropertyExpression<String,Color> - Returns:
- the simplified object.
- See Also:
-