Interface IsDefaultAnimations
-
- All Known Subinterfaces:
IsAnimations
- All Known Implementing Classes:
AbstractAnimations,Animations,Animations,DefaultAnimations,DefaultChartAnimations,UpdateConfiguration
public interface IsDefaultAnimationsInterface to define animations for animation element properties defaults, ANIMATIONS name space.- Author:
- Andrea "Stock" Stocchero
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default booleancontains(String collection)Returnstrueif an animation collection instance is stored in the animation options.booleancontains(Key collection)Returnstrueif an animation collection instance is stored in the animation options.default IsDefaultAnimationCollectionget(String collection)Returns an animation collection instance if stored in the animation options.IsDefaultAnimationCollectionget(Key collection)Returns an animation collection instance if stored in the animation options.
-
-
-
Method Detail
-
contains
boolean contains(Key collection)
Returnstrueif an animation collection instance is stored in the animation options.- Parameters:
collection- collection instance used to check in the animation options- Returns:
trueif an animation collection instance is stored in the animation options
-
contains
default boolean contains(String collection)
Returnstrueif an animation collection instance is stored in the animation options.- Parameters:
collection- collection instance used to check in the animation options- Returns:
trueif an animation collection instance is stored in the animation options
-
get
IsDefaultAnimationCollection get(Key collection)
Returns an animation collection instance if stored in the animation options.- Parameters:
collection- collection instance used to get for animation options- Returns:
- an animation collection instance or
nullif does not exists
-
get
default IsDefaultAnimationCollection get(String collection)
Returns an animation collection instance if stored in the animation options.- Parameters:
collection- collection instance used to get for animation options- Returns:
- an animation collection instance or
nullif does not exists
-
-