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 aBindingthat calculates a value that depends on one or more sources.javafx.beans.property The packagejavafx.beans.propertydefines read-only properties and writable properties, plus a number of implementations.javafx.beans.property.adapter Provides various classes that act as adapters between a regular Java Bean property and a correspondingJavaFX Property.javafx.beans.value The packagejavafx.beans.valuecontains the two fundamental interfacesObservableValueandWritableValueand 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 variousStyleConverterclasses 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.cellpackage 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.javafx.util.converter This package is for standard string converters for JavaFX.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.remote Interfaces for remote access to JMX MBean servers.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 theJFileChoosercomponent.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. -
-
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_FRAGMENTSEnables or disables message fragmentation.static SctpSocketOption<Boolean>SctpStandardSocketOptions. SCTP_EXPLICIT_COMPLETEEnables or disables explicit message completion.static SctpSocketOption<Boolean>SctpStandardSocketOptions. SCTP_NODELAYEnables 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 BooleanTextAttribute. RUN_DIRECTION_LTRLeft-to-right run direction.static BooleanTextAttribute. RUN_DIRECTION_RTLRight-to-left run direction.static BooleanTextAttribute. STRIKETHROUGH_ONA single strikethrough.static BooleanTextAttribute. SWAP_COLORS_ONSwap foreground and background. -
Uses of Boolean in java.lang
Fields in java.lang declared as Boolean Modifier and Type Field Description static BooleanBoolean. FALSETheBooleanobject corresponding to the primitive valuefalse.static BooleanBoolean. TRUETheBooleanobject corresponding to the primitive valuetrue.Fields in java.lang with type parameters of type Boolean Modifier and Type Field Description static Class<Boolean>Boolean. TYPEThe Class object representing the primitive type boolean.Methods in java.lang that return Boolean Modifier and Type Method Description static BooleanBoolean. valueOf(boolean b)Returns aBooleaninstance representing the specifiedbooleanvalue.static BooleanBoolean. valueOf(String s)Returns aBooleanwith a value represented by the specified string.Methods in java.lang with parameters of type Boolean Modifier and Type Method Description intBoolean. compareTo(Boolean b)Compares thisBooleaninstance 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_LOOPLoopback for Internet Protocol (IP) multicast datagrams.static SocketOption<Boolean>StandardSocketOptions. SO_BROADCASTAllow transmission of broadcast datagrams.static SocketOption<Boolean>StandardSocketOptions. SO_KEEPALIVEKeep connection alive.static SocketOption<Boolean>StandardSocketOptions. SO_REUSEADDRRe-use address.static SocketOption<Boolean>StandardSocketOptions. SO_REUSEPORTRe-use port.static SocketOption<Boolean>StandardSocketOptions. TCP_NODELAYDisable 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 newSetbacked by a ConcurrentHashMap from the given type toBoolean.TRUE.static <K> ConcurrentHashMap.KeySetView<K,Boolean>ConcurrentHashMap. newKeySet(int initialCapacity)Creates a newSetbacked 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 aCollectorwhich 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 aCollectorwhich 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 Boolean Modifier and Type Method Description BooleanBooleanExpression. getValue()Methods in javafx.beans.binding that return types with arguments of type Boolean Modifier and Type Method Description ObjectExpression<Boolean>BooleanExpression. asObject()Creates anObjectExpressionthat holds the value of thisBooleanExpression.Method parameters in javafx.beans.binding with type arguments of type Boolean Modifier and Type Method Description voidBooleanBinding. addListener(ChangeListener<? super Boolean> listener)static BooleanExpressionBooleanExpression. booleanExpression(ObservableValue<Boolean> value)Returns aBooleanExpressionthat wraps anObservableValue.static BooleanBindingBindings. booleanValueAt(ObservableList<Boolean> op, int index)Creates a newBooleanBindingthat contains the element of anObservableListat the specified position.static BooleanBindingBindings. booleanValueAt(ObservableList<Boolean> op, ObservableIntegerValue index)Creates a newBooleanBindingthat contains the element of anObservableListat the specified position.static BooleanBindingBindings. booleanValueAt(ObservableList<Boolean> op, ObservableNumberValue index)Creates a newBooleanBindingthat contains the element of anObservableListat the specified position.static <K> BooleanBindingBindings. booleanValueAt(ObservableMap<K,Boolean> op, ObservableValue<? extends K> key)Creates a newBooleanBindingthat contains the mapping of a specific key in anObservableMap.static <K> BooleanBindingBindings. booleanValueAt(ObservableMap<K,Boolean> op, K key)Creates a newBooleanBindingthat contains the mapping of a specific key in anObservableMap.static BooleanBindingBindings. createBooleanBinding(Callable<Boolean> func, Observable... dependencies)Helper function to create a customBooleanBinding.voidBooleanBinding. removeListener(ChangeListener<? super Boolean> listener) -
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 anObjectPropertythat holds the value of thisBooleanProperty.ReadOnlyObjectProperty<Boolean>ReadOnlyBooleanProperty. asObject()Creates aReadOnlyObjectPropertythat holds the value of thisReadOnlyBooleanProperty.Methods in javafx.beans.property with parameters of type Boolean Modifier and Type Method Description voidBooleanProperty. setValue(Boolean v)Set the wrapped value.Method parameters in javafx.beans.property with type arguments of type Boolean Modifier and Type Method Description voidBooleanPropertyBase. addListener(ChangeListener<? super Boolean> listener)voidReadOnlyBooleanPropertyBase. addListener(ChangeListener<? super Boolean> listener)voidBooleanPropertyBase. bind(ObservableValue<? extends Boolean> rawObservable)Create a unidirection binding for thisProperty.voidBooleanProperty. bindBidirectional(Property<Boolean> other)Create a bidirectional binding between thisPropertyand another one.static BooleanPropertyBooleanProperty. booleanProperty(Property<Boolean> property)Returns aBooleanPropertythat wraps aProperty.static ReadOnlyBooleanPropertyReadOnlyBooleanProperty. readOnlyBooleanProperty(ReadOnlyProperty<Boolean> property)Returns aReadOnlyBooleanPropertythat wraps aReadOnlyProperty.voidBooleanPropertyBase. removeListener(ChangeListener<? super Boolean> listener)voidReadOnlyBooleanPropertyBase. removeListener(ChangeListener<? super Boolean> listener)voidBooleanProperty. unbindBidirectional(Property<Boolean> other)Remove a bidirectional binding between thisPropertyand another one. -
Uses of Boolean in javafx.beans.property.adapter
Method parameters in javafx.beans.property.adapter with type arguments of type Boolean Modifier and Type Method Description voidJavaBeanBooleanProperty. addListener(ChangeListener<? super Boolean> listener)Adds aChangeListenerwhich will be notified whenever the value of theObservableValuechanges.voidJavaBeanBooleanProperty. bind(ObservableValue<? extends Boolean> observable)Create a unidirection binding for thisProperty.voidJavaBeanBooleanProperty. removeListener(ChangeListener<? super Boolean> listener)Removes the given listener from the list of listeners, that are notified whenever the value of theObservableValuechanges. -
Uses of Boolean in javafx.beans.value
Methods in javafx.beans.value with parameters of type Boolean Modifier and Type Method Description voidWritableBooleanValue. 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 aStyleConverterthat converts "true" or "false" toBoolean.CssMetaData<? extends Styleable,Boolean>SimpleStyleableBooleanProperty. getCssMetaData()Reflect back the CssMetaData that corresponds to thisjavafx.beans.property.StyleablePropertyMethods in javafx.css with parameters of type Boolean Modifier and Type Method Description voidStyleableBooleanProperty. applyStyle(StyleOrigin origin, Boolean v)This method is called from CSS code to set the value of the property.Method parameters in javafx.css with type arguments of type Boolean Modifier and Type Method Description voidStyleableBooleanProperty. bind(ObservableValue<? extends Boolean> observable)Create a unidirection binding for thisProperty.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 Boolean Modifier and Type Method Description BooleanBooleanConverter. convert(ParsedValue<String,Boolean> value, Font not_used)Methods in javafx.css.converter that return types with arguments of type Boolean Modifier and Type Method Description static StyleConverter<String,Boolean>BooleanConverter. getInstance()Method parameters in javafx.css.converter with type arguments of type Boolean Modifier and Type Method Description BooleanBooleanConverter. convert(ParsedValue<String,Boolean> value, Font not_used) -
Uses of Boolean in javafx.scene
Methods in javafx.scene that return Boolean Modifier and Type Method Description protected BooleanNode. 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_POLICYSimple 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_POLICYSimple 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_POLICYThe defaultsort policythat this TableView will use if no other policy is specified.static Callback<TreeTableView,Boolean>TreeTableView. DEFAULT_SORT_POLICYThe defaultsort policythat this TreeTableView will use if no other policy is specified.static Callback<TableView.ResizeFeatures,Boolean>TableView. UNCONSTRAINED_RESIZE_POLICYVery 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_POLICYVery 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 BooleanAccordion. getInitialFocusTraversable()Returns the initial focus traversable state of this control, for use by the JavaFX CSS engine to correctly set its initial value.protected BooleanButtonBar. getInitialFocusTraversable()Returns the initial focus traversable state of this control, for use by the JavaFX CSS engine to correctly set its initial value.protected BooleanCell. getInitialFocusTraversable()Returns the initial focus traversable state of this control, for use by the JavaFX CSS engine to correctly set its initial value.protected BooleanControl. getInitialFocusTraversable()Returns the initial focus traversable state of this control, for use by the JavaFX CSS engine to correctly set its initial value.protected BooleanLabel. getInitialFocusTraversable()Returns the initial focus traversable state of this control, for use by the JavaFX CSS engine to correctly set its initial value.protected BooleanMenuBar. getInitialFocusTraversable()Returns the initial focus traversable state of this control, for use by the JavaFX CSS engine to correctly set its initial value.protected BooleanProgressBar. getInitialFocusTraversable()Returns the initial focus traversable state of this control, for use by the JavaFX CSS engine to correctly set its initial value.protected BooleanProgressIndicator. getInitialFocusTraversable()Returns the initial focus traversable state of this control, for use by the JavaFX CSS engine to correctly set its initial value.protected BooleanScrollBar. getInitialFocusTraversable()Returns the initial focus traversable state of this control, for use by the JavaFX CSS engine to correctly set its initial value.protected BooleanScrollPane. getInitialFocusTraversable()Returns the initial focus traversable state of this control, for use by the JavaFX CSS engine to correctly set its initial value.protected BooleanSeparator. getInitialFocusTraversable()Returns the initial focus traversable state of this control, for use by the JavaFX CSS engine to correctly set its initial value.protected BooleanSplitPane. getInitialFocusTraversable()Returns the initial focus traversable state of this control, for use by the JavaFX CSS engine to correctly set its initial value.protected BooleanToolBar. getInitialFocusTraversable()Returns the initial focus traversable state of this control, for use by the JavaFX CSS engine to correctly set its initial value.static BooleanSplitPane. 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 voidSplitPane. 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 voidTableView. setColumnResizePolicy(Callback<TableView.ResizeFeatures,Boolean> callback)Sets the value of the property columnResizePolicy.voidTreeTableView. setColumnResizePolicy(Callback<TreeTableView.ResizeFeatures,Boolean> callback)Sets the value of the property columnResizePolicy.voidTableView. setSortPolicy(Callback<TableView<S>,Boolean> callback)Sets the value of the property sortPolicy.voidTreeTableView. 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 aTableColumncell factory.static <S> Callback<TableColumn<S,Boolean>,TableCell<S,Boolean>>CheckBoxTableCell. forTableColumn(TableColumn<S,Boolean> column)Creates a cell factory for use in aTableColumncell factory.static <S> Callback<TreeTableColumn<S,Boolean>,TreeTableCell<S,Boolean>>CheckBoxTreeTableCell. forTreeTableColumn(TreeTableColumn<S,Boolean> column)Creates a cell factory for use in aTreeTableColumncell factory.static <S> Callback<TreeTableColumn<S,Boolean>,TreeTableCell<S,Boolean>>CheckBoxTreeTableCell. forTreeTableColumn(TreeTableColumn<S,Boolean> column)Creates a cell factory for use in aTreeTableColumncell factory.Callback<T,ObservableValue<Boolean>>CheckBoxListCell. getSelectedStateCallback()Returns theCallbackthat is bound to by the CheckBox shown on screen.Callback<Integer,ObservableValue<Boolean>>CheckBoxTableCell. getSelectedStateCallback()Returns theCallbackthat is bound to by the CheckBox shown on screen.Callback<TreeItem<T>,ObservableValue<Boolean>>CheckBoxTreeCell. getSelectedStateCallback()Returns theCallbackthat is bound to by the CheckBox shown on screen.Callback<Integer,ObservableValue<Boolean>>CheckBoxTreeTableCell. getSelectedStateCallback()Returns theCallbackthat is bound to by the CheckBox shown on screen.ObjectProperty<Callback<T,ObservableValue<Boolean>>>CheckBoxListCell. selectedStateCallbackProperty()Property representing theCallbackthat is bound to by the CheckBox shown on screen.ObjectProperty<Callback<Integer,ObservableValue<Boolean>>>CheckBoxTableCell. selectedStateCallbackProperty()Property representing theCallbackthat is bound to by the CheckBox shown on screen.ObjectProperty<Callback<TreeItem<T>,ObservableValue<Boolean>>>CheckBoxTreeCell. selectedStateCallbackProperty()Property representing theCallbackthat is bound to by the CheckBox shown on screen.ObjectProperty<Callback<Integer,ObservableValue<Boolean>>>CheckBoxTreeTableCell. selectedStateCallbackProperty()Property representing theCallbackthat 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 aTableColumncell 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 aTableColumncell 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 aTableColumncell 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 aTableColumncell factory.static <S> Callback<TreeTableColumn<S,Boolean>,TreeTableCell<S,Boolean>>CheckBoxTreeTableCell. forTreeTableColumn(TreeTableColumn<S,Boolean> column)Creates a cell factory for use in aTreeTableColumncell 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 aTreeTableColumncell 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 aTreeTableColumncell 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 aTreeTableColumncell 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.voidCheckBoxListCell. setSelectedStateCallback(Callback<T,ObservableValue<Boolean>> value)Sets theCallbackthat is bound to by the CheckBox shown on screen.voidCheckBoxTableCell. setSelectedStateCallback(Callback<Integer,ObservableValue<Boolean>> value)Sets theCallbackthat is bound to by the CheckBox shown on screen.voidCheckBoxTreeCell. setSelectedStateCallback(Callback<TreeItem<T>,ObservableValue<Boolean>> value)Sets theCallbackthat is bound to by the CheckBox shown on screen.voidCheckBoxTreeTableCell. setSelectedStateCallback(Callback<Integer,ObservableValue<Boolean>> value)Sets theCallbackthat 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 customCallbackto 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 aCheckBoxTreeCellfor use in a TreeView control via a cell factory.CheckBoxTreeCell(Callback<TreeItem<T>,ObservableValue<Boolean>> getSelectedProperty, StringConverter<TreeItem<T>> converter)Creates aCheckBoxTreeCellfor use in a TreeView control via a cell factory.CheckBoxTreeTableCell(Callback<Integer,ObservableValue<Boolean>> getSelectedProperty)Creates a default CheckBoxTreeTableCell with a customCallbackto 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 BooleanGridPane. isFillHeight(Node child)Returns the child's vertical fill policy if setstatic BooleanGridPane. 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 voidGridPane. setFillHeight(Node child, Boolean value)Sets the vertical fill policy for the child when contained by a gridpane.static voidGridPane. 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()JavaScriptconfirmhandler 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 voidWebEngine. setConfirmHandler(Callback<String,Boolean> handler)Sets the value of the property confirmHandler.voidWebEngine. setOnVisibilityChanged(EventHandler<WebEvent<Boolean>> handler)Sets the value of the property onVisibilityChanged. -
Uses of Boolean in javafx.util.converter
Methods in javafx.util.converter that return Boolean Modifier and Type Method Description BooleanBooleanStringConverter. fromString(String value)Converts the string provided into an object defined by the specific converter.Methods in javafx.util.converter with parameters of type Boolean Modifier and Type Method Description StringBooleanStringConverter. toString(Boolean value)Converts the object provided into its string form. -
Uses of Boolean in javax.management
Methods in javax.management with parameters of type Boolean Modifier and Type Method Description voidMBeanRegistration. 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.voidStandardMBean. 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 voidMLet. 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 voidRequiredModelMBean. 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 voidMonitor. 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. BOOLEANTheSimpleTypeinstance 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 BooleanRelationService. hasRelation(String relationId)Checks if there is a relation identified in Relation Service with given relation id.BooleanRelationServiceMBean. hasRelation(String relationId)Checks if there is a relation identified in Relation Service with given relation id.BooleanRelationSupport. isInRelationService()Returns an internal flag specifying if the object is still handled by the Relation Service.BooleanRelationSupportMBean. 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 IntegerRelationService. checkRoleWriting(Role role, String relationTypeName, Boolean initFlag)Checks if given Role can be set in a relation of given type.IntegerRelationServiceMBean. checkRoleWriting(Role role, String relationTypeName, Boolean initFlag)Checks if given Role can be set in a relation of given type.voidRelationService. postRegister(Boolean registrationDone)voidRelationSupport. postRegister(Boolean registrationDone)voidRelationSupport. setRelationServiceManagementFlag(Boolean flag)voidRelationSupportMBean. setRelationServiceManagementFlag(Boolean flag)Specifies whether this relation is handled by the Relation Service. -
Uses of Boolean in javax.management.remote
Methods in javax.management.remote with parameters of type Boolean Modifier and Type Method Description voidJMXConnectorServer. postRegister(Boolean registrationDone) -
Uses of Boolean in javax.management.timer
Methods in javax.management.timer that return Boolean Modifier and Type Method Description BooleanTimer. getFixedRate(Integer id)Gets a copy of the flag indicating whether a periodic notification is executed at fixed-delay or at fixed-rate.BooleanTimerMBean. 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 voidTimer. 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 voidGroupLayout. setHonorsVisibility(Component component, Boolean honorsVisibility)Sets whether the component's visibility is considered for sizing and positioning.protected voidDefaultDesktopManager. setWasIcon(JInternalFrame f, Boolean value)Sets that the component has been iconized and the bounds of thedesktopIconare valid. -
Uses of Boolean in javax.swing.filechooser
Methods in javax.swing.filechooser that return Boolean Modifier and Type Method Description BooleanFileSystemView. isTraversable(File f)Returns true if the file (directory) can be visited.BooleanFileView. 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. drawingCacheUsed for minimizing the drawing of vertical lines.Methods in javax.swing.plaf.basic that return Boolean Modifier and Type Method Description BooleanBasicFileChooserUI.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 BooleanDocumentationTool.DocumentationTask. call()Performs this documentation task.BooleanJavaCompiler.CompilationTask. call()Performs this compilation task.
-