Uses of Class
java.lang.Boolean
-
Packages that use Boolean 软件包 描述 com.sun.nio.sctp 用于流控制传输协议的Java API。java.awt.font 提供与字体相关的类和界面。java.lang 提供对Java编程语言设计至关重要的类。java.net 提供实现网络应用程序的类。java.time.format 提供打印和解析日期和时间的类。java.util 包含集合框架,一些国际化支持类,一个服务加载器,属性,随机数生成,字符串解析和扫描类,base64编码和解码,一个位数组和几个其他实用程序类。java.util.concurrent 实用程序类通常用于并发编程。java.util.stream 支持元素流功能性操作的类,例如集合上的map-reduce转换。javafx.beans.binding 提供在Binding
上创建和操作的类,用于计算取决于一个或多个来源的值。javafx.beans.property 程序包javafx.beans.property
定义只读属性和可写属性,以及一些实现。javafx.beans.property.adapter 提供各种类,作为常规Java Bean属性和对应的JavaFX Property
之间的适配器。javafx.beans.value 包javafx.beans.value
包含两个基本接口ObservableValue
和WritableValue
及其所有子接口。javafx.css 提供API,通过CSS使属性变得风格,并支持伪类状态。javafx.css.converter 提供各种转换CSS解析值的StyleConverter
类。javafx.scene 为JavaFX Scene Graph API提供核心的基类集。javafx.scene.control JavaFX用户界面控件(UI控件或仅控件)是JavaFX场景中的专用节点,特别适用于许多不同应用程序环境中的重用。javafx.scene.control.cell 所述javafx.scene.control.cell
包是所有细胞相关的类的位置,比所述核心类如其他Cell
,IndexedCell
,ListCell
,TreeCell
,和TableCell
。javafx.scene.layout 提供类来支持用户界面布局。javafx.scene.web 该软件包提供了加载和显示Web内容的方法。javafx.util.converter 此包用于JavaFX的标准字符串转换器。javax.management 提供Java管理扩展的核心类。javax.management.loading 提供实现高级动态加载的类。javax.management.modelmbean 提供ModelMBean类的定义。javax.management.monitor 提供监视器类的定义。javax.management.openmbean 提供打开的数据类型和Open MBean描述符类。javax.management.relation 提供关系服务的定义。javax.management.remote 用于远程访问JMX MBean服务器的接口。javax.management.timer 提供定时器MBean的定义。javax.swing 提供一套“轻量级”(全Java语言)组件,尽可能地在所有平台上工作。javax.swing.filechooser 包含JFileChooser
组件使用的类和接口。javax.swing.plaf.basic 提供根据“基本”外观构建的用户界面对象。javax.tools 为可以从程序调用的工具提供接口,例如编译器。 -
-
Uses of Boolean in com.sun.nio.sctp
Fields in com.sun.nio.sctp with type parameters of type Boolean Modifier and Type Field 描述 static SctpSocketOption<Boolean>
SctpStandardSocketOptions. SCTP_DISABLE_FRAGMENTS
启用或禁用消息碎片。static SctpSocketOption<Boolean>
SctpStandardSocketOptions. SCTP_EXPLICIT_COMPLETE
启用或禁用显式消息完成。static SctpSocketOption<Boolean>
SctpStandardSocketOptions. SCTP_NODELAY
启用或禁用类似Nagle的算法。 -
Uses of Boolean in java.awt.font
Fields in java.awt.font declared as Boolean Modifier and Type Field 描述 static Boolean
TextAttribute. RUN_DIRECTION_LTR
从左到右的运行方向。static Boolean
TextAttribute. RUN_DIRECTION_RTL
从右到左的运行方向。static Boolean
TextAttribute. STRIKETHROUGH_ON
一个删除线。static Boolean
TextAttribute. SWAP_COLORS_ON
交换前景和背景。 -
Uses of Boolean in java.lang
Fields in java.lang declared as Boolean Modifier and Type Field 描述 static Boolean
Boolean. FALSE
Boolean
对象对应于原始值false
。static Boolean
Boolean. TRUE
Boolean
对象对应于原始值true
。Fields in java.lang with type parameters of type Boolean Modifier and Type Field 描述 static Class<Boolean>
Boolean. TYPE
表示原始类型的类对象布尔值。Methods in java.lang that return Boolean Modifier and Type 方法 描述 static Boolean
Boolean. valueOf(boolean b)
返回表示boolean
值的Boolean
实例。static Boolean
Boolean. valueOf(String s)
返回一个Boolean
,其值由指定的字符串表示。Methods in java.lang with parameters of type Boolean Modifier and Type 方法 描述 int
Boolean. compareTo(Boolean b)
将此Boolean
实例与另一个实例进行比较。 -
Uses of Boolean in java.net
Fields in java.net with type parameters of type Boolean Modifier and Type Field 描述 static SocketOption<Boolean>
StandardSocketOptions. IP_MULTICAST_LOOP
互联网协议(IP)组播数据报的环回。static SocketOption<Boolean>
StandardSocketOptions. SO_BROADCAST
允许传输广播数据报。static SocketOption<Boolean>
StandardSocketOptions. SO_KEEPALIVE
保持连接活着。static SocketOption<Boolean>
StandardSocketOptions. SO_REUSEADDR
重用地址。static SocketOption<Boolean>
StandardSocketOptions. SO_REUSEPORT
重新使用端口。static SocketOption<Boolean>
StandardSocketOptions. TCP_NODELAY
禁用Nagle算法。 -
Uses of Boolean in java.time.format
Methods in java.time.format that return types with arguments of type Boolean Modifier and Type 方法 描述 static TemporalQuery<Boolean>
DateTimeFormatter. parsedLeapSecond()
提供访问是否解析了跨越秒的查询。 -
Uses of Boolean in java.util
Method parameters in java.util with type arguments of type Boolean Modifier and Type 方法 描述 static <E> Set<E>
Collections. newSetFromMap(Map<E,Boolean> map)
返回由指定地图支持的集合。 -
Uses of Boolean in java.util.concurrent
Methods in java.util.concurrent that return types with arguments of type Boolean Modifier and Type 方法 描述 static <K> ConcurrentHashMap.KeySetView<K,Boolean>
ConcurrentHashMap. newKeySet()
创建一个新的Set
由ConcurrentHashMap支持从给定的类型到Boolean.TRUE
。static <K> ConcurrentHashMap.KeySetView<K,Boolean>
ConcurrentHashMap. newKeySet(int initialCapacity)
创建一个新的Set
,由给定类型的ConcurrentHashMap支持Boolean.TRUE
。 -
Uses of Boolean in java.util.stream
Methods in java.util.stream that return types with arguments of type Boolean Modifier and Type 方法 描述 static <T> Collector<T,?,Map<Boolean,List<T>>>
Collectors. partitioningBy(Predicate<? super T> predicate)
返回Collector
由划分根据所述输入元件Predicate
,并且将它们组织到一个Map<Boolean, List<T>>
。static <T,D,A> Collector<T,?,Map<Boolean,D>>
Collectors. partitioningBy(Predicate<? super T> predicate, Collector<? super T,A,D> downstream)
返回Collector
由划分根据所述输入元件Predicate
,减少了在根据另一每个分区中的值Collector
,并且将它们组织到一个Map<Boolean, D>
其值是下游减少的结果。 -
Uses of Boolean in javafx.beans.binding
Methods in javafx.beans.binding that return Boolean Modifier and Type 方法 描述 Boolean
BooleanExpression. getValue()
Methods in javafx.beans.binding that return types with arguments of type Boolean Modifier and Type 方法 描述 ObjectExpression<Boolean>
BooleanExpression. asObject()
创建一个ObjectExpression
,其值为BooleanExpression
。 -
Uses of Boolean in javafx.beans.property
Methods in javafx.beans.property that return types with arguments of type Boolean Modifier and Type 方法 描述 ObjectProperty<Boolean>
BooleanProperty. asObject()
创建一个ObjectProperty
,其值为BooleanProperty
。ReadOnlyObjectProperty<Boolean>
ReadOnlyBooleanProperty. asObject()
创建一个ReadOnlyObjectProperty
,其值为ReadOnlyBooleanProperty
。Methods in javafx.beans.property with parameters of type Boolean Modifier and Type 方法 描述 void
BooleanProperty. setValue(Boolean v)
设置包装的值。Method parameters in javafx.beans.property with type arguments of type Boolean Modifier and Type 方法 描述 void
BooleanPropertyBase. addListener(ChangeListener<? super Boolean> listener)
void
ReadOnlyBooleanPropertyBase. addListener(ChangeListener<? super Boolean> listener)
void
BooleanPropertyBase. bind(ObservableValue<? extends Boolean> rawObservable)
为此创建一个单向绑定Property
。void
BooleanProperty. bindBidirectional(Property<Boolean> other)
在这个Property
之间创建一个双向绑定。static BooleanProperty
BooleanProperty. booleanProperty(Property<Boolean> property)
返回一个BooleanProperty
的BooleanProperty 。static ReadOnlyBooleanProperty
ReadOnlyBooleanProperty. readOnlyBooleanProperty(ReadOnlyProperty<Boolean> property)
返回一个ReadOnlyBooleanProperty
的ReadOnlyBooleanProperty 。void
BooleanPropertyBase. removeListener(ChangeListener<? super Boolean> listener)
void
ReadOnlyBooleanPropertyBase. removeListener(ChangeListener<? super Boolean> listener)
void
BooleanProperty. unbindBidirectional(Property<Boolean> other)
删除这个Property
和另一个之间的双向绑定。 -
Uses of Boolean in javafx.beans.property.adapter
Method parameters in javafx.beans.property.adapter with type arguments of type Boolean Modifier and Type 方法 描述 void
JavaBeanBooleanProperty. addListener(ChangeListener<? super Boolean> listener)
添加一个ChangeListener
,当ObservableValue
的值更改时,它将被通知。void
JavaBeanBooleanProperty. bind(ObservableValue<? extends Boolean> observable)
为此创建一个单向绑定Property
。void
JavaBeanBooleanProperty. removeListener(ChangeListener<? super Boolean> listener)
从监听器列表中删除给定的侦听器,每当ObservableValue
的值更改时都会通知ObservableValue
。 -
Uses of Boolean in javafx.beans.value
Methods in javafx.beans.value with parameters of type Boolean Modifier and Type 方法 描述 void
WritableBooleanValue. setValue(Boolean value)
设置包装的值。 -
Uses of Boolean in javafx.css
Methods in javafx.css that return types with arguments of type Boolean Modifier and Type 方法 描述 CssMetaData<S,Boolean>
StyleablePropertyFactory. createBooleanCssMetaData(String property, Function<S,StyleableProperty<Boolean>> function)
创建一个具有初始值的CssMetaData <S,Boolean>,并继承标志,两者都默认为false。CssMetaData<S,Boolean>
StyleablePropertyFactory. createBooleanCssMetaData(String property, Function<S,StyleableProperty<Boolean>> function, boolean initialValue)
创建具有初始值的CssMetaData <S,Boolean>,并将标志默认为false。CssMetaData<S,Boolean>
StyleablePropertyFactory. createBooleanCssMetaData(String property, Function<S,StyleableProperty<Boolean>> function, boolean initialValue, boolean inherits)
创建具有初始值的CssMetaData <S,Boolean>,并继承标志。StyleableProperty<Boolean>
StyleablePropertyFactory. createStyleableBooleanProperty(S styleable, String propertyName, String cssProperty)
使用先前创建的给定的cssProperty
创建一个StyleableProperty <Boolean>。StyleableProperty<Boolean>
StyleablePropertyFactory. createStyleableBooleanProperty(S styleable, String propertyName, String cssProperty, Function<S,StyleableProperty<Boolean>> function)
创建一个StyleableProperty <Boolean>。StyleableProperty<Boolean>
StyleablePropertyFactory. createStyleableBooleanProperty(S styleable, String propertyName, String cssProperty, Function<S,StyleableProperty<Boolean>> function, boolean initialValue)
创建一个具有初始值的StyleableProperty <Boolean>。StyleableProperty<Boolean>
StyleablePropertyFactory. createStyleableBooleanProperty(S styleable, String propertyName, String cssProperty, Function<S,StyleableProperty<Boolean>> function, boolean initialValue, boolean inherits)
创建一个具有初始值的StyleableProperty <Boolean>并继承标志。static StyleConverter<String,Boolean>
StyleConverter. getBooleanConverter()
返回一个StyleConverter
,其将“真”或“假”到Boolean
。CssMetaData<? extends Styleable,Boolean>
SimpleStyleableBooleanProperty. getCssMetaData()
反映对应于这个javafx.beans.property.StyleableProperty
Methods in javafx.css with parameters of type Boolean Modifier and Type 方法 描述 void
StyleableBooleanProperty. applyStyle(StyleOrigin origin, Boolean v)
这个方法从CSS代码调用来设置属性的值。Method parameters in javafx.css with type arguments of type Boolean Modifier and Type 方法 描述 void
StyleableBooleanProperty. bind(ObservableValue<? extends Boolean> observable)
为此创建一个单向绑定Property
。CssMetaData<S,Boolean>
StyleablePropertyFactory. createBooleanCssMetaData(String property, Function<S,StyleableProperty<Boolean>> function)
创建一个具有初始值的CssMetaData <S,Boolean>,并继承标志,两者都默认为false。CssMetaData<S,Boolean>
StyleablePropertyFactory. createBooleanCssMetaData(String property, Function<S,StyleableProperty<Boolean>> function, boolean initialValue)
创建具有初始值的CssMetaData <S,Boolean>,并将标志默认为false。CssMetaData<S,Boolean>
StyleablePropertyFactory. createBooleanCssMetaData(String property, Function<S,StyleableProperty<Boolean>> function, boolean initialValue, boolean inherits)
创建具有初始值的CssMetaData <S,Boolean>,并继承标志。StyleableProperty<Boolean>
StyleablePropertyFactory. createStyleableBooleanProperty(S styleable, String propertyName, String cssProperty, Function<S,StyleableProperty<Boolean>> function)
创建一个StyleableProperty <Boolean>。StyleableProperty<Boolean>
StyleablePropertyFactory. createStyleableBooleanProperty(S styleable, String propertyName, String cssProperty, Function<S,StyleableProperty<Boolean>> function, boolean initialValue)
创建一个具有初始值的StyleableProperty <Boolean>。StyleableProperty<Boolean>
StyleablePropertyFactory. createStyleableBooleanProperty(S styleable, String propertyName, String cssProperty, Function<S,StyleableProperty<Boolean>> function, boolean initialValue, boolean inherits)
创建一个具有初始值的StyleableProperty <Boolean>并继承标志。Constructor parameters in javafx.css with type arguments of type Boolean Constructor 描述 SimpleStyleableBooleanProperty(CssMetaData<? extends Styleable,Boolean> cssMetaData)
SimpleStyleableBooleanProperty
的构造SimpleStyleableBooleanProperty
。SimpleStyleableBooleanProperty(CssMetaData<? extends Styleable,Boolean> cssMetaData, boolean initialValue)
SimpleStyleableBooleanProperty
的构造SimpleStyleableBooleanProperty
。SimpleStyleableBooleanProperty(CssMetaData<? extends Styleable,Boolean> cssMetaData, Object bean, String name)
SimpleStyleableBooleanProperty
的构造SimpleStyleableBooleanProperty
。SimpleStyleableBooleanProperty(CssMetaData<? extends Styleable,Boolean> cssMetaData, Object bean, String name, boolean initialValue)
的构造函数SimpleStyleableBooleanProperty
。 -
Uses of Boolean in javafx.css.converter
Methods in javafx.css.converter that return Boolean Modifier and Type 方法 描述 Boolean
BooleanConverter. convert(ParsedValue<String,Boolean> value, Font not_used)
Methods in javafx.css.converter that return types with arguments of type Boolean Modifier and Type 方法 描述 static StyleConverter<String,Boolean>
BooleanConverter. getInstance()
Method parameters in javafx.css.converter with type arguments of type Boolean Modifier and Type 方法 描述 Boolean
BooleanConverter. convert(ParsedValue<String,Boolean> value, Font not_used)
-
Uses of Boolean in javafx.scene
Methods in javafx.scene that return Boolean Modifier and Type 方法 描述 protected Boolean
Node. getInitialFocusTraversable()
返回此节点的初始焦点遍历状态,供JavaFX CSS引擎正确设置其初始值。 -
Uses of Boolean in javafx.scene.control
Fields in javafx.scene.control with type parameters of type Boolean Modifier and Type Field 描述 static Callback<TableView.ResizeFeatures,Boolean>
TableView. CONSTRAINED_RESIZE_POLICY
确保此表中所有可见叶列的宽度的简单策略总和等于表本身的宽度。static Callback<TreeTableView.ResizeFeatures,Boolean>
TreeTableView. CONSTRAINED_RESIZE_POLICY
确保此表中所有可见叶列的宽度的简单策略总和等于表本身的宽度。static Callback<TableView,Boolean>
TableView. DEFAULT_SORT_POLICY
如果没有指定其他策略,则此TableView将使用默认值sort policy
。static Callback<TreeTableView,Boolean>
TreeTableView. DEFAULT_SORT_POLICY
如果没有指定其他策略,则该TreeTableView将使用默认值sort policy
。static Callback<TableView.ResizeFeatures,Boolean>
TableView. UNCONSTRAINED_RESIZE_POLICY
非常简单的调整策略,只需通过提供的增量来调整指定列的大小,并将所有其他列(给定列的右侧)向右移动(当增量为正)或向左(当增量为负数时) 。static Callback<TreeTableView.ResizeFeatures,Boolean>
TreeTableView. UNCONSTRAINED_RESIZE_POLICY
非常简单的调整策略,只需通过提供的增量来调整指定列的大小,并将所有其他列(给定列的右侧)向右移动(当增量为正)或向左(当增量为负数时) 。Methods in javafx.scene.control that return Boolean Modifier and Type 方法 描述 protected Boolean
Accordion. getInitialFocusTraversable()
返回此控件的初始焦点遍历状态,供JavaFX CSS引擎正确设置其初始值。protected Boolean
ButtonBar. getInitialFocusTraversable()
返回此控件的初始焦点遍历状态,供JavaFX CSS引擎正确设置其初始值。protected Boolean
Cell. getInitialFocusTraversable()
返回此控件的初始焦点遍历状态,供JavaFX CSS引擎正确设置其初始值。protected Boolean
Control. getInitialFocusTraversable()
返回此控件的初始焦点遍历状态,供JavaFX CSS引擎正确设置其初始值。protected Boolean
Label. getInitialFocusTraversable()
返回此控件的初始焦点遍历状态,供JavaFX CSS引擎正确设置其初始值。protected Boolean
MenuBar. getInitialFocusTraversable()
返回此控件的初始焦点遍历状态,供JavaFX CSS引擎正确设置其初始值。protected Boolean
ProgressBar. getInitialFocusTraversable()
返回此控件的初始焦点遍历状态,供JavaFX CSS引擎正确设置其初始值。protected Boolean
ProgressIndicator. getInitialFocusTraversable()
返回此控件的初始焦点遍历状态,供JavaFX CSS引擎正确设置其初始值。protected Boolean
ScrollBar. getInitialFocusTraversable()
返回此控件的初始焦点遍历状态,供JavaFX CSS引擎正确设置其初始值。protected Boolean
ScrollPane. getInitialFocusTraversable()
返回此控件的初始焦点遍历状态,供JavaFX CSS引擎正确设置其初始值。protected Boolean
Separator. getInitialFocusTraversable()
返回此控件的初始焦点遍历状态,供JavaFX CSS引擎正确设置其初始值。protected Boolean
SplitPane. getInitialFocusTraversable()
返回此控件的初始焦点遍历状态,供JavaFX CSS引擎正确设置其初始值。protected Boolean
ToolBar. getInitialFocusTraversable()
返回此控件的初始焦点遍历状态,供JavaFX CSS引擎正确设置其初始值。static Boolean
SplitPane. isResizableWithParent(Node node)
如果父容器调整大小为false时,如果节点可调整大小,则返回true。Methods in javafx.scene.control that return types with arguments of type Boolean Modifier and Type 方法 描述 ObjectProperty<Callback<TableView.ResizeFeatures,Boolean>>
TableView. columnResizePolicyProperty()
这是当用户完成列大小调整操作时调用的函数。ObjectProperty<Callback<TreeTableView.ResizeFeatures,Boolean>>
TreeTableView. columnResizePolicyProperty()
这是当用户完成列大小调整操作时调用的函数。Callback<TableView.ResizeFeatures,Boolean>
TableView. getColumnResizePolicy()
获取属性columnResizePolicy的值。Callback<TreeTableView.ResizeFeatures,Boolean>
TreeTableView. getColumnResizePolicy()
获取属性columnResizePolicy的值。Callback<TableView<S>,Boolean>
TableView. getSortPolicy()
获取属性sortPolicy的值。Callback<TreeTableView<S>,Boolean>
TreeTableView. getSortPolicy()
获取属性sortPolicy的值。ObjectProperty<Callback<TableView<S>,Boolean>>
TableView. sortPolicyProperty()
排序策略指定如何执行此TableView中的排序。ObjectProperty<Callback<TreeTableView<S>,Boolean>>
TreeTableView. sortPolicyProperty()
排序策略指定如何执行此TreeTableView中的排序。Methods in javafx.scene.control with parameters of type Boolean Modifier and Type 方法 描述 static void
SplitPane. setResizableWithParent(Node node, Boolean value)
在SplitPane调整大小时,将SplitPane中的节点设置为可调整大小。Method parameters in javafx.scene.control with type arguments of type Boolean Modifier and Type 方法 描述 void
TableView. setColumnResizePolicy(Callback<TableView.ResizeFeatures,Boolean> callback)
设置属性columnResizePolicy的值。void
TreeTableView. setColumnResizePolicy(Callback<TreeTableView.ResizeFeatures,Boolean> callback)
设置属性columnResizePolicy的值。void
TableView. setSortPolicy(Callback<TableView<S>,Boolean> callback)
设置属性sortPolicy的值。void
TreeTableView. setSortPolicy(Callback<TreeTableView<S>,Boolean> callback)
设置属性sortPolicy的值。 -
Uses of Boolean in javafx.scene.control.cell
Constructor parameters in javafx.scene.control.cell with type arguments of type Boolean Constructor 描述 CheckBoxListCell(Callback<T,ObservableValue<Boolean>> getSelectedProperty)
创建一个默认的CheckBoxListCell。CheckBoxListCell(Callback<T,ObservableValue<Boolean>> getSelectedProperty, StringConverter<T> converter)
用自定义字符串转换器创建一个CheckBoxListCell。CheckBoxTableCell(Callback<Integer,ObservableValue<Boolean>> getSelectedProperty)
创建一个默认的CheckBoxTableCell,使用自定义的Callback
来检索给定单元索引的ObservableValue。CheckBoxTableCell(Callback<Integer,ObservableValue<Boolean>> getSelectedProperty, StringConverter<T> converter)
创建一个带有自定义字符串转换器的CheckBoxTableCell。CheckBoxTreeCell(Callback<TreeItem<T>,ObservableValue<Boolean>> getSelectedProperty)
创建一个CheckBoxTreeCell
,用于通过单元格工厂的TreeView控件。CheckBoxTreeCell(Callback<TreeItem<T>,ObservableValue<Boolean>> getSelectedProperty, StringConverter<TreeItem<T>> converter)
创建一个CheckBoxTreeCell
,用于通过单元格工厂的TreeView控件。CheckBoxTreeTableCell(Callback<Integer,ObservableValue<Boolean>> getSelectedProperty)
CheckBoxTreeTableCell(Callback<Integer,ObservableValue<Boolean>> getSelectedProperty, StringConverter<T> converter)
用自定义字符串转换器创建一个CheckBoxTreeTableCell。 -
Uses of Boolean in javafx.scene.layout
Methods in javafx.scene.layout that return Boolean Modifier and Type 方法 描述 static Boolean
GridPane. isFillHeight(Node child)
如果设置,返回小孩的垂直填充策略static Boolean
GridPane. isFillWidth(Node child)
如果设置,返回小孩的横向填充策略Methods in javafx.scene.layout with parameters of type Boolean Modifier and Type 方法 描述 static void
GridPane. setFillHeight(Node child, Boolean value)
设置子窗格包含的窗格的垂直填充策略。static void
GridPane. setFillWidth(Node child, Boolean value)
设置子窗格的水平填充策略。 -
Uses of Boolean in javafx.scene.web
Methods in javafx.scene.web that return types with arguments of type Boolean Modifier and Type 方法 描述 ObjectProperty<Callback<String,Boolean>>
WebEngine. confirmHandlerProperty()
JavaScriptconfirm
处理程序属性。Callback<String,Boolean>
WebEngine. getConfirmHandler()
获取属性confirmHandler的值。EventHandler<WebEvent<Boolean>>
WebEngine. getOnVisibilityChanged()
获取属性onVisibilityChanged的值。ObjectProperty<EventHandler<WebEvent<Boolean>>>
WebEngine. onVisibilityChangedProperty()
JavaScript窗口可见性处理器属性。Method parameters in javafx.scene.web with type arguments of type Boolean Modifier and Type 方法 描述 void
WebEngine. setConfirmHandler(Callback<String,Boolean> handler)
设置属性confirmHandler的值。void
WebEngine. setOnVisibilityChanged(EventHandler<WebEvent<Boolean>> handler)
设置属性onVisibilityChanged的值。 -
Uses of Boolean in javafx.util.converter
Methods in javafx.util.converter that return Boolean Modifier and Type 方法 描述 Boolean
BooleanStringConverter. fromString(String value)
将提供的字符串转换为由特定转换器定义的对象。Methods in javafx.util.converter with parameters of type Boolean Modifier and Type 方法 描述 String
BooleanStringConverter. toString(Boolean value)
将提供的对象转换为其字符串形式。 -
Uses of Boolean in javax.management
Methods in javax.management with parameters of type Boolean Modifier and Type 方法 描述 void
MBeanRegistration. postRegister(Boolean registrationDone)
允许MBean在MBean服务器中注册或注册失败后执行所需的操作。void
StandardMBean. postRegister(Boolean registrationDone)
允许MBean在MBean服务器中注册或注册失败后执行所需的操作。 -
Uses of Boolean in javax.management.loading
Methods in javax.management.loading with parameters of type Boolean Modifier and Type 方法 描述 void
MLet. postRegister(Boolean registrationDone)
允许m-let在MBean服务器中注册或注册失败后执行所需的操作。 -
Uses of Boolean in javax.management.modelmbean
Methods in javax.management.modelmbean with parameters of type Boolean Modifier and Type 方法 描述 void
RequiredModelMBean. postRegister(Boolean registrationDone)
允许MBean在MBean服务器中注册或注册失败后执行所需的操作。 -
Uses of Boolean in javax.management.monitor
Methods in javax.management.monitor with parameters of type Boolean Modifier and Type 方法 描述 void
Monitor. postRegister(Boolean registrationDone)
允许监视器MBean在MBean服务器中注册或注册失败后执行所需的操作。 -
Uses of Boolean in javax.management.openmbean
Fields in javax.management.openmbean with type parameters of type Boolean Modifier and Type Field 描述 static SimpleType<Boolean>
SimpleType. BOOLEAN
描述Java类名称为java.lang.Boolean
值的SimpleType
实例。 -
Uses of Boolean in javax.management.relation
Methods in javax.management.relation that return Boolean Modifier and Type 方法 描述 Boolean
RelationService. hasRelation(String relationId)
检查在关系服务中是否存在与给定关系ID相关联的关系。Boolean
RelationServiceMBean. hasRelation(String relationId)
检查在关系服务中是否存在与给定关系ID相关联的关系。Boolean
RelationSupport. isInRelationService()
返回一个内部标志,指定对象是否仍由关系服务处理。Boolean
RelationSupportMBean. isInRelationService()
返回一个内部标志,指定对象是否仍由关系服务处理。Methods in javax.management.relation with parameters of type Boolean Modifier and Type 方法 描述 Integer
RelationService. checkRoleWriting(Role role, String relationTypeName, Boolean initFlag)
检查给定的角色是否可以按给定类型的关系进行设置。Integer
RelationServiceMBean. checkRoleWriting(Role role, String relationTypeName, Boolean initFlag)
检查给定的角色是否可以按给定类型的关系进行设置。void
RelationService. postRegister(Boolean registrationDone)
void
RelationSupport. postRegister(Boolean registrationDone)
void
RelationSupport. setRelationServiceManagementFlag(Boolean flag)
void
RelationSupportMBean. setRelationServiceManagementFlag(Boolean flag)
指定该关系是否由关系服务处理。 -
Uses of Boolean in javax.management.remote
Methods in javax.management.remote with parameters of type Boolean Modifier and Type 方法 描述 void
JMXConnectorServer. postRegister(Boolean registrationDone)
-
Uses of Boolean in javax.management.timer
Methods in javax.management.timer that return Boolean Modifier and Type 方法 描述 Boolean
Timer. getFixedRate(Integer id)
获取标志的副本,指示是定期通知是以 固定延迟还是 固定速率执行 。Boolean
TimerMBean. getFixedRate(Integer id)
获取标志的副本,指示是定期通知是以 固定延迟还是 固定速率执行 。Methods in javax.management.timer with parameters of type Boolean Modifier and Type 方法 描述 void
Timer. postRegister(Boolean registrationDone)
允许定时器MBean在MBean服务器中注册或注册失败后执行所需的任何操作。 -
Uses of Boolean in javax.swing
Methods in javax.swing with parameters of type Boolean Modifier and Type 方法 描述 void
GroupLayout. setHonorsVisibility(Component component, Boolean honorsVisibility)
设置组件的可见性是否考虑到尺寸和定位。protected void
DefaultDesktopManager. setWasIcon(JInternalFrame f, Boolean value)
设置组件已经被图标化,并且desktopIcon
的边界是有效的。 -
Uses of Boolean in javax.swing.filechooser
Methods in javax.swing.filechooser that return Boolean Modifier and Type 方法 描述 Boolean
FileSystemView. isTraversable(File f)
如果可以访问文件(目录),则返回true。Boolean
FileView. isTraversable(File f)
该目录是否可遍历。 -
Uses of Boolean in javax.swing.plaf.basic
Fields in javax.swing.plaf.basic with type parameters of type Boolean Modifier and Type Field 描述 protected Hashtable<TreePath,Boolean>
BasicTreeUI. drawingCache
用于最小化垂直线的绘图。Methods in javax.swing.plaf.basic that return Boolean Modifier and Type 方法 描述 Boolean
BasicFileChooserUI.BasicFileView. isHidden(File f)
返回是否隐藏文件。 -
Uses of Boolean in javax.tools
Methods in javax.tools that return Boolean Modifier and Type 方法 描述 Boolean
DocumentationTool.DocumentationTask. call()
执行此文档任务。Boolean
JavaCompiler.CompilationTask. call()
执行此编译任务。
-