软件包 | 描述 |
---|---|
java.awt.font |
提供有关字体的类和接口。
|
java.lang |
提供对java编程语言的设计基础课。
|
java.net |
为实现网络应用程序提供类。
|
java.nio.channels |
定义了渠道,它代表的是能够执行I/O操作的实体连接,如文件和套接字;定义选择器,多路复用,非阻塞I/O操作。
|
java.sql |
提供的API来访问和处理的数据存储在数据源(通常是一个关系数据库)使用java
TM编程语言。
|
java.util |
包含集合框架、遗留的集合类、事件模型、日期和时间的设施、国际化和各种实用工具类(一个字符串标记,一个随机数发生器,和一位阵列)。
|
java.util.spi |
在java.util包类服务提供程序类。
|
java.util.stream |
类,以支持元素流上的功能样式操作,如Map减少集合上的转换。
|
javax.management |
在java管理扩展提供了核心课程。
|
javax.management.openmbean |
提供开放的数据类型和开放MBean描述符类。
|
javax.management.relation |
提供关系服务的定义。
|
javax.management.remote |
用于远程访问JMX MBean服务器接口。
|
javax.management.remote.rmi |
RMI连接器是一个JMX远程API,使用RMI传输客户端请求到远程管理服务器连接器。
|
javax.management.timer |
提供的定时器MBean的定义。
|
javax.script |
脚本API的接口和类,定义
TM java脚本引擎提供了一种用于java应用程序框架。
|
javax.swing |
提供了一套“轻量级”(所有的java语言)组件,以最大可能的程度,在所有平台上工作。
|
javax.swing.plaf.basic |
根据基本的外观和感觉提供内置的用户界面对象。
|
Modifier and Type | Field and Description |
---|---|
static Integer |
TextAttribute.KERNING_ON
要求标准字距。
|
static Integer |
TextAttribute.LIGATURES_ON
要求标准可选连字。
|
static Integer |
TextAttribute.SUPERSCRIPT_SUB
标准的下标。
|
static Integer |
TextAttribute.SUPERSCRIPT_SUPER
标准上标。
|
static Integer |
TextAttribute.UNDERLINE_LOW_DASHED
单像素虚线低下划线。
|
static Integer |
TextAttribute.UNDERLINE_LOW_DOTTED
单像素点低下划线。
|
static Integer |
TextAttribute.UNDERLINE_LOW_GRAY
双像素灰度低下划线。
|
static Integer |
TextAttribute.UNDERLINE_LOW_ONE_PIXEL
单像素固体低下划线。
|
static Integer |
TextAttribute.UNDERLINE_LOW_TWO_PIXEL
双像素固体低下划线。
|
static Integer |
TextAttribute.UNDERLINE_ON
标准强调。
|
Modifier and Type | Field and Description |
---|---|
static 类<Integer> |
Integer.TYPE
int 代表原始类型的
类 实例。
|
Modifier and Type | Method and Description |
---|---|
static Integer |
Integer.decode(String nm)
解码
String 为
Integer 。
|
static Integer |
Integer.getInteger(String nm)
用指定的名称确定系统属性的整数值。
|
static Integer |
Integer.getInteger(String nm, int val)
用指定的名称确定系统属性的整数值。
|
static Integer |
Integer.getInteger(String nm, Integer val)
用指定名称返回系统属性的整数值。
|
static Integer |
Integer.valueOf(int i)
返回一个
Integer 实例表示指定的
int 价值。
|
static Integer |
Integer.valueOf(String s)
返回指定的
String 持有价值
Integer 对象。
|
static Integer |
Integer.valueOf(String s, int radix)
返回一个
Integer 对象持有价值提取指定的
String 解析时由第二个参数给定的基数。
|
Modifier and Type | Method and Description |
---|---|
int |
Integer.compareTo(Integer anotherInteger)
比较两
Integer 对象数值。
|
static Integer |
Integer.getInteger(String nm, Integer val)
用指定名称返回系统属性的整数值。
|
Modifier and Type | Field and Description |
---|---|
static SocketOption<Integer> |
StandardSocketOptions.IP_MULTICAST_TTL
时间的互联网协议(IP)的多播数据报的生活。
|
static SocketOption<Integer> |
StandardSocketOptions.IP_TOS
服务类型(TOS)的互联网协议(IP)报头字节。
|
static SocketOption<Integer> |
StandardSocketOptions.SO_LINGER
如果数据是存在的话,就停留在关闭的。
|
static SocketOption<Integer> |
StandardSocketOptions.SO_RCVBUF
插座接收缓冲区的大小。
|
static SocketOption<Integer> |
StandardSocketOptions.SO_SNDBUF
套接字发送缓冲区的大小。
|
Modifier and Type | Method and Description |
---|---|
abstract Future<Integer> |
AsynchronousSocketChannel.read(ByteBuffer dst) |
Future<Integer> |
AsynchronousByteChannel.read(ByteBuffer dst)
从这个通道读取一个字节序列到给定的缓冲区中。
|
abstract Future<Integer> |
AsynchronousFileChannel.read(ByteBuffer dst, long position)
从这个通道读取一个字节序列到给定的缓冲区,从给定的文件位置开始。
|
abstract Future<Integer> |
AsynchronousSocketChannel.write(ByteBuffer src) |
Future<Integer> |
AsynchronousByteChannel.write(ByteBuffer src)
从给定的缓冲区中写入该通道的一个字节序列。
|
abstract Future<Integer> |
AsynchronousFileChannel.write(ByteBuffer src, long position)
从给定的缓冲区中从给定的缓冲区中写入一个字节序列,从给定的文件位置开始。
|
Modifier and Type | Method and Description |
---|---|
<A> void |
AsynchronousSocketChannel.read(ByteBuffer dst, A attachment, CompletionHandler<Integer,? super A> handler) |
<A> void |
AsynchronousByteChannel.read(ByteBuffer dst, A attachment, CompletionHandler<Integer,? super A> handler)
从这个通道读取一个字节序列到给定的缓冲区中。
|
abstract <A> void |
AsynchronousFileChannel.read(ByteBuffer dst, long position, A attachment, CompletionHandler<Integer,? super A> handler)
从这个通道读取一个字节序列到给定的缓冲区,从给定的文件位置开始。
|
abstract <A> void |
AsynchronousSocketChannel.read(ByteBuffer dst, long timeout, TimeUnit unit, A attachment, CompletionHandler<Integer,? super A> handler)
从这个通道读取一个字节序列到给定的缓冲区中。
|
<A> void |
AsynchronousSocketChannel.write(ByteBuffer src, A attachment, CompletionHandler<Integer,? super A> handler) |
<A> void |
AsynchronousByteChannel.write(ByteBuffer src, A attachment, CompletionHandler<Integer,? super A> handler)
从给定的缓冲区中写入该通道的一个字节序列。
|
abstract <A> void |
AsynchronousFileChannel.write(ByteBuffer src, long position, A attachment, CompletionHandler<Integer,? super A> handler)
从给定的缓冲区中从给定的缓冲区中写入一个字节序列,从给定的文件位置开始。
|
abstract <A> void |
AsynchronousSocketChannel.write(ByteBuffer src, long timeout, TimeUnit unit, A attachment, CompletionHandler<Integer,? super A> handler)
从给定的缓冲区中写入该通道的一个字节序列。
|
Modifier and Type | Method and Description |
---|---|
Integer |
JDBCType.getVendorTypeNumber()
返回数据类型的特定于供应商的类型号。
|
Integer |
SQLType.getVendorTypeNumber()
返回数据类型的特定于供应商的类型号。
|
Modifier and Type | Method and Description |
---|---|
default Integer |
PrimitiveIterator.OfInt.next()
返回迭代中的下一个元素。
|
Modifier and Type | Method and Description |
---|---|
Map<String,Integer> |
Calendar.getDisplayNames(int field, int style, Locale locale)
返回一个包含所有的名字
Map 的日历
field 在给定的
style 和
locale 及其相应的字段值。
|
Modifier and Type | Method and Description |
---|---|
default void |
Spliterator.OfInt.forEachRemaining(Consumer<? super Integer> action)
对每个剩余元素执行给定的操作,在当前线程中顺序执行,直到所有的元素都被处理或操作抛出异常。
|
default void |
PrimitiveIterator.OfInt.forEachRemaining(Consumer<? super Integer> action)
执行给定的每个剩余元素的动作,直到所有的元素都被处理或操作抛出异常。
|
default boolean |
Spliterator.OfInt.tryAdvance(Consumer<? super Integer> action)
如果剩余的元素存在,执行特定动作的话,还
true ;否则返回
false 。
|
Modifier and Type | Method and Description |
---|---|
abstract Map<String,Integer> |
CalendarNameProvider.getDisplayNames(String calendarType, int field, int style, Locale locale)
返回一个包含所有的字符串表示
Map (显示名称)的
Calendar
field 在给定的
style 和
locale 及其相应的字段值。
|
Modifier and Type | Method and Description |
---|---|
Stream<Integer> |
IntStream.boxed()
返回一个包含该流的元素
Stream ,每盒装一
Integer 。
|
static <T> Collector<T,?,Integer> |
Collectors.summingInt(ToIntFunction<? super T> mapper)
返回一个
Collector 产生一个整数的函数应用于输入元素的总和。
|
Modifier and Type | Method and Description |
---|---|
Integer |
MBeanServer.getMBeanCount()
返回在MBean服务器注册MBean的数量。
|
Integer |
MBeanServerConnection.getMBeanCount()
返回在MBean服务器注册MBean的数量。
|
Modifier and Type | Field and Description |
---|---|
static SimpleType<Integer> |
SimpleType.INTEGER
描述值的java类的名称是
java.lang.Integer 的
SimpleType 实例。
|
Modifier and Type | Method and Description |
---|---|
Integer |
RelationService.checkRoleReading(String roleName, String relationTypeName)
检查给定的角色是否可以在给定类型的关系中读取。
|
Integer |
RelationServiceMBean.checkRoleReading(String roleName, String relationTypeName)
检查给定的角色是否可以在给定类型的关系中读取。
|
Integer |
RelationService.checkRoleWriting(Role role, String relationTypeName, Boolean initFlag)
检查给定的角色是否可以设置在给定类型的关系中。
|
Integer |
RelationServiceMBean.checkRoleWriting(Role role, String relationTypeName, Boolean initFlag)
检查给定的角色是否可以设置在给定类型的关系中。
|
Integer |
Relation.getRoleCardinality(String roleName)
返回给定引用在MBeans目前角色的数量。
|
Integer |
RelationSupport.getRoleCardinality(String roleName)
返回给定引用在MBeans目前角色的数量。
|
Integer |
RelationService.getRoleCardinality(String relationId, String roleName)
检索当前引用MBean给定角色的数量。
|
Integer |
RelationServiceMBean.getRoleCardinality(String relationId, String roleName)
检索当前引用MBean给定角色的数量。
|
Modifier and Type | Method and Description |
---|---|
Integer |
TargetedNotification.getListenerID()
通知的侦听器的标识。
|
Constructor and Description |
---|
TargetedNotification(Notification notification, Integer listenerID)
构建了一个
TargetedNotification 对象。
|
Modifier and Type | Method and Description |
---|---|
Integer[] |
RMIConnectionImpl.addNotificationListeners(ObjectName[] names, MarshalledObject[] filters, Subject[] delegationSubjects) |
Integer[] |
RMIConnection.addNotificationListeners(ObjectName[] names, MarshalledObject[] filters, Subject[] delegationSubjects)
|
Integer[] |
RMIConnectionImpl_Stub.addNotificationListeners(ObjectName[] $param_arrayOf_ObjectName_1, MarshalledObject[] $param_arrayOf_MarshalledObject_2, Subject[] $param_arrayOf_Subject_3) |
Integer |
RMIConnectionImpl.getMBeanCount(Subject delegationSubject) |
Integer |
RMIConnection.getMBeanCount(Subject delegationSubject)
|
Integer |
RMIConnectionImpl_Stub.getMBeanCount(Subject $param_Subject_1) |
Modifier and Type | Method and Description |
---|---|
void |
RMIConnectionImpl.removeNotificationListeners(ObjectName name, Integer[] listenerIDs, Subject delegationSubject) |
void |
RMIConnection.removeNotificationListeners(ObjectName name, Integer[] listenerIDs, Subject delegationSubject)
|
void |
RMIConnectionImpl_Stub.removeNotificationListeners(ObjectName $param_ObjectName_1, Integer[] $param_arrayOf_Integer_2, Subject $param_Subject_3) |
Modifier and Type | Method and Description |
---|---|
Integer |
TimerMBean.addNotification(String type, String message, Object userData, Date date)
创建一个新的具有指定
type 定时器通知,
message 和
userData 插入到一个给定的日期和一个空的时间和次数的通知列表。
|
Integer |
Timer.addNotification(String type, String message, Object userData, Date date)
创建一个新的具有指定
type 定时器通知,
message 和
userData 插入到一个给定的日期和一个空的时间和次数的通知列表。
|
Integer |
TimerMBean.addNotification(String type, String message, Object userData, Date date, long period)
创建一个新的具有指定
type 定时器通知,
message 和
userData 并把它插入到列表通知与一个给定的日期和时间和空的次数。
|
Integer |
Timer.addNotification(String type, String message, Object userData, Date date, long period)
创建一个新的具有指定
type 定时器通知,
message 和
userData 并把它插入到列表通知与一个给定的日期和时间和空的次数。
|
Integer |
TimerMBean.addNotification(String type, String message, Object userData, Date date, long period, long nbOccurences)
创建一个新的具有指定
type 定时器通知,
message 和
userData 并把它插入到列表通知与一个给定的日期,时间和次数。
|
Integer |
Timer.addNotification(String type, String message, Object userData, Date date, long period, long nbOccurences)
创建一个新的具有指定
type 定时器通知,
message 和
userData 并把它插入到列表通知与一个给定的日期,时间和次数。
|
Integer |
TimerMBean.addNotification(String type, String message, Object userData, Date date, long period, long nbOccurences, boolean fixedRate)
创建一个新的具有指定
type 定时器通知,
message 和
userData 并把它插入到列表通知与一个给定的日期,时间和次数。
|
Integer |
Timer.addNotification(String type, String message, Object userData, Date date, long period, long nbOccurences, boolean fixedRate)
创建一个新的具有指定
type 定时器通知,
message 和
userData 并把它插入到列表通知与一个给定的日期,时间和次数。
|
Integer |
TimerNotification.getNotificationID()
获取此计时器通知的标识符。
|
Modifier and Type | Method and Description |
---|---|
Vector<Integer> |
TimerMBean.getAllNotificationIDs()
获取已注册到通知列表中的所有计时器通知标识符。
|
Vector<Integer> |
Timer.getAllNotificationIDs()
获取已注册到通知列表中的所有计时器通知标识符。
|
Vector<Integer> |
TimerMBean.getNotificationIDs(String type)
获取对应于指定类型的定时器通知的所有标识符。
|
Vector<Integer> |
Timer.getNotificationIDs(String type)
获取对应于指定类型的定时器通知的所有标识符。
|
Modifier and Type | Method and Description |
---|---|
Date |
TimerMBean.getDate(Integer id)
获取与计时器通知相关联的日期的副本。
|
Date |
Timer.getDate(Integer id)
获取与计时器通知相关联的日期的副本。
|
Boolean |
TimerMBean.getFixedRate(Integer id)
获取一个副本的指示标志是否定期通知是在固定延迟或固定利率执行。
|
Boolean |
Timer.getFixedRate(Integer id)
获取一个副本的指示标志是否定期通知是在固定延迟或固定利率执行。
|
Long |
TimerMBean.getNbOccurences(Integer id)
获取与计时器通知相关联的剩余数量的副本的副本。
|
Long |
Timer.getNbOccurences(Integer id)
获取与计时器通知相关联的剩余数量的副本的副本。
|
String |
TimerMBean.getNotificationMessage(Integer id)
获取对应于指定标识符的计时器通知详细信息。
|
String |
Timer.getNotificationMessage(Integer id)
获取对应于指定标识符的计时器通知详细信息。
|
String |
TimerMBean.getNotificationType(Integer id)
获取对应于指定标识符的计时器通知类型。
|
String |
Timer.getNotificationType(Integer id)
获取对应于指定标识符的计时器通知类型。
|
Object |
TimerMBean.getNotificationUserData(Integer id)
获取对应于指定标识符的计时器通知用户数据对象。
|
Object |
Timer.getNotificationUserData(Integer id)
获取对应于指定标识符的计时器通知用户数据对象。
|
Long |
TimerMBean.getPeriod(Integer id)
获取与计时器通知相关联的期间(以毫秒为单位)的副本。
|
Long |
Timer.getPeriod(Integer id)
获取与计时器通知相关联的期间(以毫秒为单位)的副本。
|
void |
TimerMBean.removeNotification(Integer id)
从通知列表中移除与指定的标识符相对应的计时器通知。
|
void |
Timer.removeNotification(Integer id)
从通知列表中移除与指定的标识符相对应的计时器通知。
|
Constructor and Description |
---|
TimerNotification(String type, Object source, long sequenceNumber, long timeStamp, String msg, Integer id)
创建一个计时器通知对象。
|
Modifier and Type | Method and Description |
---|---|
List<Integer> |
ScriptContext.getScopes()
在scriptcontext范围内的所有有效值不变的
List 返回。
|
List<Integer> |
SimpleScriptContext.getScopes()
在scriptcontext范围内的所有有效值不变的
List 返回。
|
Modifier and Type | Field and Description |
---|---|
static Integer |
JLayeredPane.DEFAULT_LAYER
定义默认层的方便对象。
|
static Integer |
JLayeredPane.DRAG_LAYER
定义拖动层的方便对象。
|
static Integer |
JLayeredPane.FRAME_CONTENT_LAYER
定义帧内容层的方便对象。
|
static Integer |
JLayeredPane.MODAL_LAYER
定义模态层的方便对象。
|
static Integer |
JLayeredPane.PALETTE_LAYER
定义调色板层的方便对象。
|
static Integer |
JLayeredPane.POPUP_LAYER
方便的对象定义的弹出层。
|
Modifier and Type | Method and Description |
---|---|
protected Integer |
JLayeredPane.getObjectForLayer(int layer)
返回与指定的层关联的整数对象。
|
Modifier and Type | Method and Description |
---|---|
protected Hashtable<Component,Integer> |
JLayeredPane.getComponentToLayer()
返回哈希映射组件层。
|
Modifier and Type | Method and Description |
---|---|
void |
JInternalFrame.setLayer(Integer layer)
设置此组件的层属性的方便方法。
|
Modifier and Type | Method and Description |
---|---|
protected Integer |
BasicSliderUI.getHighestValue()
返回在标签表中有一个条目的最大值。
|
protected Integer |
BasicSliderUI.getLowestValue()
返回在标签表中有一个条目的最小值。
|
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.