| Package | Description |
|---|---|
| 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.nio.channels |
Defines channels, which represent connections to entities that are capable of performing I/O operations, such as files and sockets; defines selectors, for multiplexed, non-blocking I/O operations.
|
| java.sql |
Provides the API for accessing and processing data stored in a data source (usually a relational database) using the Java
TM programming language.
|
| java.util |
Contains the collections framework, legacy collection classes, event model, date and time facilities, internationalization, and miscellaneous utility classes (a string tokenizer, a random-number generator, and a bit array).
|
| java.util.spi |
Service provider classes for the classes in the java.util package.
|
| java.util.stream |
Classes to support functional-style operations on streams of elements, such as map-reduce transformations on collections.
|
| javax.management |
Provides the core classes for the Java Management Extensions.
|
| 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.remote.rmi |
The RMI connector is a connector for the JMX Remote API that uses RMI to transmit client requests to a remote MBean server.
|
| javax.management.timer |
Provides the definition of the Timer MBean.
|
| javax.script |
The scripting API consists of interfaces and classes that define Java
TM Scripting Engines and provides a framework for their use in Java applications.
|
| 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.plaf.basic |
Provides user interface objects built according to the Basic look and feel.
|
| Modifier and Type | Field and Description |
|---|---|
static Integer |
TextAttribute.KERNING_ON
Request standard kerning.
|
static Integer |
TextAttribute.LIGATURES_ON
Request standard optional ligatures.
|
static Integer |
TextAttribute.SUPERSCRIPT_SUB
Standard subscript.
|
static Integer |
TextAttribute.SUPERSCRIPT_SUPER
Standard superscript.
|
static Integer |
TextAttribute.UNDERLINE_LOW_DASHED
Single pixel dashed low underline.
|
static Integer |
TextAttribute.UNDERLINE_LOW_DOTTED
Single pixel dotted low underline.
|
static Integer |
TextAttribute.UNDERLINE_LOW_GRAY
Double pixel gray low underline.
|
static Integer |
TextAttribute.UNDERLINE_LOW_ONE_PIXEL
Single pixel solid low underline.
|
static Integer |
TextAttribute.UNDERLINE_LOW_TWO_PIXEL
Double pixel solid low underline.
|
static Integer |
TextAttribute.UNDERLINE_ON
Standard underline.
|
| Modifier and Type | Field and Description |
|---|---|
static Class |
Integer.TYPE
The
Class instance representing the primitive type
int.
|
| Modifier and Type | Method and Description |
|---|---|
static Integer |
Integer.decode(String
Decodes a
String into an
Integer.
|
static Integer |
Integer.getInteger(String
Determines the integer value of the system property with the specified name.
|
static Integer |
Integer.getInteger(String
Determines the integer value of the system property with the specified name.
|
static Integer |
Integer.getInteger(String
Returns the integer value of the system property with the specified name.
|
static Integer |
Integer.valueOf(int i)
Returns an
Integer instance representing the specified
int value.
|
static Integer |
Integer.valueOf(String
Returns an
Integer object holding the value of the specified
String.
|
static Integer |
Integer.valueOf(String
Returns an
Integer object holding the value extracted from the specified
String when parsed with the radix given by the second argument.
|
| Modifier and Type | Method and Description |
|---|---|
int |
Integer.compareTo(Integer
Compares two
Integer objects numerically.
|
static Integer |
Integer.getInteger(String
Returns the integer value of the system property with the specified name.
|
| Modifier and Type | Field and Description |
|---|---|
static SocketOption |
StandardSocketOptions.IP_MULTICAST_TTL
The
time-to-live for Internet Protocol (IP) multicast datagrams.
|
static SocketOption |
StandardSocketOptions.IP_TOS
The Type of Service (ToS) octet in the Internet Protocol (IP) header.
|
static SocketOption |
StandardSocketOptions.SO_LINGER
Linger on close if data is present.
|
static SocketOption |
StandardSocketOptions.SO_RCVBUF
The size of the socket receive buffer.
|
static SocketOption |
StandardSocketOptions.SO_SNDBUF
The size of the socket send buffer.
|
| Modifier and Type | Method and Description |
|---|---|
abstract Future |
AsynchronousSocketChannel.read(ByteBuffer
|
Future |
AsynchronousByteChannel.read(ByteBuffer
Reads a sequence of bytes from this channel into the given buffer.
|
abstract Future |
AsynchronousFileChannel.read(ByteBuffer
Reads a sequence of bytes from this channel into the given buffer, starting at the given file position.
|
abstract Future |
AsynchronousSocketChannel.write(ByteBuffer
|
Future |
AsynchronousByteChannel.write(ByteBuffer
Writes a sequence of bytes to this channel from the given buffer.
|
abstract Future |
AsynchronousFileChannel.write(ByteBuffer
Writes a sequence of bytes to this channel from the given buffer, starting at the given file position.
|
| Modifier and Type | Method and Description |
|---|---|
<A> void |
AsynchronousSocketChannel.read(ByteBuffer
|
<A> void |
AsynchronousByteChannel.read(ByteBuffer
Reads a sequence of bytes from this channel into the given buffer.
|
abstract <A> void |
AsynchronousFileChannel.read(ByteBuffer
Reads a sequence of bytes from this channel into the given buffer, starting at the given file position.
|
abstract <A> void |
AsynchronousSocketChannel.read(ByteBuffer
Reads a sequence of bytes from this channel into the given buffer.
|
<A> void |
AsynchronousSocketChannel.write(ByteBuffer
|
<A> void |
AsynchronousByteChannel.write(ByteBuffer
Writes a sequence of bytes to this channel from the given buffer.
|
abstract <A> void |
AsynchronousFileChannel.write(ByteBuffer
Writes a sequence of bytes to this channel from the given buffer, starting at the given file position.
|
abstract <A> void |
AsynchronousSocketChannel.write(ByteBuffer
Writes a sequence of bytes to this channel from the given buffer.
|
| Modifier and Type | Method and Description |
|---|---|
Integer |
JDBCType.getVendorTypeNumber()
Returns the vendor specific type number for the data type.
|
Integer |
SQLType.getVendorTypeNumber()
Returns the vendor specific type number for the data type.
|
| Modifier and Type | Method and Description |
|---|---|
default Integer |
PrimitiveIterator.OfInt.next()
Returns the next element in the iteration.
|
| Modifier and Type | Method and Description |
|---|---|
Map |
Calendar.getDisplayNames(int field, int style, Locale
Returns a
Map containing all names of the calendar
field in the given
style and
locale and their corresponding field values.
|
| Modifier and Type | Method and Description |
|---|---|
default void |
Spliterator.OfInt.forEachRemaining(Consumer
Performs the given action for each remaining element, sequentially in the current thread, until all elements have been processed or the action throws an exception.
|
default void |
PrimitiveIterator.OfInt.forEachRemaining(Consumer
Performs the given action for each remaining element until all elements have been processed or the action throws an exception.
|
default boolean |
Spliterator.OfInt.tryAdvance(Consumer
If a remaining element exists, performs the given action on it, returning
true; else returns
false.
|
| Modifier and Type | Method and Description |
|---|---|
abstract Map |
CalendarNameProvider.getDisplayNames(String
Returns a
Map containing all string representations (display names) of the
Calendar
field in the given
style and
locale and their corresponding field values.
|
| Modifier and Type | Method and Description |
|---|---|
Stream |
IntStream.boxed()
Returns a
Stream consisting of the elements of this stream, each boxed to an
Integer.
|
static <T> Collector |
Collectors.summingInt(ToIntFunction
Returns a
Collector that produces the sum of a integer-valued function applied to the input elements.
|
| Modifier and Type | Method and Description |
|---|---|
Integer |
MBeanServer.getMBeanCount()
Returns the number of MBeans registered in the MBean server.
|
Integer |
MBeanServerConnection.getMBeanCount()
Returns the number of MBeans registered in the MBean server.
|
| Modifier and Type | Field and Description |
|---|---|
static SimpleType |
SimpleType.INTEGER
The
SimpleType instance describing values whose Java class name is
java.lang.Integer.
|
| Modifier and Type | Method and Description |
|---|---|
Integer |
RelationService.checkRoleReading(String
Checks if given Role can be read in a relation of the given type.
|
Integer |
RelationServiceMBean.checkRoleReading(String
Checks if given Role can be read in a relation of the given type.
|
Integer |
RelationService.checkRoleWriting(Role
Checks if given Role can be set in a relation of given type.
|
Integer |
RelationServiceMBean.checkRoleWriting(Role
Checks if given Role can be set in a relation of given type.
|
Integer |
RelationSupport.getRoleCardinality(String
Returns the number of MBeans currently referenced in the given role.
|
Integer |
Relation.getRoleCardinality(String
Returns the number of MBeans currently referenced in the given role.
|
Integer |
RelationService.getRoleCardinality(String
Retrieves the number of MBeans currently referenced in the given role.
|
Integer |
RelationServiceMBean.getRoleCardinality(String
Retrieves the number of MBeans currently referenced in the given role.
|
| Modifier and Type | Method and Description |
|---|---|
Integer |
TargetedNotification.getListenerID()
The ID of the listener to which the notification is targeted.
|
| Constructor and Description | |
|---|---|
TargetedNotification(Notification
Constructs a
TargetedNotification object.
|
| Modifier and Type | Method and Description |
|---|---|
Integer |
RMIConnection.addNotificationListeners(ObjectName
|
Integer |
RMIConnectionImpl.addNotificationListeners(ObjectName
|
Integer |
RMIConnection.getMBeanCount(Subject
Handles the method
MBeanServerConnection.
|
Integer |
RMIConnectionImpl.getMBeanCount(Subject
|
| Modifier and Type | Method and Description |
|---|---|
void |
RMIConnection.removeNotificationListeners(ObjectName
|
void |
RMIConnectionImpl.removeNotificationListeners(ObjectName
|
| Modifier and Type | Method and Description |
|---|---|
Integer |
TimerMBean.addNotification(String
Creates a new timer notification with the specified
type,
message and
userData and inserts it into the list of notifications with a given date and a null period and number of occurrences.
|
Integer |
Timer.addNotification(String
Creates a new timer notification with the specified
type,
message and
userData and inserts it into the list of notifications with a given date and a null period and number of occurrences.
|
Integer |
TimerMBean.addNotification(String
Creates a new timer notification with the specified
type,
message and
userData and inserts it into the list of notifications with a given date and period and a null number of occurrences.
|
Integer |
Timer.addNotification(String
Creates a new timer notification with the specified
type,
message and
userData and inserts it into the list of notifications with a given date and period and a null number of occurrences.
|
Integer |
TimerMBean.addNotification(String
Creates a new timer notification with the specified
type,
message and
userData and inserts it into the list of notifications with a given date, period and number of occurrences.
|
Integer |
Timer.addNotification(String
Creates a new timer notification with the specified
type,
message and
userData and inserts it into the list of notifications with a given date, period and number of occurrences.
|
Integer |
TimerMBean.addNotification(String
Creates a new timer notification with the specified
type,
message and
userData and inserts it into the list of notifications with a given date, period and number of occurrences.
|
Integer |
Timer.addNotification(String
Creates a new timer notification with the specified
type,
message and
userData and inserts it into the list of notifications with a given date, period and number of occurrences.
|
Integer |
TimerNotification.getNotificationID()
Gets the identifier of this timer notification.
|
| Modifier and Type | Method and Description |
|---|---|
Vector |
TimerMBean.getAllNotificationIDs()
Gets all timer notification identifiers registered into the list of notifications.
|
Vector |
Timer.getAllNotificationIDs()
Gets all timer notification identifiers registered into the list of notifications.
|
Vector |
TimerMBean.getNotificationIDs(String
Gets all the identifiers of timer notifications corresponding to the specified type.
|
Vector |
Timer.getNotificationIDs(String
Gets all the identifiers of timer notifications corresponding to the specified type.
|
| Modifier and Type | Method and Description |
|---|---|
Date |
TimerMBean.getDate(Integer
Gets a copy of the date associated to a timer notification.
|
Date |
Timer.getDate(Integer
Gets a copy of the date associated to a timer notification.
|
Boolean |
TimerMBean.getFixedRate(Integer
Gets a copy of the flag indicating whether a periodic notification is executed at
fixed-delay or at
fixed-rate.
|
Boolean |
Timer.getFixedRate(Integer
Gets a copy of the flag indicating whether a periodic notification is executed at
fixed-delay or at
fixed-rate.
|
Long |
TimerMBean.getNbOccurences(Integer
Gets a copy of the remaining number of occurrences associated to a timer notification.
|
Long |
Timer.getNbOccurences(Integer
Gets a copy of the remaining number of occurrences associated to a timer notification.
|
String |
TimerMBean.getNotificationMessage(Integer
Gets the timer notification detailed message corresponding to the specified identifier.
|
String |
Timer.getNotificationMessage(Integer
Gets the timer notification detailed message corresponding to the specified identifier.
|
String |
TimerMBean.getNotificationType(Integer
Gets the timer notification type corresponding to the specified identifier.
|
String |
Timer.getNotificationType(Integer
Gets the timer notification type corresponding to the specified identifier.
|
Object |
TimerMBean.getNotificationUserData(Integer
Gets the timer notification user data object corresponding to the specified identifier.
|
Object |
Timer.getNotificationUserData(Integer
Gets the timer notification user data object corresponding to the specified identifier.
|
Long |
TimerMBean.getPeriod(Integer
Gets a copy of the period (in milliseconds) associated to a timer notification.
|
Long |
Timer.getPeriod(Integer
Gets a copy of the period (in milliseconds) associated to a timer notification.
|
void |
TimerMBean.removeNotification(Integer
Removes the timer notification corresponding to the specified identifier from the list of notifications.
|
void |
Timer.removeNotification(Integer
Removes the timer notification corresponding to the specified identifier from the list of notifications.
|
| Constructor and Description | |
|---|---|
TimerNotification(String
Creates a timer notification object.
|
| Modifier and Type | Method and Description |
|---|---|
List |
SimpleScriptContext.getScopes()
Returns immutable
List of all the valid values for scope in the ScriptContext.
|
List |
ScriptContext.getScopes()
Returns immutable
List of all the valid values for scope in the ScriptContext.
|
| Modifier and Type | Field and Description |
|---|---|
static Integer |
JLayeredPane.DEFAULT_LAYER
Convenience object defining the Default layer.
|
static Integer |
JLayeredPane.DRAG_LAYER
Convenience object defining the Drag layer.
|
static Integer |
JLayeredPane.FRAME_CONTENT_LAYER
Convenience object defining the Frame Content layer.
|
static Integer |
JLayeredPane.MODAL_LAYER
Convenience object defining the Modal layer.
|
static Integer |
JLayeredPane.PALETTE_LAYER
Convenience object defining the Palette layer.
|
static Integer |
JLayeredPane.POPUP_LAYER
Convenience object defining the Popup layer.
|
| Modifier and Type | Method and Description |
|---|---|
protected Integer |
JLayeredPane.getObjectForLayer(int layer)
Returns the Integer object associated with a specified layer.
|
| Modifier and Type | Method and Description |
|---|---|
protected Hashtable |
JLayeredPane.getComponentToLayer()
Returns the hashtable that maps components to layers.
|
| Modifier and Type | Method and Description |
|---|---|
void |
JInternalFrame.setLayer(Integer
Convenience method for setting the layer attribute of this component.
|
| Modifier and Type | Method and Description |
|---|---|
protected Integer |
BasicSliderUI.getHighestValue()
Returns the biggest value that has an entry in the label table.
|
protected Integer |
BasicSliderUI.getLowestValue()
Returns the smallest value that has an entry in the label table.
|