- java.lang.Object
-
- javafx.animation.Animation
-
- javafx.animation.Transition
-
- javafx.animation.PauseTransition
-
public final class PauseTransition extends Transition
ThisTransition
executes anAnimation.onFinished
at the end of itsduration
.Code Segment Example:
import javafx.scene.shape.*; import javafx.animation.*; ... Rectangle rect = new Rectangle (100, 40, 100, 100); rect.setArcHeight(50); rect.setArcWidth(50); rect.setFill(Color.VIOLET); RotateTransition rt = new RotateTransition(Duration.millis(3000), rect); rt.setByAngle(180); rt.setCycleCount(4f); rt.setAutoReverse(true); SequentialTransition seqTransition = new SequentialTransition ( new PauseTransition(Duration.millis(1000)), // wait a second rt ); seqTransition.play(); ...
- Since:
- JavaFX 2.0
- See Also:
Transition
,Animation
-
-
Property Summary
Properties Type Property Description ObjectProperty<Duration>
duration
The duration of thisTransition
.-
Properties declared in class javafx.animation.Animation
autoReverse, currentRate, currentTime, cycleCount, cycleDuration, delay, onFinished, rate, status, totalDuration
-
Properties declared in class javafx.animation.Transition
interpolator
-
-
Nested Class Summary
-
Nested classes/interfaces declared in class javafx.animation.Animation
Animation.Status
-
-
Field Summary
-
Fields declared in class javafx.animation.Animation
INDEFINITE
-
-
Constructor Summary
Constructors Constructor Description PauseTransition()
The constructor ofPauseTransition
PauseTransition(Duration duration)
The constructor ofPauseTransition
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectProperty<Duration>
durationProperty()
The duration of thisTransition
.Duration
getDuration()
Gets the value of the property duration.void
setDuration(Duration value)
Sets the value of the property duration.-
Methods declared in class javafx.animation.Animation
autoReverseProperty, currentRateProperty, currentTimeProperty, cycleCountProperty, cycleDurationProperty, delayProperty, getCuePoints, getCurrentRate, getCurrentTime, getCycleCount, getCycleDuration, getDelay, getOnFinished, getRate, getStatus, getTargetFramerate, getTotalDuration, isAutoReverse, jumpTo, jumpTo, onFinishedProperty, pause, play, playFrom, playFrom, playFromStart, rateProperty, setAutoReverse, setCycleCount, setCycleDuration, setDelay, setOnFinished, setRate, setStatus, statusProperty, stop, totalDurationProperty
-
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods declared in class javafx.animation.Transition
getCachedInterpolator, getInterpolator, getParentTargetNode, interpolate, interpolatorProperty, setInterpolator
-
-
-
-
Property Detail
-
duration
public final ObjectProperty<Duration> durationProperty
The duration of thisTransition
.It is not possible to change the
duration
of a runningPauseTransition
. If the value ofduration
is changed for a runningPauseTransition
, the animation has to be stopped and started again to pick up the new value.Note: While the unit of
duration
is a millisecond, the granularity depends on the underlying operating system and will in general be larger. For example animations on desktop systems usually run with a maximum of 60fps which gives a granularity of ~17 ms. Setting duration to value lower thanDuration.ZERO
will result inIllegalArgumentException
.- Default value:
- 400ms
- See Also:
getDuration()
,setDuration(Duration)
-
-
Constructor Detail
-
PauseTransition
public PauseTransition(Duration duration)
The constructor ofPauseTransition
.- Parameters:
duration
- The duration of thePauseTransition
-
PauseTransition
public PauseTransition()
The constructor ofPauseTransition
-
-
Method Detail
-
setDuration
public final void setDuration(Duration value)
Sets the value of the property duration.- Property description:
- The duration of this
Transition
.It is not possible to change the
duration
of a runningPauseTransition
. If the value ofduration
is changed for a runningPauseTransition
, the animation has to be stopped and started again to pick up the new value.Note: While the unit of
duration
is a millisecond, the granularity depends on the underlying operating system and will in general be larger. For example animations on desktop systems usually run with a maximum of 60fps which gives a granularity of ~17 ms. Setting duration to value lower thanDuration.ZERO
will result inIllegalArgumentException
. - Default value:
- 400ms
-
getDuration
public final Duration getDuration()
Gets the value of the property duration.- Property description:
- The duration of this
Transition
.It is not possible to change the
duration
of a runningPauseTransition
. If the value ofduration
is changed for a runningPauseTransition
, the animation has to be stopped and started again to pick up the new value.Note: While the unit of
duration
is a millisecond, the granularity depends on the underlying operating system and will in general be larger. For example animations on desktop systems usually run with a maximum of 60fps which gives a granularity of ~17 ms. Setting duration to value lower thanDuration.ZERO
will result inIllegalArgumentException
. - Default value:
- 400ms
-
durationProperty
public final ObjectProperty<Duration> durationProperty()
The duration of thisTransition
.It is not possible to change the
duration
of a runningPauseTransition
. If the value ofduration
is changed for a runningPauseTransition
, the animation has to be stopped and started again to pick up the new value.Note: While the unit of
duration
is a millisecond, the granularity depends on the underlying operating system and will in general be larger. For example animations on desktop systems usually run with a maximum of 60fps which gives a granularity of ~17 ms. Setting duration to value lower thanDuration.ZERO
will result inIllegalArgumentException
.- Default value:
- 400ms
- See Also:
getDuration()
,setDuration(Duration)
-
-