io.github.palexdev.mfxeffects.enums.RippleState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of materialfx-all Show documentation
Show all versions of materialfx-all Show documentation
Material Design/Modern components for JavaFX, now packed as a single Jar
The newest version!
package io.github.palexdev.mfxeffects.enums;
import io.github.palexdev.mfxeffects.ripple.base.RippleGenerator;
public enum RippleState {
/**
* Indicates that the generator is inactive, meaning that there's no animation playing, or
* that the 'effect end' animations are playing
*/
INACTIVE,
/**
* Indicates that the ripple effect has been generated and now the generator is waiting for its release,
* see {@link RippleGenerator#release()}
*/
WAITING_FOR_CLICK
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy