Uses of Class
java.lang.Boolean
-
Packages that use Boolean Package Description com.sun.nio.sctp A Java API for Stream Control Transport Protocol.java.awt.font Provides classes and interface relating to fonts.java.lang Provides classes that are fundamental to the design of the Java programming language.java.net Provides the classes for implementing networking applications.java.time.format Provides classes to print and parse dates and times.java.util Contains the collections framework, some internationalization support classes, a service loader, properties, random number generation, string parsing and scanning classes, base64 encoding and decoding, a bit array, and several miscellaneous utility classes.java.util.concurrent Utility classes commonly useful in concurrent programming.java.util.stream Classes to support functional-style operations on streams of elements, such as map-reduce transformations on collections.javafx.beans.binding Provides classes that create and operate on aBinding
that calculates a value that depends on one or more sources.javafx.beans.property The packagejavafx.beans.property
defines read-only properties and writable properties, plus a number of implementations.javafx.beans.value The packagejavafx.beans.value
contains the two fundamental interfacesObservableValue
andWritableValue
and all of its sub-interfaces.javafx.css Provides API for making properties styleable via CSS and for supporting pseudo-class state.javafx.css.converter Provides variousStyleConverter
classes that convert CSS parsed values.javafx.scene Provides the core set of base classes for the JavaFX Scene Graph API.javafx.scene.control The JavaFX User Interface Controls (UI Controls or just Controls) are specialized Nodes in the JavaFX Scenegraph especially suited for reuse in many different application contexts.javafx.scene.control.cell Thejavafx.scene.control.cell
package is where all cell-related classes are located, other than the core classes such asCell
,IndexedCell
,ListCell
,TreeCell
, andTableCell
.javafx.scene.layout Provides classes to support user interface layout.javafx.scene.web This package provides means for loading and displaying Web content.javax.management Provides the core classes for the Java Management Extensions.javax.management.loading Provides the classes which implement advanced dynamic loading.javax.management.modelmbean Provides the definition of the ModelMBean classes.javax.management.monitor Provides the definition of the monitor classes.javax.management.openmbean Provides the open data types and Open MBean descriptor classes.javax.management.relation Provides the definition of the Relation Service.javax.management.timer Provides the definition of the Timer MBean.javax.swing Provides a set of "lightweight" (all-Java language) components that, to the maximum degree possible, work the same on all platforms.javax.swing.filechooser Contains classes and interfaces used by theJFileChooser
component.javax.swing.plaf.basic Provides user interface objects built according to the Basic look and feel.javax.tools Provides interfaces for tools which can be invoked from a program, for example, compilers.jdk.net Platform specific socket options for thejava.net
andjava.nio.channels
socket classes. -
-
Uses of Boolean in com.sun.nio.sctp
Fields in com.sun.nio.sctp with type parameters of type Boolean Modifier and Type Field Description static SctpSocketOption<Boolean>
SctpStandardSocketOptions. SCTP_DISABLE_FRAGMENTS
Enables or disables message fragmentation.static SctpSocketOption<Boolean>
SctpStandardSocketOptions. SCTP_EXPLICIT_COMPLETE
Enables or disables explicit message completion.static SctpSocketOption<Boolean>
SctpStandardSocketOptions. SCTP_NODELAY
Enables or disables a Nagle-like algorithm. -
Uses of Boolean in java.awt.font
Fields in java.awt.font declared as Boolean Modifier and Type Field Description static Boolean
TextAttribute. RUN_DIRECTION_LTR
Left-to-right run direction.static Boolean
TextAttribute. RUN_DIRECTION_RTL
Right-to-left run direction.static Boolean
TextAttribute. STRIKETHROUGH_ON
A single strikethrough.static Boolean
TextAttribute. SWAP_COLORS_ON
Swap foreground and background. -
Uses of Boolean in java.lang
Fields in java.lang declared as Boolean Modifier and Type Field Description static Boolean
Boolean. FALSE
TheBoolean
object corresponding to the primitive valuefalse
.static Boolean
Boolean. TRUE
TheBoolean
object corresponding to the primitive valuetrue
.Fields in java.lang with type parameters of type Boolean Modifier and Type Field Description static Class<Boolean>
Boolean. TYPE
The Class object representing the primitive type boolean.Methods in java.lang that return Boolean Modifier and Type Method Description static Boolean
Boolean. valueOf(boolean b)
Returns aBoolean
instance representing the specifiedboolean
value.static Boolean
Boolean. valueOf(String s)
Returns aBoolean
with a value represented by the specified string.Methods in java.lang with parameters of type Boolean Modifier and Type Method Description int
Boolean. compareTo(Boolean b)
Compares thisBoolean
instance with another. -
Uses of Boolean in java.net
Fields in java.net with type parameters of type Boolean Modifier and Type Field Description static SocketOption<Boolean>
StandardSocketOptions. IP_MULTICAST_LOOP
Loopback for Internet Protocol (IP) multicast datagrams.static SocketOption<Boolean>
StandardSocketOptions. SO_BROADCAST
Allow transmission of broadcast datagrams.static SocketOption<Boolean>
StandardSocketOptions. SO_KEEPALIVE
Keep connection alive.static SocketOption<Boolean>
StandardSocketOptions. SO_REUSEADDR
Re-use address.static SocketOption<Boolean>
StandardSocketOptions. SO_REUSEPORT
Re-use port.static SocketOption<Boolean>
StandardSocketOptions. TCP_NODELAY
Disable the Nagle algorithm. -
Uses of Boolean in java.time.format
Methods in java.time.format that return types with arguments of type Boolean Modifier and Type Method Description static TemporalQuery<Boolean>
DateTimeFormatter. parsedLeapSecond()
A query that provides access to whether a leap-second was parsed. -
Uses of Boolean in java.util
Method parameters in java.util with type arguments of type Boolean Modifier and Type Method Description static <E> Set<E>
Collections. newSetFromMap(Map<E,Boolean> map)
Returns a set backed by the specified map. -
Uses of Boolean in java.util.concurrent
Methods in java.util.concurrent that return types with arguments of type Boolean Modifier and Type Method Description static <K> ConcurrentHashMap.KeySetView<K,Boolean>
ConcurrentHashMap. newKeySet()
Creates a newSet
backed by a ConcurrentHashMap from the given type toBoolean.TRUE
.static <K> ConcurrentHashMap.KeySetView<K,Boolean>
ConcurrentHashMap. newKeySet(int initialCapacity)
Creates a newSet
backed by a ConcurrentHashMap from the given type toBoolean.TRUE
. -
Uses of Boolean in java.util.stream
Methods in java.util.stream that return types with arguments of type Boolean Modifier and Type Method Description static <T> Collector<T,?,Map<Boolean,List<T>>>
Collectors. partitioningBy(Predicate<? super T> predicate)
Returns aCollector
which partitions the input elements according to aPredicate
, and organizes them into aMap<Boolean, List<T>>
.static <T,D,A> Collector<T,?,Map<Boolean,D>>
Collectors. partitioningBy(Predicate<? super T> predicate, Collector<? super T,A,D> downstream)
Returns aCollector
which partitions the input elements according to aPredicate
, reduces the values in each partition according to anotherCollector
, and organizes them into aMap<Boolean, D>
whose values are the result of the downstream reduction. -
Uses of Boolean in javafx.beans.binding
Methods in javafx.beans.binding that return types with arguments of type Boolean Modifier and Type Method Description ObjectExpression<Boolean>
BooleanExpression. asObject()
Creates anObjectExpression
that holds the value of thisBooleanExpression
.Method parameters in javafx.beans.binding with type arguments of type Boolean Modifier and Type Method Description static BooleanExpression
BooleanExpression. booleanExpression(ObservableValue<Boolean> value)
Returns aBooleanExpression
that wraps anObservableValue
.static BooleanBinding
Bindings. booleanValueAt(ObservableList<Boolean> op, int index)
Creates a newBooleanBinding
that contains the element of anObservableList
at the specified position.static BooleanBinding
Bindings. booleanValueAt(ObservableList<Boolean> op, ObservableIntegerValue index)
Creates a newBooleanBinding
that contains the element of anObservableList
at the specified position.static BooleanBinding
Bindings. booleanValueAt(ObservableList<Boolean> op, ObservableNumberValue index)
Creates a newBooleanBinding
that contains the element of anObservableList
at the specified position.static <K> BooleanBinding
Bindings. booleanValueAt(ObservableMap<K,Boolean> op, ObservableValue<? extends K> key)
Creates a newBooleanBinding
that contains the mapping of a specific key in anObservableMap
.static <K> BooleanBinding
Bindings. booleanValueAt(ObservableMap<K,Boolean> op, K key)
Creates a newBooleanBinding
that contains the mapping of a specific key in anObservableMap
.static BooleanBinding
Bindings. createBooleanBinding(Callable<Boolean> func, Observable... dependencies)
Helper function to create a customBooleanBinding
. -
Uses of Boolean in javafx.beans.property
Methods in javafx.beans.property that return types with arguments of type Boolean Modifier and Type Method Description ObjectProperty<Boolean>
BooleanProperty. asObject()
Creates anObjectProperty
that holds the value of thisBooleanProperty
.ReadOnlyObjectProperty<Boolean>
ReadOnlyBooleanProperty. asObject()
Creates aReadOnlyObjectProperty
that holds the value of thisReadOnlyBooleanProperty
.Method parameters in javafx.beans.property with type arguments of type Boolean Modifier and Type Method Description void
BooleanPropertyBase. bind(ObservableValue<? extends Boolean> rawObservable)
Create a unidirection binding for thisProperty
.static BooleanProperty
BooleanProperty. booleanProperty(Property<Boolean> property)
Returns aBooleanProperty
that wraps aProperty
.static ReadOnlyBooleanProperty
ReadOnlyBooleanProperty. readOnlyBooleanProperty(ReadOnlyProperty<Boolean> property)
Returns aReadOnlyBooleanProperty
that wraps aReadOnlyProperty
. -
Uses of Boolean in javafx.beans.value
Methods in javafx.beans.value with parameters of type Boolean Modifier and Type Method Description void
WritableBooleanValue. setValue(Boolean value)
Set the wrapped value. -
Uses of Boolean in javafx.css
Methods in javafx.css that return types with arguments of type Boolean Modifier and Type Method Description CssMetaData<S,Boolean>
StyleablePropertyFactory. createBooleanCssMetaData(String property, Function<S,StyleableProperty<Boolean>> function)
Create a CssMetaData<S, Boolean> with initial value and inherit flag both defaulting to false.CssMetaData<S,Boolean>
StyleablePropertyFactory. createBooleanCssMetaData(String property, Function<S,StyleableProperty<Boolean>> function, boolean initialValue)
Create a CssMetaData<S, Boolean> with initial value, and inherit flag defaulting to false.CssMetaData<S,Boolean>
StyleablePropertyFactory. createBooleanCssMetaData(String property, Function<S,StyleableProperty<Boolean>> function, boolean initialValue, boolean inherits)
Create a CssMetaData<S, Boolean> with initial value, and inherit flag.StyleableProperty<Boolean>
StyleablePropertyFactory. createStyleableBooleanProperty(S styleable, String propertyName, String cssProperty)
Create a StyleableProperty<Boolean> using previously created CssMetaData for the givencssProperty
.StyleableProperty<Boolean>
StyleablePropertyFactory. createStyleableBooleanProperty(S styleable, String propertyName, String cssProperty, Function<S,StyleableProperty<Boolean>> function)
Create a StyleableProperty<Boolean>.StyleableProperty<Boolean>
StyleablePropertyFactory. createStyleableBooleanProperty(S styleable, String propertyName, String cssProperty, Function<S,StyleableProperty<Boolean>> function, boolean initialValue)
Create a StyleableProperty<Boolean> with initial value.StyleableProperty<Boolean>
StyleablePropertyFactory. createStyleableBooleanProperty(S styleable, String propertyName, String cssProperty, Function<S,StyleableProperty<Boolean>> function, boolean initialValue, boolean inherits)
Create a StyleableProperty<Boolean> with initial value and inherit flag.static StyleConverter<String,Boolean>
StyleConverter. getBooleanConverter()
Return aStyleConverter
that converts "true" or "false" toBoolean
.Method parameters in javafx.css with type arguments of type Boolean Modifier and Type Method Description CssMetaData<S,Boolean>
StyleablePropertyFactory. createBooleanCssMetaData(String property, Function<S,StyleableProperty<Boolean>> function)
Create a CssMetaData<S, Boolean> with initial value and inherit flag both defaulting to false.CssMetaData<S,Boolean>
StyleablePropertyFactory. createBooleanCssMetaData(String property, Function<S,StyleableProperty<Boolean>> function, boolean initialValue)
Create a CssMetaData<S, Boolean> with initial value, and inherit flag defaulting to false.CssMetaData<S,Boolean>
StyleablePropertyFactory. createBooleanCssMetaData(String property, Function<S,StyleableProperty<Boolean>> function, boolean initialValue, boolean inherits)
Create a CssMetaData<S, Boolean> with initial value, and inherit flag.StyleableProperty<Boolean>
StyleablePropertyFactory. createStyleableBooleanProperty(S styleable, String propertyName, String cssProperty, Function<S,StyleableProperty<Boolean>> function)
Create a StyleableProperty<Boolean>.StyleableProperty<Boolean>
StyleablePropertyFactory. createStyleableBooleanProperty(S styleable, String propertyName, String cssProperty, Function<S,StyleableProperty<Boolean>> function, boolean initialValue)
Create a StyleableProperty<Boolean> with initial value.StyleableProperty<Boolean>
StyleablePropertyFactory. createStyleableBooleanProperty(S styleable, String propertyName, String cssProperty, Function<S,StyleableProperty<Boolean>> function, boolean initialValue, boolean inherits)
Create a StyleableProperty<Boolean> with initial value and inherit flag.Constructor parameters in javafx.css with type arguments of type Boolean Constructor Description SimpleStyleableBooleanProperty(CssMetaData<? extends Styleable,Boolean> cssMetaData)
The constructor of theSimpleStyleableBooleanProperty
.SimpleStyleableBooleanProperty(CssMetaData<? extends Styleable,Boolean> cssMetaData, boolean initialValue)
The constructor of theSimpleStyleableBooleanProperty
.SimpleStyleableBooleanProperty(CssMetaData<? extends Styleable,Boolean> cssMetaData, Object bean, String name)
The constructor of theSimpleStyleableBooleanProperty
.SimpleStyleableBooleanProperty(CssMetaData<? extends Styleable,Boolean> cssMetaData, Object bean, String name, boolean initialValue)
The constructor of theSimpleStyleableBooleanProperty
. -
Uses of Boolean in javafx.css.converter
Methods in javafx.css.converter that return types with arguments of type Boolean Modifier and Type Method Description static StyleConverter<String,Boolean>
BooleanConverter. getInstance()
-
Uses of Boolean in javafx.scene
Methods in javafx.scene that return Boolean Modifier and Type Method Description protected Boolean
Node. getInitialFocusTraversable()
Returns the initial focus traversable state of this node, for use by the JavaFX CSS engine to correctly set its initial value. -
Uses of Boolean in javafx.scene.control
Fields in javafx.scene.control with type parameters of type Boolean Modifier and Type Field Description static Callback<TableView.ResizeFeatures,Boolean>
TableView. CONSTRAINED_RESIZE_POLICY
Simple policy that ensures the width of all visible leaf columns in this table sum up to equal the width of the table itself.static Callback<TreeTableView.ResizeFeatures,Boolean>
TreeTableView. CONSTRAINED_RESIZE_POLICY
Simple policy that ensures the width of all visible leaf columns in this table sum up to equal the width of the table itself.static Callback<TableView,Boolean>
TableView. DEFAULT_SORT_POLICY
The defaultsort policy
that this TableView will use if no other policy is specified.static Callback<TreeTableView,Boolean>
TreeTableView. DEFAULT_SORT_POLICY
The defaultsort policy
that this TreeTableView will use if no other policy is specified.static Callback<TableView.ResizeFeatures,Boolean>
TableView. UNCONSTRAINED_RESIZE_POLICY
Very simple resize policy that just resizes the specified column by the provided delta and shifts all other columns (to the right of the given column) further to the right (when the delta is positive) or to the left (when the delta is negative).static Callback<TreeTableView.ResizeFeatures,Boolean>
TreeTableView. UNCONSTRAINED_RESIZE_POLICY
Very simple resize policy that just resizes the specified column by the provided delta and shifts all other columns (to the right of the given column) further to the right (when the delta is positive) or to the left (when the delta is negative).Methods in javafx.scene.control that return Boolean Modifier and Type Method Description protected Boolean
Accordion. getInitialFocusTraversable()
Returns the initial focus traversable state of this control, for use by the JavaFX CSS engine to correctly set its initial value.protected Boolean
ButtonBar. getInitialFocusTraversable()
Returns the initial focus traversable state of this control, for use by the JavaFX CSS engine to correctly set its initial value.protected Boolean
Cell. getInitialFocusTraversable()
Returns the initial focus traversable state of this control, for use by the JavaFX CSS engine to correctly set its initial value.protected Boolean
Control. getInitialFocusTraversable()
Returns the initial focus traversable state of this control, for use by the JavaFX CSS engine to correctly set its initial value.protected Boolean
Label. getInitialFocusTraversable()
Returns the initial focus traversable state of this control, for use by the JavaFX CSS engine to correctly set its initial value.protected Boolean
MenuBar. getInitialFocusTraversable()
Returns the initial focus traversable state of this control, for use by the JavaFX CSS engine to correctly set its initial value.protected Boolean
ProgressBar. getInitialFocusTraversable()
Returns the initial focus traversable state of this control, for use by the JavaFX CSS engine to correctly set its initial value.protected Boolean
ProgressIndicator. getInitialFocusTraversable()
Returns the initial focus traversable state of this control, for use by the JavaFX CSS engine to correctly set its initial value.protected Boolean
ScrollBar. getInitialFocusTraversable()
Returns the initial focus traversable state of this control, for use by the JavaFX CSS engine to correctly set its initial value.protected Boolean
ScrollPane. getInitialFocusTraversable()
Returns the initial focus traversable state of this control, for use by the JavaFX CSS engine to correctly set its initial value.protected Boolean
Separator. getInitialFocusTraversable()
Returns the initial focus traversable state of this control, for use by the JavaFX CSS engine to correctly set its initial value.protected Boolean
SplitPane. getInitialFocusTraversable()
Returns the initial focus traversable state of this control, for use by the JavaFX CSS engine to correctly set its initial value.protected Boolean
ToolBar. getInitialFocusTraversable()
Returns the initial focus traversable state of this control, for use by the JavaFX CSS engine to correctly set its initial value.static Boolean
SplitPane. isResizableWithParent(Node node)
Return true if the node is resizable when the parent container is resized false otherwise.Methods in javafx.scene.control that return types with arguments of type Boolean Modifier and Type Method Description ObjectProperty<Callback<TableView.ResizeFeatures,Boolean>>
TableView. columnResizePolicyProperty()
This is the function called when the user completes a column-resize operation.ObjectProperty<Callback<TreeTableView.ResizeFeatures,Boolean>>
TreeTableView. columnResizePolicyProperty()
This is the function called when the user completes a column-resize operation.Callback<TableView.ResizeFeatures,Boolean>
TableView. getColumnResizePolicy()
Gets the value of the property columnResizePolicy.Callback<TreeTableView.ResizeFeatures,Boolean>
TreeTableView. getColumnResizePolicy()
Gets the value of the property columnResizePolicy.Callback<TableView<S>,Boolean>
TableView. getSortPolicy()
Gets the value of the property sortPolicy.Callback<TreeTableView<S>,Boolean>
TreeTableView. getSortPolicy()
Gets the value of the property sortPolicy.ObjectProperty<Callback<TableView<S>,Boolean>>
TableView. sortPolicyProperty()
The sort policy specifies how sorting in this TableView should be performed.ObjectProperty<Callback<TreeTableView<S>,Boolean>>
TreeTableView. sortPolicyProperty()
The sort policy specifies how sorting in this TreeTableView should be performed.Methods in javafx.scene.control with parameters of type Boolean Modifier and Type Method Description static void
SplitPane. setResizableWithParent(Node node, Boolean value)
Sets a node in the SplitPane to be resizable or not when the SplitPane is resized.Method parameters in javafx.scene.control with type arguments of type Boolean Modifier and Type Method Description void
TableView. setColumnResizePolicy(Callback<TableView.ResizeFeatures,Boolean> callback)
Sets the value of the property columnResizePolicy.void
TreeTableView. setColumnResizePolicy(Callback<TreeTableView.ResizeFeatures,Boolean> callback)
Sets the value of the property columnResizePolicy.void
TableView. setSortPolicy(Callback<TableView<S>,Boolean> callback)
Sets the value of the property sortPolicy.void
TreeTableView. setSortPolicy(Callback<TreeTableView<S>,Boolean> callback)
Sets the value of the property sortPolicy. -
Uses of Boolean in javafx.scene.control.cell
Methods in javafx.scene.control.cell that return types with arguments of type Boolean Modifier and Type Method Description static <S> Callback<TableColumn<S,Boolean>,TableCell<S,Boolean>>
CheckBoxTableCell. forTableColumn(TableColumn<S,Boolean> column)
Creates a cell factory for use in aTableColumn
cell factory.static <S> Callback<TableColumn<S,Boolean>,TableCell<S,Boolean>>
CheckBoxTableCell. forTableColumn(TableColumn<S,Boolean> column)
Creates a cell factory for use in aTableColumn
cell factory.static <S> Callback<TreeTableColumn<S,Boolean>,TreeTableCell<S,Boolean>>
CheckBoxTreeTableCell. forTreeTableColumn(TreeTableColumn<S,Boolean> column)
Creates a cell factory for use in aTreeTableColumn
cell factory.static <S> Callback<TreeTableColumn<S,Boolean>,TreeTableCell<S,Boolean>>
CheckBoxTreeTableCell. forTreeTableColumn(TreeTableColumn<S,Boolean> column)
Creates a cell factory for use in aTreeTableColumn
cell factory.Callback<T,ObservableValue<Boolean>>
CheckBoxListCell. getSelectedStateCallback()
Returns theCallback
that is bound to by the CheckBox shown on screen.Callback<Integer,ObservableValue<Boolean>>
CheckBoxTableCell. getSelectedStateCallback()
Returns theCallback
that is bound to by the CheckBox shown on screen.Callback<TreeItem<T>,ObservableValue<Boolean>>
CheckBoxTreeCell. getSelectedStateCallback()
Returns theCallback
that is bound to by the CheckBox shown on screen.Callback<Integer,ObservableValue<Boolean>>
CheckBoxTreeTableCell. getSelectedStateCallback()
Returns theCallback
that is bound to by the CheckBox shown on screen.ObjectProperty<Callback<T,ObservableValue<Boolean>>>
CheckBoxListCell. selectedStateCallbackProperty()
Property representing theCallback
that is bound to by the CheckBox shown on screen.ObjectProperty<Callback<Integer,ObservableValue<Boolean>>>
CheckBoxTableCell. selectedStateCallbackProperty()
Property representing theCallback
that is bound to by the CheckBox shown on screen.ObjectProperty<Callback<TreeItem<T>,ObservableValue<Boolean>>>
CheckBoxTreeCell. selectedStateCallbackProperty()
Property representing theCallback
that is bound to by the CheckBox shown on screen.ObjectProperty<Callback<Integer,ObservableValue<Boolean>>>
CheckBoxTreeTableCell. selectedStateCallbackProperty()
Property representing theCallback
that is bound to by the CheckBox shown on screen.Method parameters in javafx.scene.control.cell with type arguments of type Boolean Modifier and Type Method Description static <T> Callback<ListView<T>,ListCell<T>>
CheckBoxListCell. forListView(Callback<T,ObservableValue<Boolean>> getSelectedProperty)
Creates a cell factory for use in ListView controls.static <T> Callback<ListView<T>,ListCell<T>>
CheckBoxListCell. forListView(Callback<T,ObservableValue<Boolean>> getSelectedProperty, StringConverter<T> converter)
Creates a cell factory for use in ListView controls.static <S> Callback<TableColumn<S,Boolean>,TableCell<S,Boolean>>
CheckBoxTableCell. forTableColumn(TableColumn<S,Boolean> column)
Creates a cell factory for use in aTableColumn
cell factory.static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>>
CheckBoxTableCell. forTableColumn(Callback<Integer,ObservableValue<Boolean>> getSelectedProperty)
Creates a cell factory for use in aTableColumn
cell factory.static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>>
CheckBoxTableCell. forTableColumn(Callback<Integer,ObservableValue<Boolean>> getSelectedProperty, boolean showLabel)
Creates a cell factory for use in aTableColumn
cell factory.static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>>
CheckBoxTableCell. forTableColumn(Callback<Integer,ObservableValue<Boolean>> getSelectedProperty, StringConverter<T> converter)
Creates a cell factory for use in aTableColumn
cell factory.static <S> Callback<TreeTableColumn<S,Boolean>,TreeTableCell<S,Boolean>>
CheckBoxTreeTableCell. forTreeTableColumn(TreeTableColumn<S,Boolean> column)
Creates a cell factory for use in aTreeTableColumn
cell factory.static <S,T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>>
CheckBoxTreeTableCell. forTreeTableColumn(Callback<Integer,ObservableValue<Boolean>> getSelectedProperty)
Creates a cell factory for use in aTreeTableColumn
cell factory.static <S,T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>>
CheckBoxTreeTableCell. forTreeTableColumn(Callback<Integer,ObservableValue<Boolean>> getSelectedProperty, boolean showLabel)
Creates a cell factory for use in aTreeTableColumn
cell factory.static <S,T> Callback<TreeTableColumn<S,T>,TreeTableCell<S,T>>
CheckBoxTreeTableCell. forTreeTableColumn(Callback<Integer,ObservableValue<Boolean>> getSelectedProperty, StringConverter<T> converter)
Creates a cell factory for use in aTreeTableColumn
cell factory.static <T> Callback<TreeView<T>,TreeCell<T>>
CheckBoxTreeCell. forTreeView(Callback<TreeItem<T>,ObservableValue<Boolean>> getSelectedProperty)
Creates a cell factory for use in a TreeView control.static <T> Callback<TreeView<T>,TreeCell<T>>
CheckBoxTreeCell. forTreeView(Callback<TreeItem<T>,ObservableValue<Boolean>> getSelectedProperty, StringConverter<TreeItem<T>> converter)
Creates a cell factory for use in a TreeView control.void
CheckBoxListCell. setSelectedStateCallback(Callback<T,ObservableValue<Boolean>> value)
Sets theCallback
that is bound to by the CheckBox shown on screen.void
CheckBoxTableCell. setSelectedStateCallback(Callback<Integer,ObservableValue<Boolean>> value)
Sets theCallback
that is bound to by the CheckBox shown on screen.void
CheckBoxTreeCell. setSelectedStateCallback(Callback<TreeItem<T>,ObservableValue<Boolean>> value)
Sets theCallback
that is bound to by the CheckBox shown on screen.void
CheckBoxTreeTableCell. setSelectedStateCallback(Callback<Integer,ObservableValue<Boolean>> value)
Sets theCallback
that is bound to by the CheckBox shown on screen.Constructor parameters in javafx.scene.control.cell with type arguments of type Boolean Constructor Description CheckBoxListCell(Callback<T,ObservableValue<Boolean>> getSelectedProperty)
Creates a default CheckBoxListCell.CheckBoxListCell(Callback<T,ObservableValue<Boolean>> getSelectedProperty, StringConverter<T> converter)
Creates a CheckBoxListCell with a custom string converter.CheckBoxTableCell(Callback<Integer,ObservableValue<Boolean>> getSelectedProperty)
Creates a default CheckBoxTableCell with a customCallback
to retrieve an ObservableValue for a given cell index.CheckBoxTableCell(Callback<Integer,ObservableValue<Boolean>> getSelectedProperty, StringConverter<T> converter)
Creates a CheckBoxTableCell with a custom string converter.CheckBoxTreeCell(Callback<TreeItem<T>,ObservableValue<Boolean>> getSelectedProperty)
Creates aCheckBoxTreeCell
for use in a TreeView control via a cell factory.CheckBoxTreeCell(Callback<TreeItem<T>,ObservableValue<Boolean>> getSelectedProperty, StringConverter<TreeItem<T>> converter)
Creates aCheckBoxTreeCell
for use in a TreeView control via a cell factory.CheckBoxTreeTableCell(Callback<Integer,ObservableValue<Boolean>> getSelectedProperty)
Creates a default CheckBoxTreeTableCell with a customCallback
to retrieve an ObservableValue for a given cell index.CheckBoxTreeTableCell(Callback<Integer,ObservableValue<Boolean>> getSelectedProperty, StringConverter<T> converter)
Creates a CheckBoxTreeTableCell with a custom string converter. -
Uses of Boolean in javafx.scene.layout
Methods in javafx.scene.layout that return Boolean Modifier and Type Method Description static Boolean
GridPane. isFillHeight(Node child)
Returns the child's vertical fill policy if setstatic Boolean
GridPane. isFillWidth(Node child)
Returns the child's horizontal fill policy if setMethods in javafx.scene.layout with parameters of type Boolean Modifier and Type Method Description static void
GridPane. setFillHeight(Node child, Boolean value)
Sets the vertical fill policy for the child when contained by a gridpane.static void
GridPane. setFillWidth(Node child, Boolean value)
Sets the horizontal fill policy for the child when contained by a gridpane. -
Uses of Boolean in javafx.scene.web
Methods in javafx.scene.web that return types with arguments of type Boolean Modifier and Type Method Description ObjectProperty<Callback<String,Boolean>>
WebEngine. confirmHandlerProperty()
JavaScriptconfirm
handler property.Callback<String,Boolean>
WebEngine. getConfirmHandler()
Gets the value of the property confirmHandler.EventHandler<WebEvent<Boolean>>
WebEngine. getOnVisibilityChanged()
Gets the value of the property onVisibilityChanged.ObjectProperty<EventHandler<WebEvent<Boolean>>>
WebEngine. onVisibilityChangedProperty()
JavaScript window visibility handler property.Method parameters in javafx.scene.web with type arguments of type Boolean Modifier and Type Method Description void
WebEngine. setConfirmHandler(Callback<String,Boolean> handler)
Sets the value of the property confirmHandler.void
WebEngine. setOnVisibilityChanged(EventHandler<WebEvent<Boolean>> handler)
Sets the value of the property onVisibilityChanged. -
Uses of Boolean in javax.management
Methods in javax.management with parameters of type Boolean Modifier and Type Method Description void
MBeanRegistration. postRegister(Boolean registrationDone)
Allows the MBean to perform any operations needed after having been registered in the MBean server or after the registration has failed.void
StandardMBean. postRegister(Boolean registrationDone)
Allows the MBean to perform any operations needed after having been registered in the MBean server or after the registration has failed. -
Uses of Boolean in javax.management.loading
Methods in javax.management.loading with parameters of type Boolean Modifier and Type Method Description void
MLet. postRegister(Boolean registrationDone)
Allows the m-let to perform any operations needed after having been registered in the MBean server or after the registration has failed. -
Uses of Boolean in javax.management.modelmbean
Methods in javax.management.modelmbean with parameters of type Boolean Modifier and Type Method Description void
RequiredModelMBean. postRegister(Boolean registrationDone)
Allows the MBean to perform any operations needed after having been registered in the MBean server or after the registration has failed. -
Uses of Boolean in javax.management.monitor
Methods in javax.management.monitor with parameters of type Boolean Modifier and Type Method Description void
Monitor. postRegister(Boolean registrationDone)
Allows the monitor MBean to perform any operations needed after having been registered in the MBean server or after the registration has failed. -
Uses of Boolean in javax.management.openmbean
Fields in javax.management.openmbean with type parameters of type Boolean Modifier and Type Field Description static SimpleType<Boolean>
SimpleType. BOOLEAN
TheSimpleType
instance describing values whose Java class name isjava.lang.Boolean
. -
Uses of Boolean in javax.management.relation
Methods in javax.management.relation that return Boolean Modifier and Type Method Description Boolean
RelationService. hasRelation(String relationId)
Checks if there is a relation identified in Relation Service with given relation id.Boolean
RelationServiceMBean. hasRelation(String relationId)
Checks if there is a relation identified in Relation Service with given relation id.Boolean
RelationSupport. isInRelationService()
Returns an internal flag specifying if the object is still handled by the Relation Service.Boolean
RelationSupportMBean. isInRelationService()
Returns an internal flag specifying if the object is still handled by the Relation Service.Methods in javax.management.relation with parameters of type Boolean Modifier and Type Method Description Integer
RelationService. checkRoleWriting(Role role, String relationTypeName, Boolean initFlag)
Checks if given Role can be set in a relation of given type.Integer
RelationServiceMBean. checkRoleWriting(Role role, String relationTypeName, Boolean initFlag)
Checks if given Role can be set in a relation of given type.void
RelationSupportMBean. setRelationServiceManagementFlag(Boolean flag)
Specifies whether this relation is handled by the Relation Service. -
Uses of Boolean in javax.management.timer
Methods in javax.management.timer that return Boolean Modifier and Type Method Description Boolean
Timer. getFixedRate(Integer id)
Gets a copy of the flag indicating whether a periodic notification is executed at fixed-delay or at fixed-rate.Boolean
TimerMBean. getFixedRate(Integer id)
Gets a copy of the flag indicating whether a periodic notification is executed at fixed-delay or at fixed-rate.Methods in javax.management.timer with parameters of type Boolean Modifier and Type Method Description void
Timer. postRegister(Boolean registrationDone)
Allows the timer MBean to perform any operations needed after having been registered in the MBean server or after the registration has failed. -
Uses of Boolean in javax.swing
Methods in javax.swing with parameters of type Boolean Modifier and Type Method Description void
GroupLayout. setHonorsVisibility(Component component, Boolean honorsVisibility)
Sets whether the component's visibility is considered for sizing and positioning.protected void
DefaultDesktopManager. setWasIcon(JInternalFrame f, Boolean value)
Sets that the component has been iconized and the bounds of thedesktopIcon
are valid. -
Uses of Boolean in javax.swing.filechooser
Methods in javax.swing.filechooser that return Boolean Modifier and Type Method Description Boolean
FileSystemView. isTraversable(File f)
Returns true if the file (directory) can be visited.Boolean
FileView. isTraversable(File f)
Whether the directory is traversable or not. -
Uses of Boolean in javax.swing.plaf.basic
Fields in javax.swing.plaf.basic with type parameters of type Boolean Modifier and Type Field Description protected Hashtable<TreePath,Boolean>
BasicTreeUI. drawingCache
Used for minimizing the drawing of vertical lines.Methods in javax.swing.plaf.basic that return Boolean Modifier and Type Method Description Boolean
BasicFileChooserUI.BasicFileView. isHidden(File f)
Returns whether or not a file is hidden. -
Uses of Boolean in javax.tools
Methods in javax.tools that return Boolean Modifier and Type Method Description Boolean
DocumentationTool.DocumentationTask. call()
Performs this documentation task.Boolean
JavaCompiler.CompilationTask. call()
Performs this compilation task. -
Uses of Boolean in jdk.net
Fields in jdk.net with type parameters of type Boolean Modifier and Type Field Description static SocketOption<Boolean>
ExtendedSocketOptions. TCP_QUICKACK
Disable Delayed Acknowledgements.
-