Uses of Enum
org.controlsfx.control.WorldMapView.Country
Packages that use WorldMapView.Country
Package
Description
A package containing a number of useful controls-related classes that do not
exist in the base JavaFX distribution.
-
Uses of WorldMapView.Country in org.controlsfx.control
Methods in org.controlsfx.control that return WorldMapView.CountryModifier and TypeMethodDescriptionfinal WorldMapView.CountryWorldMapView.CountryView.getCountry()static WorldMapView.CountryReturns the enum constant of this type with the specified name.static WorldMapView.Country[]WorldMapView.Country.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.controlsfx.control that return types with arguments of type WorldMapView.CountryModifier and TypeMethodDescriptionfinal javafx.beans.property.ListProperty<WorldMapView.Country> WorldMapView.countriesProperty()A property used to store the list of countries that should be shown by the map.final javafx.beans.property.ObjectProperty<javafx.util.Callback<WorldMapView.Country, WorldMapView.CountryView>> WorldMapView.countryViewFactoryProperty()A property used to store a factory callback for creating new country views.final javafx.collections.ObservableList<WorldMapView.Country> WorldMapView.getCountries()Returns the list of countries that will be shown by the map.final javafx.util.Callback<WorldMapView.Country, WorldMapView.CountryView> WorldMapView.getCountryViewFactory()Returns the value ofWorldMapView.countryViewFactoryProperty().final javafx.collections.ObservableList<WorldMapView.Country> WorldMapView.getSelectedCountries()Returns the list of currently selected countries.final javafx.beans.property.ListProperty<WorldMapView.Country> WorldMapView.selectedCountriesProperty()A property used for storing the list of selected countries (aka "the selection model").Method parameters in org.controlsfx.control with type arguments of type WorldMapView.CountryModifier and TypeMethodDescriptionfinal voidWorldMapView.setCountries(javafx.collections.ObservableList<WorldMapView.Country> countries) Sets the list of countries that will be shown by the map.final voidWorldMapView.setCountryViewFactory(javafx.util.Callback<WorldMapView.Country, WorldMapView.CountryView> factory) Sets the value ofWorldMapView.countryViewFactoryProperty().final voidWorldMapView.setSelectedCountries(javafx.collections.ObservableList<WorldMapView.Country> countries) Sets the list of currently selected countries.Constructors in org.controlsfx.control with parameters of type WorldMapView.Country