Top Description Fields Constructors Methods
javafx.geometry

public Class Insets

extends Object
implements Interpolatable<Insets>
Class Inheritance
All Implemented Interfaces
javafx.animation.Interpolatable
Imports
com.sun.javafx.util.InterpolationUtils, javafx.animation.Interpolatable, javafx.beans.NamedArg, java.util.Objects

A set of inside offsets for the 4 side of a rectangular area
Since
JavaFX 2.0

Field Summary

Modifier and TypeField and Description
private double
public static final Insets
EMPTY

Empty insets.

private int
hash

The cached hash code, used to improve performance in situations where we cache gradients, such as in the CSS routines.

private double
private double
private double

Constructor Summary

AccessConstructor and Description
public
Insets(double
the top offset
top
,
double
the right offset
right
,
double
the bottom offset
bottom
,
double
the left offset
left
)

Constructs a new Insets instance with four different offsets.

public
Insets(double
the value used for top, bottom, right and left offset
topRightBottomLeft
)

Constructs a new Insets instance with same value for all four offsets.

Method Summary

Modifier and TypeMethod and Description
public boolean

Returns:

true if this object is the same as the obj argument; false otherwise
equals
(Object
the reference object with which to compare
obj
)

Overrides java.lang.Object.equals.

Indicates whether some other object is "equal to" this one.

public final double

Returns:

the inset on the bottom side
getBottom
()

The inset on the bottom side.

public final double

Returns:

the inset on the left side
getLeft
()

The inset on the left side.

public final double

Returns:

the inset on the right side
getRight
()

The inset on the right side.

public final double

Returns:

the inset on the top side
getTop
()

The inset on the top side.

public int

Returns:

a hash code value for the insets.
hashCode
()

Overrides java.lang.Object.hashCode.

Returns a hash code value for the insets.

public Insets
interpolate(Insets
the target value
endValue
,
double
the interpolation factor
t
)

Implements javafx.animation.Interpolatable.interpolate.

Returns an intermediate value between the value of this Interpolatable and the specified endValue using the linear interpolation factor t, ranging from 0 (inclusive) to 1 (inclusive).

public String

Returns:

a string representation for the insets.
toString
()

Overrides java.lang.Object.toString.

Returns a string representation for the insets.

Inherited from java.lang.Object:
clonefinalizegetClassnotifynotifyAllwaitwaitwait

Field Detail

bottomback to summary
private double bottom
EMPTYback to summary
public static final Insets EMPTY

Empty insets. An Insets instance with all offsets equal to zero.

hashback to summary
private int hash

The cached hash code, used to improve performance in situations where we cache gradients, such as in the CSS routines.

leftback to summary
private double left
topback to summary
private double top

Constructor Detail

Insetsback to summary
public Insets(double top, double right, double bottom, double left)

Constructs a new Insets instance with four different offsets.

Parameters
top:double

the top offset

right:double

the right offset

bottom:double

the bottom offset

left:double

the left offset

Insetsback to summary
public Insets(double topRightBottomLeft)

Constructs a new Insets instance with same value for all four offsets.

Parameters
topRightBottomLeft:double

the value used for top, bottom, right and left offset

Method Detail

equalsback to summary
public boolean equals(Object obj)

Overrides java.lang.Object.equals.

Indicates whether some other object is "equal to" this one.

Parameters
obj:Object

the reference object with which to compare

Returns:boolean

true if this object is the same as the obj argument; false otherwise

Annotations
@Override
getBottomback to summary
public final double getBottom()

The inset on the bottom side.

Returns:double

the inset on the bottom side

getLeftback to summary
public final double getLeft()

The inset on the left side.

Returns:double

the inset on the left side

getRightback to summary
public final double getRight()

The inset on the right side.

Returns:double

the inset on the right side

getTopback to summary
public final double getTop()

The inset on the top side.

Returns:double

the inset on the top side

hashCodeback to summary
public int hashCode()

Overrides java.lang.Object.hashCode.

Returns a hash code value for the insets.

Returns:int

a hash code value for the insets.

Annotations
@Override
interpolateback to summary
public Insets interpolate(Insets endValue, double t)

Implements javafx.animation.Interpolatable.interpolate.

Doc from javafx.animation.Interpolatable.interpolate.

Returns an intermediate value between the value of this Interpolatable and the specified endValue using the linear interpolation factor t, ranging from 0 (inclusive) to 1 (inclusive).

The returned value might not be a new instance; the implementation might also return one of the two existing instances if the intermediate value would be equal to one of the existing values. However, this is an optimization and applications should not assume any particular identity of the returned value.

Parameters
endValue:Insets

the target value

t:double

the interpolation factor

Returns:Insets

the intermediate value

Annotations
@Override
Exceptions
NullPointerException:
if endValue is null
Since
24
toStringback to summary
public String toString()

Overrides java.lang.Object.toString.

Returns a string representation for the insets.

Returns:String

a string representation for the insets.

Annotations
@Override