-
- All Implemented Interfaces:
public final class PropertyFactoryFactory for custom
Property.
-
-
Method Summary
Modifier and Type Method Description static RangedIntegerPropertygetAWTColorChannelProperty(String channel)Returns a new RangedIntegerProperty with range between 255 and 0 and a name that identifies the color channel. static RangedIntegerPropertygetAWTColorChannelProperty(String channel, int value)Returns a new RangedIntegerProperty with range between 255 and 0 and a name that identifies the color channel. static RangedDoublePropertygetFXColorChannelProperty(String channel)Returns a new RangedDoubleProperty with range between 1.0 and 0.0 and a name that identifies the color channel. static RangedDoublePropertygetFXColorChannelProperty(String channel, double value)Returns a new RangedDoubleProperty with range between 1.0 and 0.0 and a name that identifies the color channel. static RangedDoublePropertygetPercentageRangedProperty(String name)Returns a new RangedDoubleProperty with range between 100 and 0 and a name that identifies the Property.static RangedDoublePropertygetPercentageRangedProperty(String name, double value)Returns a new RangedDoubleProperty with range between 100 and 0 and a name that identifies the Property.static ListProperty<String>getIncarnationsListProperty(String name)Returns a new ListProperty with all available incarnations of Alchemist found via reflection. static SetProperty<String>getIncarnationsSetProperty(String name)Returns a new SetProperty with all available incarnations of Alchemist found via reflection. -
-
Method Detail
-
getAWTColorChannelProperty
static RangedIntegerProperty getAWTColorChannelProperty(String channel)
Returns a new RangedIntegerProperty with range between 255 and 0 and a name that identifies the color channel.
- Parameters:
channel- the name to give to theProperty
-
getAWTColorChannelProperty
static RangedIntegerProperty getAWTColorChannelProperty(String channel, int value)
Returns a new RangedIntegerProperty with range between 255 and 0 and a name that identifies the color channel.
- Parameters:
channel- the name to give to thePropertyvalue- the initial value to give to theProperty
-
getFXColorChannelProperty
static RangedDoubleProperty getFXColorChannelProperty(String channel)
Returns a new RangedDoubleProperty with range between 1.0 and 0.0 and a name that identifies the color channel.
- Parameters:
channel- the name to give to theProperty
-
getFXColorChannelProperty
static RangedDoubleProperty getFXColorChannelProperty(String channel, double value)
Returns a new RangedDoubleProperty with range between 1.0 and 0.0 and a name that identifies the color channel.
- Parameters:
channel- the name to give to thePropertyvalue- the initial value to give to theProperty
-
getPercentageRangedProperty
static RangedDoubleProperty getPercentageRangedProperty(String name)
Returns a new RangedDoubleProperty with range between 100 and 0 and a name that identifies the
Property.- Parameters:
name- the name to give to theProperty
-
getPercentageRangedProperty
static RangedDoubleProperty getPercentageRangedProperty(String name, double value)
Returns a new RangedDoubleProperty with range between 100 and 0 and a name that identifies the
Property.- Parameters:
name- the name to give to thePropertyvalue- the initial value to give to theProperty
-
getIncarnationsListProperty
static ListProperty<String> getIncarnationsListProperty(String name)
Returns a new ListProperty with all available incarnations of Alchemist found via reflection.
- Parameters:
name- the name to give to the property
-
getIncarnationsSetProperty
static SetProperty<String> getIncarnationsSetProperty(String name)
Returns a new SetProperty with all available incarnations of Alchemist found via reflection.
- Parameters:
name- the name to give to the property
-
-
-
-