public final class Border extends Object
Region
. A Border is an immutable object which
encapsulates the entire set of data required to render the border
of a Region. Because this class is immutable, you can freely reuse the same
Border on many different Regions. Please refer to
JavaFX CSS Reference
for a complete description
of the CSS rules for styling the border of a Region.
Every Border is comprised of strokes
and / or
images
. Neither list will ever be null, but either or
both may be empty. When rendering, if no images are specified or no
image succeeds in loading, then all strokes will be rendered in order.
If any image is specified and succeeds in loading, then no strokes will
be drawn, although they will still contribute to the insets
and outsets
of the Border.
The Border's outsets
define any extension of the drawing area of a Region
which is necessary to account for all border drawing and positioning. These outsets are defined
by both the BorderStroke
s and BorderImage
s specified on this Border.
Outsets are strictly non-negative.
getInsets()
are used to define the inner-most edge of all of the borders. It also is
always strictly non-negative. The Region uses the insets of the Background
and Border
and the Region's padding
to determine the
Region insets
, which define the content area
for any children of the Region. The outsets of a Border together with the outsets of a Background
and the width and height of the Region define the geometric bounds of the Region (which in
turn contribute to the layoutBounds
, boundsInLocal
, and boundsInParent
).
A Border is most often used in cases where you want to skin the Region with an image,
often used in conjunction with 9-patch scaling techniques. In such cases, you may
also specify a stroked border which is only used when the image fails to load for some
reason.Modifier and Type | Field and Description |
---|---|
static Border |
EMPTY
An empty Border, useful to use instead of null.
|
Constructor and Description |
---|
Border(BorderImage... images)
Creates a new Border by supplying an array of BorderImages.
|
Border(BorderStroke... strokes)
Creates a new Border by supplying an array of BorderStrokes.
|
Border(BorderStroke[] strokes,
BorderImage[] images)
Creates a new Border by supplying an array of BorderStrokes and BorderImages.
|
Border(List<BorderStroke> strokes,
List<BorderImage> images)
Creates a new Border by supplying a List of BorderStrokes and BorderImages.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object o) |
static List<CssMetaData<? extends Styleable,?>> |
getClassCssMetaData() |
List<BorderImage> |
getImages()
The list of BorderImages which together define the images to use
instead of stroke for this Border.
|
Insets |
getInsets()
The insets define the distance from the edge of the Region to the inner-most edge
of the border, if that distance is non-negative.
|
Insets |
getOutsets()
The outsets of the border define the outer-most edge of the border to be drawn.
|
List<BorderStroke> |
getStrokes()
The list of BorderStrokes which together define the stroked portion
of this Border.
|
int |
hashCode() |
boolean |
isEmpty()
Gets whether the Border is empty.
|
public static final Border EMPTY
public Border(BorderStroke... strokes)
strokes
or outsets
or insets
.strokes
- The strokes. This may be null, and may contain nulls. Any
contained nulls are filtered out and not included in the
final List of strokes. A null array becomes an empty List.
If both strokes and images are specified, and if any one
of the images specified succeeds in loading, then no
strokes are shown. In this way, strokes can be defined as
a fallback in the case that an image failed to load.public Border(BorderImage... images)
images
or outsets
or insets
.images
- The images. This may be null, and may contain nulls. Any
contained nulls are filtered out and not included in the
final List of images. A null array becomes an empty List.public Border(List<BorderStroke> strokes, List<BorderImage> images)
strokes
or images
, outsets
, or
insets
.strokes
- The strokes. This may be null, and may contain nulls. Any
contained nulls are filtered out and not included in the
final List of strokes. A null array becomes an empty List.
If both strokes and images are specified, and if any one
of the images specified succeeds in loading, then no
strokes are shown. In this way, strokes can be defined as
a fallback in the case that an image failed to load.images
- The images. This may be null, and may contain nulls. Any
contained nulls are filtered out and not included in the
final List of images. A null array becomes an empty List.public Border(BorderStroke[] strokes, BorderImage[] images)
strokes
or images
, outsets
, or
insets
.strokes
- The strokes. This may be null, and may contain nulls. Any
contained nulls are filtered out and not included in the
final List of strokes. A null array becomes an empty List.
If both strokes and images are specified, and if any one
of the images specified succeeds in loading, then no
strokes are shown. In this way, strokes can be defined as
a fallback in the case that an image failed to load.images
- The images. This may be null, and may contain nulls. Any
contained nulls are filtered out and not included in the
final List of images. A null array becomes an empty List.public static List<CssMetaData<? extends Styleable,?>> getClassCssMetaData()
public final List<BorderStroke> getStrokes()
public final List<BorderImage> getImages()
strokes
are not drawn. If this list is null or no images
succeeded in loading, then any specified strokes
are drawn.
This List is unmodifiable and immutable. It will never be null. It will never contain any null elements.
public final Insets getOutsets()
public final Insets getInsets()
public final boolean isEmpty()
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 2008, 2017, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.