Package | Description |
---|---|
java.awt |
Contains all of the classes for creating user
interfaces and for painting graphics and images.
|
java.lang |
Provides classes that are fundamental to the design of the Java
programming language.
|
java.math |
Provides classes for performing arbitrary-precision integer
arithmetic (
BigInteger ) and arbitrary-precision decimal
arithmetic (BigDecimal ). |
java.net |
Provides the classes for implementing networking applications.
|
java.security |
Provides the classes and interfaces for the security framework.
|
javax.lang.model.util |
Utilities to assist in the processing of
program elements and
types.
|
javax.management |
Provides the core classes for the Java Management Extensions.
|
javax.management.modelmbean |
Provides the definition of the ModelMBean classes.
|
javax.management.monitor |
Provides the definition of the monitor classes.
|
javax.management.relation |
Provides the definition of the Relation Service.
|
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.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.
|
javax.swing.plaf.synth |
Synth is a skinnable look and feel in which all painting is
delegated.
|
javax.tools |
Provides interfaces for tools which can be invoked from a program,
for example, compilers.
|
javax.xml.bind |
Provides a runtime binding framework for client applications including
unmarshalling, marshalling, and validation capabilities.
|
javax.xml.parsers |
Provides classes allowing the processing of XML documents.
|
javax.xml.stream | |
javax.xml.transform |
This package defines the generic APIs for processing transformation
instructions, and performing a transformation from source to result.
|
Modifier and Type | Method and Description |
---|---|
void |
Window.paint(Graphics g)
Paints the container.
|
Modifier and Type | Method and Description |
---|---|
protected Object |
Thread.clone()
Returns a clone if the class of this object is
Cloneable . |
Modifier and Type | Method and Description |
---|---|
boolean |
BigDecimal.equals(Object x)
Compares this
BigDecimal with the specified
Object for equality. |
int |
BigDecimal.hashCode()
Returns the hash code for this
BigDecimal . |
String |
BigDecimal.toString()
Returns the string representation of this
BigDecimal ,
using scientific notation if an exponent is needed. |
Modifier and Type | Method and Description |
---|---|
int |
InetSocketAddress.hashCode()
Returns a hashcode for this socket address.
|
String |
InetSocketAddress.toString()
Constructs a string representation of this InetSocketAddress.
|
Modifier and Type | Method and Description |
---|---|
String |
ProtectionDomain.toString()
Convert a ProtectionDomain to a String.
|
Modifier and Type | Method and Description |
---|---|
R |
ElementKindVisitor6.visitExecutable(ExecutableElement e,
P p)
Visits an executable element, dispatching to the visit method
for the specific kind of executable,
CONSTRUCTOR , INSTANCE_INIT , METHOD , or
STATIC_INIT . |
R |
TypeKindVisitor6.visitNoType(NoType t,
P p)
|
R |
ElementKindVisitor6.visitPackage(PackageElement e,
P p)
Visits a package element.
|
R |
TypeKindVisitor6.visitPrimitive(PrimitiveType t,
P p)
Visits a primitive type, dispatching to the visit method for
the specific kind of primitive type:
BOOLEAN , BYTE , etc. |
R |
ElementKindVisitor6.visitType(TypeElement e,
P p)
Visits a type element, dispatching to the visit method for the
specific kind of type,
ANNOTATION_TYPE , CLASS , ENUM , or INTERFACE . |
R |
ElementKindVisitor6.visitTypeParameter(TypeParameterElement e,
P p)
Visits a type parameter element.
|
R |
ElementKindVisitor6.visitVariable(VariableElement e,
P p)
Visits a variable element, dispatching to the visit method for
the specific kind of variable,
ENUM_CONSTANT , EXCEPTION_PARAMETER , FIELD ,
LOCAL_VARIABLE , or PARAMETER . |
Modifier and Type | Method and Description |
---|---|
void |
AttributeList.add(int index,
Object element) |
boolean |
AttributeList.add(Object o) |
boolean |
AttributeList.addAll(Collection<?> c) |
boolean |
AttributeList.addAll(int index,
Collection<?> c) |
boolean |
ObjectName.equals(Object object)
Compares the current object name with another object name.
|
int |
ObjectName.hashCode()
Returns a hash code for this object name.
|
Object |
AttributeList.set(int index,
Object element) |
Modifier and Type | Method and Description |
---|---|
Descriptor |
ModelMBeanInfoSupport.getDescriptor() |
Modifier and Type | Method and Description |
---|---|
String |
StringMonitor.getDerivedGauge(ObjectName object)
Gets the derived gauge of the specified object, if this object is
contained in the set of observed MBeans, or
null otherwise. |
Number |
GaugeMonitor.getDerivedGauge(ObjectName object)
Gets the derived gauge of the specified object, if this object is
contained in the set of observed MBeans, or
null otherwise. |
Number |
CounterMonitor.getDerivedGauge(ObjectName object)
Gets the derived gauge of the specified object, if this object is
contained in the set of observed MBeans, or
null otherwise. |
long |
StringMonitor.getDerivedGaugeTimeStamp(ObjectName object)
Gets the derived gauge timestamp of the specified object, if
this object is contained in the set of observed MBeans, or
0 otherwise. |
long |
GaugeMonitor.getDerivedGaugeTimeStamp(ObjectName object)
Gets the derived gauge timestamp of the specified object, if
this object is contained in the set of observed MBeans, or
0 otherwise. |
long |
CounterMonitor.getDerivedGaugeTimeStamp(ObjectName object)
Gets the derived gauge timestamp of the specified object, if
this object is contained in the set of observed MBeans, or
0 otherwise. |
MBeanNotificationInfo[] |
StringMonitor.getNotificationInfo()
Returns a
NotificationInfo object containing the name of
the Java class of the notification and the notification types sent by
the string monitor. |
MBeanNotificationInfo[] |
GaugeMonitor.getNotificationInfo()
Returns a
NotificationInfo object containing the
name of the Java class of the notification and the notification
types sent by the gauge monitor. |
MBeanNotificationInfo[] |
CounterMonitor.getNotificationInfo()
Returns a
NotificationInfo object containing the
name of the Java class of the notification and the notification
types sent by the counter monitor. |
Modifier and Type | Method and Description |
---|---|
void |
RoleUnresolvedList.add(int index,
Object element) |
void |
RoleList.add(int index,
Object element) |
boolean |
RoleUnresolvedList.add(Object o) |
boolean |
RoleList.add(Object o) |
boolean |
RoleUnresolvedList.addAll(Collection<?> c) |
boolean |
RoleList.addAll(Collection<?> c) |
boolean |
RoleUnresolvedList.addAll(int index,
Collection<?> c) |
boolean |
RoleList.addAll(int index,
Collection<?> c) |
Object |
RoleUnresolvedList.set(int index,
Object element) |
Object |
RoleList.set(int index,
Object element) |
Modifier and Type | Method and Description |
---|---|
String |
RMIConnectionImpl.toString()
Returns a string representation of this object.
|
Modifier and Type | Method and Description |
---|---|
void |
DefaultListCellRenderer.firePropertyChange(String propertyName,
boolean oldValue,
boolean newValue)
Overridden for performance reasons.
|
void |
DefaultListCellRenderer.firePropertyChange(String propertyName,
byte oldValue,
byte newValue)
Overridden for performance reasons.
|
void |
DefaultListCellRenderer.firePropertyChange(String propertyName,
char oldValue,
char newValue)
Overridden for performance reasons.
|
void |
DefaultListCellRenderer.firePropertyChange(String propertyName,
double oldValue,
double newValue)
Overridden for performance reasons.
|
void |
DefaultListCellRenderer.firePropertyChange(String propertyName,
float oldValue,
float newValue)
Overridden for performance reasons.
|
void |
DefaultListCellRenderer.firePropertyChange(String propertyName,
int oldValue,
int newValue)
Overridden for performance reasons.
|
void |
DefaultListCellRenderer.firePropertyChange(String propertyName,
long oldValue,
long newValue)
Overridden for performance reasons.
|
protected void |
DefaultListCellRenderer.firePropertyChange(String propertyName,
Object oldValue,
Object newValue)
Overridden for performance reasons.
|
void |
DefaultListCellRenderer.firePropertyChange(String propertyName,
short oldValue,
short newValue)
Overridden for performance reasons.
|
void |
DefaultListCellRenderer.invalidate()
Overridden for performance reasons.
|
boolean |
DefaultListCellRenderer.isOpaque()
Overridden for performance reasons.
|
void |
DefaultListCellRenderer.repaint()
Overridden for performance reasons.
|
void |
DefaultListCellRenderer.repaint(long tm,
int x,
int y,
int width,
int height)
Overridden for performance reasons.
|
void |
DefaultListCellRenderer.repaint(Rectangle r)
Overridden for performance reasons.
|
void |
DefaultListCellRenderer.revalidate()
Overridden for performance reasons.
|
void |
DefaultListCellRenderer.validate()
Overridden for performance reasons.
|
Modifier and Type | Method and Description |
---|---|
Accessible |
BasicComboBoxUI.getAccessibleChild(JComponent c,
int i) |
int |
BasicComboBoxUI.getAccessibleChildrenCount(JComponent c) |
int |
BasicComboBoxUI.getBaseline(JComponent c,
int width,
int height)
Returns the baseline.
|
Component.BaselineResizeBehavior |
BasicComboBoxUI.getBaselineResizeBehavior(JComponent c)
Returns an enum indicating how the baseline of the component
changes as the size changes.
|
Dimension |
BasicComboBoxUI.getMaximumSize(JComponent c) |
Dimension |
BasicComboBoxUI.getMinimumSize(JComponent c)
The minumum size is the size of the display area plus insets plus the button.
|
Dimension |
BasicComboBoxUI.getPreferredSize(JComponent c) |
void |
BasicComboBoxUI.installUI(JComponent c) |
void |
BasicComboBoxUI.KeyHandler.keyPressed(KeyEvent e) |
void |
BasicComboBoxUI.paint(Graphics g,
JComponent c) |
void |
BasicComboBoxUI.uninstallUI(JComponent c) |
Modifier and Type | Method and Description |
---|---|
UIDefaults |
SynthLookAndFeel.getDefaults()
Returns the defaults for this SynthLookAndFeel.
|
String |
SynthLookAndFeel.getDescription()
Returns a textual description of SynthLookAndFeel.
|
String |
SynthLookAndFeel.getID()
Return a string that identifies this look and feel.
|
String |
SynthLookAndFeel.getName()
Return a short string that identifies this look and feel.
|
void |
SynthLookAndFeel.initialize()
Called by UIManager when this look and feel is installed.
|
boolean |
SynthLookAndFeel.isNativeLookAndFeel()
Returns false, SynthLookAndFeel is not a native look and feel.
|
boolean |
SynthLookAndFeel.isSupportedLookAndFeel()
Returns true, SynthLookAndFeel is always supported.
|
String |
Region.toString()
Returns the name of the Region.
|
void |
SynthLookAndFeel.uninitialize()
Called by UIManager when this look and feel is uninstalled.
|
Modifier and Type | Method and Description |
---|---|
String |
SimpleJavaFileObject.toString() |
Modifier and Type | Method and Description |
---|---|
Throwable |
JAXBException.getCause() |
Modifier and Type | Method and Description |
---|---|
Throwable |
FactoryConfigurationError.getCause()
use the exception chaining mechanism of JDK1.4
|
Modifier and Type | Method and Description |
---|---|
Throwable |
FactoryConfigurationError.getCause()
use the exception chaining mechanism of JDK1.4
|
Modifier and Type | Method and Description |
---|---|
Throwable |
TransformerFactoryConfigurationError.getCause()
use the exception chaining mechanism of JDK1.4
|
Submit a bug or feature Copyright © 1993, 2017, Oracle and/or its affiliates. All rights reserved.
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.