- java.lang.Object
-
- com.github.weisj.jsvg.nodes.AbstractSVGNode
-
- com.github.weisj.jsvg.nodes.animation.BaseAnimationNode
-
- com.github.weisj.jsvg.nodes.animation.Animate
-
- All Implemented Interfaces:
SVGNode
@ElementCategories(Animation) @PermittedContent(categories=Descriptive) public final class Animate extends BaseAnimationNode
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
TAG
-
Fields inherited from class com.github.weisj.jsvg.nodes.animation.BaseAnimationNode
track, values
-
-
Constructor Summary
Constructors Constructor Description Animate()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description @Nullable AnimatedColor
animatedColor(@NotNull ColorValue initial, @NotNull AttributeNode attributeNode)
@Nullable AnimatedFloatList
animatedFloatList(@NotNull FloatListValue initial, @NotNull AttributeNode attributeNode)
@Nullable AnimatedLength
animatedLength(@NotNull LengthValue initial, PercentageDimension dimension, @NotNull AttributeNode attributeNode)
@Nullable AnimatedPaint
animatedPaint(@NotNull SVGPaint initial, @NotNull AttributeNode attributeNode)
@Nullable AnimatedPercentage
animatedPercentage(@NotNull PercentageValue initial, @NotNull AttributeNode attributeNode)
@NotNull java.lang.String
tagName()
-
Methods inherited from class com.github.weisj.jsvg.nodes.animation.BaseAnimationNode
attributeName, build, isPlaceholder, track
-
Methods inherited from class com.github.weisj.jsvg.nodes.AbstractSVGNode
addContent, id, toString
-
-
-
-
Field Detail
-
TAG
public static final java.lang.String TAG
- See Also:
- Constant Field Values
-
-
Method Detail
-
tagName
@NotNull public @NotNull java.lang.String tagName()
-
animatedLength
@Nullable public @Nullable AnimatedLength animatedLength(@NotNull @NotNull LengthValue initial, PercentageDimension dimension, @NotNull @NotNull AttributeNode attributeNode)
-
animatedFloatList
@Nullable public @Nullable AnimatedFloatList animatedFloatList(@NotNull @NotNull FloatListValue initial, @NotNull @NotNull AttributeNode attributeNode)
-
animatedPercentage
@Nullable public @Nullable AnimatedPercentage animatedPercentage(@NotNull @NotNull PercentageValue initial, @NotNull @NotNull AttributeNode attributeNode)
-
animatedPaint
@Nullable public @Nullable AnimatedPaint animatedPaint(@NotNull @NotNull SVGPaint initial, @NotNull @NotNull AttributeNode attributeNode)
-
animatedColor
@Nullable public @Nullable AnimatedColor animatedColor(@NotNull @NotNull ColorValue initial, @NotNull @NotNull AttributeNode attributeNode)
-
-