Package com.luciad.gui.javafx
Enum Class TLcdOverlayPane.Location
- All Implemented Interfaces:
Serializable
,Comparable<TLcdOverlayPane.Location>
,Constable
- Enclosing class:
TLcdOverlayPane
This enumeration identifies the different locations where nodes can be placed when
added to the overlay pane.
- Since:
- 2020.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionConstant representing the center of the container.Constant representing the center of the right side.Constant representing the center of the upper side.Constant representing the top right corner.Constant representing the top left corner.Constant representing the center of the lower side.Constant representing the bottom right corner.Constant representing the bottom left corner.Constant representing the center of the left side. -
Method Summary
Modifier and TypeMethodDescriptionstatic TLcdOverlayPane.Location
Returns the enum constant of this class with the specified name.static TLcdOverlayPane.Location[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NORTH
Constant representing the center of the upper side. -
NORTH_WEST
Constant representing the top left corner. -
WEST
Constant representing the center of the left side. -
SOUTH_WEST
Constant representing the bottom left corner. -
SOUTH
Constant representing the center of the lower side. -
SOUTH_EAST
Constant representing the bottom right corner. -
EAST
Constant representing the center of the right side. -
NORTH_EAST
Constant representing the top right corner. -
CENTER
Constant representing the center of the container.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-