| Package | Description | 
|---|---|
| java.awt.print | Provides classes and interfaces for a general printing API. | 
| java.beans | Contains classes related to developing
beans -- components
based on the JavaBeans™ architecture. | 
| java.beans.beancontext | Provides classes and interfaces relating to bean context. | 
| java.lang | Provides classes that are fundamental to the design of the Java
 programming language. | 
| java.lang.invoke | The  java.lang.invokepackage contains dynamic language support provided directly by
 the Java core class libraries and virtual machine. | 
| java.lang.management | Provides the management interfaces for monitoring and management of the
Java virtual machine and other components in the Java runtime. | 
| java.lang.ref | Provides reference-object classes, which support a limited degree of
interaction with the garbage collector. | 
| java.lang.reflect | Provides classes and interfaces for obtaining reflective
 information about classes and objects. | 
| 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.nio.charset | Defines charsets, decoders, and encoders, for translating between bytes and
Unicode characters. | 
| java.nio.file | Defines interfaces and classes for the Java virtual machine to access files,
 file attributes, and file systems. | 
| java.security | Provides the classes and interfaces for the security framework. | 
| 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.logging | 
Provides the classes and interfaces of 
the JavaTM 2
 platform's core logging facilities. | 
| java.util.regex | Classes for matching character sequences against patterns specified by regular
expressions. | 
| 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.openmbean | Provides the open data types and Open MBean descriptor classes. | 
| javax.management.relation | Provides the definition of the Relation Service. | 
| javax.management.timer | Provides the definition of the Timer MBean. | 
| javax.net.ssl | Provides classes for the secure socket package. | 
| javax.rmi.ssl | Provides implementations of  RMIClientSocketFactoryandRMIServerSocketFactoryover 
the Secure Sockets Layer (SSL) or Transport Layer Security (TLS) protocols. | 
| javax.swing | Provides a set of "lightweight"
(all-Java language) components that,
to the maximum degree possible, work the same on all platforms. | 
| javax.xml.parsers | 
                Provides classes allowing the processing of XML documents. | 
| javax.xml.stream | |
| javax.xml.stream.util | |
| javax.xml.transform | This package defines the generic APIs for processing transformation
instructions, and performing a transformation from source to result. | 
| javax.xml.transform.sax | This package implements SAX2-specific transformation APIs. | 
| javax.xml.ws.spi | This package defines SPIs for JAX-WS. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| void | PageFormat. setOrientation(int orientation)Sets the page orientation. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| void | PropertyEditorSupport. setAsText(String text)Sets the property value by parsing a given String. | |
| void | PropertyEditor. setAsText(String text)Set the property value by parsing a given String. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| URL | BeanContext. getResource(String name,
           BeanContextChild bcc)Analagous to  java.lang.ClassLoader.getResource(), this
 method allows aBeanContextimplementation to interpose
 behavior between the childComponentand underlyingClassLoader. | |
| InputStream | BeanContext. getResourceAsStream(String name,
                   BeanContextChild bcc)Analagous to  java.lang.ClassLoader.getResourceAsStream(),
 this method allows aBeanContextimplementation
 to interpose behavior between the childComponentand underlyingClassLoader. | 
| Modifier and Type | Class | Description | 
|---|---|---|
| class  | IllegalThreadStateExceptionThrown to indicate that a thread is not in an appropriate state
 for the requested operation. | |
| class  | NumberFormatExceptionThrown to indicate that the application has attempted to convert
 a string to one of the numeric types, but that the string does not
 have the appropriate format. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| protected Package | ClassLoader. definePackage(String name,
             String specTitle,
             String specVersion,
             String specVendor,
             String implTitle,
             String implVersion,
             String implVendor,
             URL sealBase)Defines a package by name in this ClassLoader. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| static MethodHandle | MethodHandles. arrayElementGetter(Class<?> arrayClass)Produces a method handle giving read access to elements of an array. | |
| static MethodHandle | MethodHandles. arrayElementSetter(Class<?> arrayClass)Produces a method handle giving write access to elements of an array. | |
| static MethodType | MethodType. fromMethodDescriptorString(String descriptor,
                          ClassLoader loader)Finds or creates an instance of a method type, given the spelling of its bytecode descriptor. | 
| Constructor | Description | 
|---|---|
| ManagementPermission(String name,
                    String actions)Constructs a new ManagementPermission object. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| Reference<? extends T> | ReferenceQueue. remove(long timeout)Removes the next reference object in this queue, blocking until either
 one becomes available or the given timeout period expires. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| Object | Field. get(Object obj)Returns the value of the field represented by this  Field, on
 the specified object. | |
| static Object | Array. get(Object array,
   int index)Returns the value of the indexed component in the specified
 array object. | |
| boolean | Field. getBoolean(Object obj)Gets the value of a static or instance  booleanfield. | |
| static boolean | Array. getBoolean(Object array,
          int index)Returns the value of the indexed component in the specified
 array object, as a  boolean. | |
| byte | Field. getByte(Object obj)Gets the value of a static or instance  bytefield. | |
| static byte | Array. getByte(Object array,
       int index)Returns the value of the indexed component in the specified
 array object, as a  byte. | |
| char | Field. getChar(Object obj)Gets the value of a static or instance field of type
  charor of another primitive type convertible to
 typecharvia a widening conversion. | |
| static char | Array. getChar(Object array,
       int index)Returns the value of the indexed component in the specified
 array object, as a  char. | |
| double | Field. getDouble(Object obj)Gets the value of a static or instance field of type
  doubleor of another primitive type convertible to
 typedoublevia a widening conversion. | |
| static double | Array. getDouble(Object array,
         int index)Returns the value of the indexed component in the specified
 array object, as a  double. | |
| float | Field. getFloat(Object obj)Gets the value of a static or instance field of type
  floator of another primitive type convertible to
 typefloatvia a widening conversion. | |
| static float | Array. getFloat(Object array,
        int index)Returns the value of the indexed component in the specified
 array object, as a  float. | |
| int | Field. getInt(Object obj)Gets the value of a static or instance field of type
  intor of another primitive type convertible to
 typeintvia a widening conversion. | |
| static int | Array. getInt(Object array,
      int index)Returns the value of the indexed component in the specified
 array object, as an  int. | |
| static InvocationHandler | Proxy. getInvocationHandler(Object proxy)Returns the invocation handler for the specified proxy instance. | |
| static int | Array. getLength(Object array)Returns the length of the specified array object, as an  int. | |
| long | Field. getLong(Object obj)Gets the value of a static or instance field of type
  longor of another primitive type convertible to
 typelongvia a widening conversion. | |
| static long | Array. getLong(Object array,
       int index)Returns the value of the indexed component in the specified
 array object, as a  long. | |
| static Class<?> | Proxy. getProxyClass(ClassLoader loader,
             Class<?>... interfaces)Returns the  java.lang.Classobject for a proxy class
 given a class loader and an array of interfaces. | |
| short | Field. getShort(Object obj)Gets the value of a static or instance field of type
  shortor of another primitive type convertible to
 typeshortvia a widening conversion. | |
| static short | Array. getShort(Object array,
        int index)Returns the value of the indexed component in the specified
 array object, as a  short. | |
| Object | Method. invoke(Object obj,
      Object... args)Invokes the underlying method represented by this  Methodobject, on the specified object with the specified parameters. | |
| static Object | Array. newInstance(Class<?> componentType,
           int... dimensions)Creates a new array
 with the specified component type and dimensions. | |
| T | Constructor. newInstance(Object... initargs)Uses the constructor represented by this  Constructorobject to
 create and initialize a new instance of the constructor's
 declaring class, with the specified initialization parameters. | |
| static Object | Proxy. newProxyInstance(ClassLoader loader,
                Class<?>[] interfaces,
                InvocationHandler h)Returns an instance of a proxy class for the specified interfaces
 that dispatches method invocations to the specified invocation
 handler. | |
| static void | Array. set(Object array,
   int index,
   Object value)Sets the value of the indexed component of the specified array
 object to the specified new value. | |
| void | Field. set(Object obj,
   Object value)Sets the field represented by this  Fieldobject on the
 specified object argument to the specified new value. | |
| void | Field. setBoolean(Object obj,
          boolean z)Sets the value of a field as a  booleanon the specified object. | |
| static void | Array. setBoolean(Object array,
          int index,
          boolean z)Sets the value of the indexed component of the specified array
 object to the specified  booleanvalue. | |
| void | Field. setByte(Object obj,
       byte b)Sets the value of a field as a  byteon the specified object. | |
| static void | Array. setByte(Object array,
       int index,
       byte b)Sets the value of the indexed component of the specified array
 object to the specified  bytevalue. | |
| void | Field. setChar(Object obj,
       char c)Sets the value of a field as a  charon the specified object. | |
| static void | Array. setChar(Object array,
       int index,
       char c)Sets the value of the indexed component of the specified array
 object to the specified  charvalue. | |
| void | Field. setDouble(Object obj,
         double d)Sets the value of a field as a  doubleon the specified object. | |
| static void | Array. setDouble(Object array,
         int index,
         double d)Sets the value of the indexed component of the specified array
 object to the specified  doublevalue. | |
| void | Field. setFloat(Object obj,
        float f)Sets the value of a field as a  floaton the specified object. | |
| static void | Array. setFloat(Object array,
        int index,
        float f)Sets the value of the indexed component of the specified array
 object to the specified  floatvalue. | |
| void | Field. setInt(Object obj,
      int i)Sets the value of a field as an  inton the specified object. | |
| static void | Array. setInt(Object array,
      int index,
      int i)Sets the value of the indexed component of the specified array
 object to the specified  intvalue. | |
| static void | Array. setLong(Object array,
       int index,
       long l)Sets the value of the indexed component of the specified array
 object to the specified  longvalue. | |
| void | Field. setLong(Object obj,
       long l)Sets the value of a field as a  longon the specified object. | |
| static void | Array. setShort(Object array,
        int index,
        short s)Sets the value of the indexed component of the specified array
 object to the specified  shortvalue. | |
| void | Field. setShort(Object obj,
        short s)Sets the value of a field as a  shorton the specified object. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| protected Package | URLClassLoader. definePackage(String name,
             Manifest man,
             URL url)Defines a new package by name in this ClassLoader. | 
| Modifier and Type | Class | Description | 
|---|---|---|
| class  | IllegalChannelGroupExceptionUnchecked exception thrown when an attempt is made to open a channel
 in a group that was not created by the same provider. | |
| class  | IllegalSelectorExceptionUnchecked exception thrown when an attempt is made to register a channel
 with a selector that was not created by the provider that created the
 channel. | |
| class  | UnresolvedAddressExceptionUnchecked exception thrown when an attempt is made to invoke a network
 operation upon an unresolved socket address. | |
| class  | UnsupportedAddressTypeExceptionUnchecked exception thrown when an attempt is made to bind or connect
 to a socket address of a type that is not supported. | 
| Modifier and Type | Class | Description | 
|---|---|---|
| class  | IllegalCharsetNameExceptionUnchecked exception thrown when a string that is not a
 legal charset name is used as such. | |
| class  | UnsupportedCharsetExceptionUnchecked exception thrown when no support is available
 for a requested charset. | 
| Modifier and Type | Class | Description | 
|---|---|---|
| class  | InvalidPathExceptionUnchecked exception thrown when path string cannot be converted into a
  Pathbecause the path string contains invalid characters, or
 the path string is invalid for other file system specific reasons. | |
| class  | ProviderMismatchExceptionUnchecked exception thrown when an attempt is made to invoke a method on an
 object created by one file system provider with a parameter created by a
 different file system provider. | 
| Modifier and Type | Class | Description | 
|---|---|---|
| class  | InvalidParameterExceptionThis exception, designed for use by the JCA/JCE engine classes,
 is thrown when an invalid parameter is passed
 to a method. | 
| Modifier and Type | Class | Description | 
|---|---|---|
| class  | DuplicateFormatFlagsExceptionUnchecked exception thrown when duplicate flags are provided in the format
 specifier. | |
| class  | FormatFlagsConversionMismatchExceptionUnchecked exception thrown when a conversion and flag are incompatible. | |
| class  | IllegalFormatCodePointExceptionUnchecked exception thrown when a character with an invalid Unicode code
 point as defined by  Character.isValidCodePoint(int)is passed to theFormatter. | |
| class  | IllegalFormatConversionExceptionUnchecked exception thrown when the argument corresponding to the format
 specifier is of an incompatible type. | |
| class  | IllegalFormatExceptionUnchecked exception thrown when a format string contains an illegal syntax
 or a format specifier that is incompatible with the given arguments. | |
| class  | IllegalFormatFlagsExceptionUnchecked exception thrown when an illegal combination flags is given. | |
| class  | IllegalFormatPrecisionExceptionUnchecked exception thrown when the precision is a negative value other than
 -1, the conversion does not support a precision, or the value is
 otherwise unsupported. | |
| class  | IllegalFormatWidthExceptionUnchecked exception thrown when the format width is a negative value other
 than -1 or is otherwise unsupported. | |
| class  | MissingFormatArgumentExceptionUnchecked exception thrown when there is a format specifier which does not
 have a corresponding argument or if an argument index refers to an argument
 that does not exist. | |
| class  | MissingFormatWidthExceptionUnchecked exception thrown when the format width is required. | |
| class  | UnknownFormatConversionExceptionUnchecked exception thrown when an unknown conversion is given. | |
| class  | UnknownFormatFlagsExceptionUnchecked exception thrown when an unknown flag is given. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| static Level | Level. parse(String name)Parse a level name string into a Level. | 
| Constructor | Description | 
|---|---|
| LoggingPermission(String name,
                 String actions)Creates a new LoggingPermission object. | 
| Modifier and Type | Class | Description | 
|---|---|---|
| class  | PatternSyntaxExceptionUnchecked exception thrown to indicate a syntax error in a
 regular-expression pattern. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| void | MBeanServerDelegate. addNotificationListener(NotificationListener listener,
                       NotificationFilter filter,
                       Object handback) | |
| void | NotificationBroadcaster. addNotificationListener(NotificationListener listener,
                       NotificationFilter filter,
                       Object handback)Adds a listener to this MBean. | |
| void | AttributeChangeNotificationFilter. enableAttribute(String name)Enables all the attribute change notifications the attribute name of which equals
 the specified name to be sent to the listener. | |
| void | NotificationFilterSupport. enableType(String prefix)Enables all the notifications the type of which starts with the specified prefix
 to be sent to the listener. | 
| Constructor | Description | 
|---|---|
| MBeanInfo(String className,
         String description,
         MBeanAttributeInfo[] attributes,
         MBeanConstructorInfo[] constructors,
         MBeanOperationInfo[] operations,
         MBeanNotificationInfo[] notifications)Constructs an  MBeanInfo. | |
| MBeanInfo(String className,
         String description,
         MBeanAttributeInfo[] attributes,
         MBeanConstructorInfo[] constructors,
         MBeanOperationInfo[] operations,
         MBeanNotificationInfo[] notifications,
         Descriptor descriptor)Constructs an  MBeanInfo. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| void | RequiredModelMBean. addAttributeChangeNotificationListener(NotificationListener inlistener,
                                      String inAttributeName,
                                      Object inhandback) | |
| void | ModelMBeanNotificationBroadcaster. addAttributeChangeNotificationListener(NotificationListener listener,
                                      String attributeName,
                                      Object handback)Registers an object which implements the NotificationListener interface as a listener. | |
| void | RequiredModelMBean. addNotificationListener(NotificationListener listener,
                       NotificationFilter filter,
                       Object handback)Registers an object which implements the NotificationListener
 interface as a listener. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| void | Monitor. addObservedObject(ObjectName object)Adds the specified object in the set of observed MBeans, if this object
 is not already present. | |
| void | MonitorMBean. addObservedObject(ObjectName object)Adds the specified object in the set of observed MBeans. | |
| void | Monitor. setGranularityPeriod(long period)Sets the granularity period (in milliseconds). | |
| void | MonitorMBean. setGranularityPeriod(long period)Sets the granularity period (in milliseconds). | |
| void | CounterMonitor. setInitThreshold(Number value)Sets the initial threshold value common to all observed objects. | |
| void | CounterMonitorMBean. setInitThreshold(Number value)Sets the initial threshold value common to all observed MBeans. | |
| void | CounterMonitor. setModulus(Number value)Sets the modulus value common to all observed MBeans. | |
| void | CounterMonitorMBean. setModulus(Number value)Sets the modulus value. | |
| void | Monitor. setObservedAttribute(String attribute)Sets the attribute to observe. | |
| void | Monitor. setObservedObject(ObjectName object)Deprecated. 
 As of JMX 1.2, replaced by  Monitor.addObservedObject(javax.management.ObjectName) | |
| void | CounterMonitor. setOffset(Number value)Sets the offset value common to all observed MBeans. | |
| void | CounterMonitorMBean. setOffset(Number value)Sets the offset value. | |
| void | StringMonitor. setStringToCompare(String value)Sets the string to compare with the observed attribute common
 to all observed MBeans. | |
| void | StringMonitorMBean. setStringToCompare(String value)Sets the string to compare with the observed attribute. | |
| void | CounterMonitor. setThreshold(Number value)Deprecated. 
 As of JMX 1.2, replaced by  CounterMonitor.setInitThreshold(java.lang.Number) | |
| void | CounterMonitorMBean. setThreshold(Number value)Deprecated. 
 As of JMX 1.2, replaced by  CounterMonitorMBean.setInitThreshold(java.lang.Number) | |
| void | GaugeMonitor. setThresholds(Number highValue,
             Number lowValue)Sets the high and the low threshold values common to all
 observed MBeans. | |
| void | GaugeMonitorMBean. setThresholds(Number highValue,
             Number lowValue)Sets the high and the low threshold values. | 
| Modifier and Type | Class | Description | 
|---|---|---|
| class  | InvalidKeyExceptionThis runtime exception is thrown to indicate that a method parameter which was expected to be
 an item name of a composite data or a row index of a tabular data is not valid. | |
| class  | InvalidOpenTypeExceptionThis runtime exception is thrown to indicate that the open type of an open data value
 is not the one expected. | |
| class  | KeyAlreadyExistsExceptionThis runtime exception is thrown to indicate that the index of a row to be added to a tabular data instance
 is already used to refer to another row in this tabular data instance. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| void | RoleList. add(int index,
   Role role)Inserts the role specified as an element at the position specified. | |
| void | RoleUnresolvedList. add(int index,
   RoleUnresolved role)Inserts the unresolved role specified as an element at the position
 specified. | |
| void | RoleList. add(Role role)Adds the Role specified as the last element of the list. | |
| void | RoleUnresolvedList. add(RoleUnresolved role)Adds the RoleUnresolved specified as the last element of the list. | |
| boolean | RoleList. addAll(int index,
      RoleList roleList)Inserts all of the elements in the RoleList specified into this
 list, starting at the specified position, in the order in which they are
 returned by the Iterator of the RoleList specified. | |
| boolean | RoleUnresolvedList. addAll(int index,
      RoleUnresolvedList roleList)Inserts all of the elements in the RoleUnresolvedList specified into
 this list, starting at the specified position, in the order in which
 they are returned by the Iterator of the RoleUnresolvedList specified. | |
| void | RelationServiceMBean. addRelation(ObjectName relationObjectName)Adds an MBean created by the user (and registered by him in the MBean
 Server) as a relation in the Relation Service. | |
| void | RelationService. addRelation(ObjectName relationObjectName)Adds an MBean created by the user (and registered by him in the MBean
 Server) as a relation in the Relation Service. | |
| void | RelationServiceMBean. addRelationType(RelationType relationTypeObj)Adds given object as a relation type. | |
| void | RelationService. addRelationType(RelationType relationTypeObj)Adds given object as a relation type. | |
| protected void | RelationTypeSupport. addRoleInfo(RoleInfo roleInfo)Add a role info. | |
| Integer | RelationServiceMBean. checkRoleReading(String roleName,
                String relationTypeName)Checks if given Role can be read in a relation of the given type. | |
| Integer | RelationService. checkRoleReading(String roleName,
                String relationTypeName)Checks if given Role can be read in a relation of the given type. | |
| Integer | RelationServiceMBean. checkRoleWriting(Role role,
                String relationTypeName,
                Boolean initFlag)Checks if given Role can be set in a relation of given type. | |
| Integer | RelationService. checkRoleWriting(Role role,
                String relationTypeName,
                Boolean initFlag)Checks if given Role can be set in a relation of given type. | |
| void | RelationServiceMBean. createRelation(String relationId,
              String relationTypeName,
              RoleList roleList)Creates a simple relation (represented by a RelationSupport object) of
 given relation type, and adds it in the Relation Service. | |
| void | RelationService. createRelation(String relationId,
              String relationTypeName,
              RoleList roleList)Creates a simple relation (represented by a RelationSupport object) of
 given relation type, and adds it in the Relation Service. | |
| void | RelationServiceMBean. createRelationType(String relationTypeName,
                  RoleInfo[] roleInfoArray)Creates a relation type (RelationTypeSupport object) with given
 role infos (provided by the RoleInfo objects), and adds it in the
 Relation Service. | |
| void | RelationService. createRelationType(String relationTypeName,
                  RoleInfo[] roleInfoArray)Creates a relation type (a RelationTypeSupport object) with given
 role infos (provided by the RoleInfo objects), and adds it in the
 Relation Service. | |
| void | MBeanServerNotificationFilter. disableObjectName(ObjectName objectName)Disables MBeanServerNotifications concerning given ObjectName. | |
| void | MBeanServerNotificationFilter. enableObjectName(ObjectName objectName)Enables MBeanServerNotifications concerning given ObjectName. | |
| Map<ObjectName,List<String>> | RelationServiceMBean. findAssociatedMBeans(ObjectName mbeanName,
                    String relationTypeName,
                    String roleName)Retrieves the MBeans associated to given one in a relation. | |
| Map<ObjectName,List<String>> | RelationService. findAssociatedMBeans(ObjectName mbeanName,
                    String relationTypeName,
                    String roleName)Retrieves the MBeans associated to given one in a relation. | |
| Map<String,List<String>> | RelationServiceMBean. findReferencingRelations(ObjectName mbeanName,
                        String relationTypeName,
                        String roleName)Retrieves the relations where a given MBean is referenced. | |
| Map<String,List<String>> | RelationService. findReferencingRelations(ObjectName mbeanName,
                        String relationTypeName,
                        String roleName)Retrieves the relations where a given MBean is referenced. | |
| List<String> | RelationServiceMBean. findRelationsOfType(String relationTypeName)Returns the relation ids for relations of the given type. | |
| List<String> | RelationService. findRelationsOfType(String relationTypeName)Returns the relation ids for relations of the given type. | |
| RoleResult | RelationServiceMBean. getAllRoles(String relationId)Returns all roles present in the relation. | |
| RoleResult | RelationService. getAllRoles(String relationId)Returns all roles present in the relation. | |
| Map<ObjectName,List<String>> | RelationServiceMBean. getReferencedMBeans(String relationId)Retrieves MBeans referenced in the various roles of the relation. | |
| Map<ObjectName,List<String>> | RelationService. getReferencedMBeans(String relationId)Retrieves MBeans referenced in the various roles of the relation. | |
| String | RelationServiceMBean. getRelationTypeName(String relationId)Returns name of associated relation type for given relation. | |
| String | RelationService. getRelationTypeName(String relationId)Returns name of associated relation type for given relation. | |
| List<ObjectName> | RelationSupport. getRole(String roleName)Retrieves role value for given role name. | |
| List<ObjectName> | Relation. getRole(String roleName)Retrieves role value for given role name. | |
| List<ObjectName> | RelationServiceMBean. getRole(String relationId,
       String roleName)Retrieves role value for given role name in given relation. | |
| List<ObjectName> | RelationService. getRole(String relationId,
       String roleName)Retrieves role value for given role name in given relation. | |
| Integer | RelationSupport. getRoleCardinality(String roleName)Returns the number of MBeans currently referenced in the given role. | |
| Integer | Relation. getRoleCardinality(String roleName)Returns the number of MBeans currently referenced in the given role. | |
| Integer | RelationServiceMBean. getRoleCardinality(String relationId,
                  String roleName)Retrieves the number of MBeans currently referenced in the
 given role. | |
| Integer | RelationService. getRoleCardinality(String relationId,
                  String roleName)Retrieves the number of MBeans currently referenced in the given role. | |
| RoleInfo | RelationTypeSupport. getRoleInfo(String roleInfoName)Returns the role info (RoleInfo object) for the given role info name
 (null if not found). | |
| RoleInfo | RelationType. getRoleInfo(String roleInfoName)Returns the role info (RoleInfo object) for the given role info name
 (null if not found). | |
| RoleInfo | RelationServiceMBean. getRoleInfo(String relationTypeName,
           String roleInfoName)Retrieves role info for given role of a given relation type. | |
| RoleInfo | RelationService. getRoleInfo(String relationTypeName,
           String roleInfoName)Retrieves role info for given role name of a given relation type. | |
| List<RoleInfo> | RelationServiceMBean. getRoleInfos(String relationTypeName)Retrieves list of role infos (RoleInfo objects) of a given relation
 type. | |
| List<RoleInfo> | RelationService. getRoleInfos(String relationTypeName)Retrieves list of role infos (RoleInfo objects) of a given relation
 type. | |
| RoleResult | RelationSupport. getRoles(String[] roleNameArray)Retrieves values of roles with given names. | |
| RoleResult | Relation. getRoles(String[] roleNameArray)Retrieves values of roles with given names. | |
| RoleResult | RelationServiceMBean. getRoles(String relationId,
        String[] roleNameArray)Retrieves values of roles with given names in given relation. | |
| RoleResult | RelationService. getRoles(String relationId,
        String[] roleNameArray)Retrieves values of roles with given names in given relation. | |
| void | RelationSupport. handleMBeanUnregistration(ObjectName objectName,
                         String roleName)Callback used by the Relation Service when a MBean referenced in a role
 is unregistered. | |
| void | Relation. handleMBeanUnregistration(ObjectName objectName,
                         String roleName)Callback used by the Relation Service when a MBean referenced in a role
 is unregistered. | |
| Boolean | RelationServiceMBean. hasRelation(String relationId)Checks if there is a relation identified in Relation Service with given
 relation id. | |
| Boolean | RelationService. hasRelation(String relationId)Checks if there is a relation identified in Relation Service with given
 relation id. | |
| boolean | MBeanServerNotificationFilter. isNotificationEnabled(Notification notif)Invoked before sending the specified notification to the listener. | |
| String | RelationServiceMBean. isRelation(ObjectName objectName)Returns the relation id associated to the given ObjectName if the
 MBean has been added as a relation in the Relation Service. | |
| String | RelationService. isRelation(ObjectName objectName)Returns the relation id associated to the given ObjectName if the
 MBean has been added as a relation in the Relation Service. | |
| ObjectName | RelationServiceMBean. isRelationMBean(String relationId)If the relation is represented by an MBean (created by the user and
 added as a relation in the Relation Service), returns the ObjectName of
 the MBean. | |
| ObjectName | RelationService. isRelationMBean(String relationId)If the relation is represented by an MBean (created by the user and
 added as a relation in the Relation Service), returns the ObjectName of
 the MBean. | |
| void | RelationServiceMBean. removeRelation(String relationId)Removes given relation from the Relation Service. | |
| void | RelationService. removeRelation(String relationId)Removes given relation from the Relation Service. | |
| void | RelationServiceMBean. removeRelationType(String relationTypeName)Removes given relation type from Relation Service. | |
| void | RelationService. removeRelationType(String relationTypeName)Removes given relation type from Relation Service. | |
| static String | Role. roleValueToString(List<ObjectName> roleValue)Returns a string for the given role value. | |
| void | RelationServiceMBean. sendRelationCreationNotification(String relationId)Sends a notification (RelationNotification) for a relation creation. | |
| void | RelationService. sendRelationCreationNotification(String relationId)Sends a notification (RelationNotification) for a relation creation. | |
| void | RelationServiceMBean. sendRelationRemovalNotification(String relationId,
                               List<ObjectName> unregMBeanList)Sends a notification (RelationNotification) for a relation removal. | |
| void | RelationService. sendRelationRemovalNotification(String relationId,
                               List<ObjectName> unregMBeanList)Sends a notification (RelationNotification) for a relation removal. | |
| void | RelationServiceMBean. sendRoleUpdateNotification(String relationId,
                          Role newRole,
                          List<ObjectName> oldRoleValue)Sends a notification (RelationNotification) for a role update in the
 given relation. | |
| void | RelationService. sendRoleUpdateNotification(String relationId,
                          Role newRole,
                          List<ObjectName> oldValue)Sends a notification (RelationNotification) for a role update in the
 given relation. | |
| void | RoleList. set(int index,
   Role role)Sets the element at the position specified to be the role
 specified. | |
| void | RoleUnresolvedList. set(int index,
   RoleUnresolved role)Sets the element at the position specified to be the unresolved role
 specified. | |
| void | RoleUnresolved. setProblemType(int pbType)Sets problem type. | |
| void | RelationSupport. setRelationServiceManagementFlag(Boolean flag) | |
| void | RelationSupportMBean. setRelationServiceManagementFlag(Boolean flag)Specifies whether this relation is handled by the Relation
 Service. | |
| void | RelationSupport. setRole(Role role)Sets the given role. | |
| void | Relation. setRole(Role role)Sets the given role. | |
| void | RelationServiceMBean. setRole(String relationId,
       Role role)Sets the given role in given relation. | |
| void | RelationService. setRole(String relationId,
       Role role)Sets the given role in given relation. | |
| void | Role. setRoleName(String roleName)Sets role name. | |
| void | RoleUnresolved. setRoleName(String name)Sets role name. | |
| RoleResult | RelationSupport. setRoles(RoleList list)Sets the given roles. | |
| RoleResult | Relation. setRoles(RoleList roleList)Sets the given roles. | |
| RoleResult | RelationServiceMBean. setRoles(String relationId,
        RoleList roleList)Sets the given roles in given relation. | |
| RoleResult | RelationService. setRoles(String relationId,
        RoleList roleList)Sets the given roles in given relation. | |
| void | Role. setRoleValue(List<ObjectName> roleValue)Sets role value. | |
| void | RelationServiceMBean. updateRoleMap(String relationId,
             Role newRole,
             List<ObjectName> oldRoleValue)Handles update of the Relation Service role map for the update of given
 role in given relation. | |
| void | RelationService. updateRoleMap(String relationId,
             Role newRole,
             List<ObjectName> oldValue)Handles update of the Relation Service role map for the update of given
 role in given relation. | 
| Constructor | Description | 
|---|---|
| RelationNotification(String notifType,
                    Object sourceObj,
                    long sequence,
                    long timeStamp,
                    String message,
                    String id,
                    String typeName,
                    ObjectName objectName,
                    List<ObjectName> unregMBeanList)Creates a notification for either a relation creation (RelationSupport
 object created internally in the Relation Service, or an MBean added as a
 relation) or for a relation removal from the Relation Service. | |
| RelationNotification(String notifType,
                    Object sourceObj,
                    long sequence,
                    long timeStamp,
                    String message,
                    String id,
                    String typeName,
                    ObjectName objectName,
                    String name,
                    List<ObjectName> newValue,
                    List<ObjectName> oldValue)Creates a notification for a role update in a relation. | |
| RelationSupport(String relationId,
               ObjectName relationServiceName,
               MBeanServer relationServiceMBeanServer,
               String relationTypeName,
               RoleList list)Creates a  RelationSupportobject. | |
| RelationSupport(String relationId,
               ObjectName relationServiceName,
               String relationTypeName,
               RoleList list)Creates a  RelationSupportobject. | |
| RelationTypeSupport(String relationTypeName,
                   RoleInfo[] roleInfoArray)Constructor where all role definitions are dynamically created and
 passed as parameter. | |
| Role(String roleName,
    List<ObjectName> roleValue)Make a new Role object. | |
| RoleInfo(RoleInfo roleInfo)Copy constructor. | |
| RoleInfo(String roleName,
        String mbeanClassName)Constructor. | |
| RoleInfo(String roleName,
        String mbeanClassName,
        boolean read,
        boolean write)Constructor. | |
| RoleInfo(String roleName,
        String mbeanClassName,
        boolean read,
        boolean write,
        int min,
        int max,
        String descr)Constructor. | |
| RoleList(List<Role> list)Constructs a  RoleListcontaining the elements of theListspecified, in the order in which they are returned by
 theList's iterator. | |
| RoleUnresolved(String name,
              List<ObjectName> value,
              int pbType)Constructor. | |
| RoleUnresolvedList(List<RoleUnresolved> list)Constructs a  RoleUnresolvedListcontaining the elements of theListspecified, in the order in which they are returned by
 theList's iterator. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| Integer | Timer. addNotification(String type,
               String message,
               Object userData,
               Date date)Creates a new timer notification with the specified  type,messageanduserDataand inserts it into the list of notifications with a given date
 and a null period and number of occurrences. | |
| Integer | TimerMBean. addNotification(String type,
               String message,
               Object userData,
               Date date)Creates a new timer notification with the specified  type,messageanduserDataand inserts it into the list of notifications with a given date
 and a null period and number of occurrences. | |
| Integer | Timer. addNotification(String type,
               String message,
               Object userData,
               Date date,
               long period)Creates a new timer notification with the specified  type,messageanduserDataand inserts it into the list of notifications with a given date
 and period and a null number of occurrences. | |
| Integer | TimerMBean. addNotification(String type,
               String message,
               Object userData,
               Date date,
               long period)Creates a new timer notification with the specified  type,messageanduserDataand inserts it into the list of notifications with a given date
 and period and a null number of occurrences. | |
| Integer | Timer. addNotification(String type,
               String message,
               Object userData,
               Date date,
               long period,
               long nbOccurences)Creates a new timer notification with the specified  type,messageanduserDataand inserts it into the list of notifications with a given date,
 period and number of occurrences. | |
| Integer | TimerMBean. addNotification(String type,
               String message,
               Object userData,
               Date date,
               long period,
               long nbOccurences)Creates a new timer notification with the specified  type,messageanduserDataand inserts it into the list of notifications with a given date,
 period and number of occurrences. | |
| Integer | Timer. addNotification(String type,
               String message,
               Object userData,
               Date date,
               long period,
               long nbOccurences,
               boolean fixedRate)Creates a new timer notification with the specified  type,messageanduserDataand inserts it into the list of notifications with a given date,
 period and number of occurrences. | |
| Integer | TimerMBean. addNotification(String type,
               String message,
               Object userData,
               Date date,
               long period,
               long nbOccurences,
               boolean fixedRate)Creates a new timer notification with the specified  type,messageanduserDataand inserts it into the list of notifications with a given date,
 period and number of occurrences. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| void | SSLSessionContext. setSessionCacheSize(int size)Sets the size of the cache used for storing
  SSLSessionobjects grouped under thisSSLSessionContext. | |
| void | SSLSessionContext. setSessionTimeout(int seconds)Sets the timeout limit for  SSLSessionobjects grouped
 under thisSSLSessionContext. | 
| Constructor | Description | 
|---|---|
| SslRMIServerSocketFactory(SSLContext context,
                         String[] enabledCipherSuites,
                         String[] enabledProtocols,
                         boolean needClientAuth)Creates a new  SslRMIServerSocketFactorywith the
 specifiedSSLContextand SSL socket configuration. | |
| SslRMIServerSocketFactory(String[] enabledCipherSuites,
                         String[] enabledProtocols,
                         boolean needClientAuth)Creates a new  SslRMIServerSocketFactorywith
 the specified SSL socket configuration. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| Popup | PopupFactory. getPopup(Component owner,
        Component contents,
        int x,
        int y)Creates a  Popupfor the Componentownercontaining the Componentcontents. | |
| void | JLabel. setDisplayedMnemonicIndex(int index)Provides a hint to the look and feel as to which character in the
 text should be decorated to represent the mnemonic. | |
| void | AbstractButton. setDisplayedMnemonicIndex(int index)Provides a hint to the look and feel as to which character in the
 text should be decorated to represent the mnemonic. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| abstract Object | DocumentBuilderFactory. getAttribute(String name)Allows the user to retrieve specific attributes on the underlying
 implementation. | |
| abstract void | DocumentBuilderFactory. setAttribute(String name,
            Object value)Allows the user to set specific attributes on the underlying
 implementation. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| abstract Object | XMLOutputFactory. getProperty(String name)Get a feature/property on the underlying implementation | |
| abstract Object | XMLInputFactory. getProperty(String name)Get the value of a feature/property from the underlying implementation | |
| Object | XMLStreamWriter. getProperty(String name)Get the value of a feature/property from the underlying implementation | |
| Object | XMLEventReader. getProperty(String name)Get the value of a feature/property from the underlying implementation | |
| Object | XMLStreamReader. getProperty(String name)Get the value of a feature/property from the underlying implementation | |
| abstract void | XMLOutputFactory. setProperty(String name,
           Object value)Allows the user to set specific features/properties on the underlying implementation. | |
| abstract void | XMLInputFactory. setProperty(String name,
           Object value)Allows the user to set specific feature/property on the underlying
 implementation. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| Object | EventReaderDelegate. getProperty(String name) | 
| Modifier and Type | Method | Description | 
|---|---|---|
| abstract String | Transformer. getOutputProperty(String name)Get an output property that is in effect for the transformer. | |
| abstract void | Transformer. setErrorListener(ErrorListener listener)Set the error event listener in effect for the transformation. | |
| abstract void | Transformer. setOutputProperty(String name,
                 String value)Set an output property that will be in effect for the
 transformation. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| void | TransformerHandler. setResult(Result result)Set  the  Resultassociated with thisTransformerHandlerto be used for the transformation. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| abstract void | Invoker. inject(WebServiceContext webServiceContext)JAX-WS runtimes calls this method to ask container to inject
 WebServiceContext on the endpoint instance. | |
| abstract Object | Invoker. invoke(Method m,
      Object... args)JAX-WS runtime calls this method to do the actual web service
 invocation on endpoint instance. | 
 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, 2025, Oracle and/or its affiliates.  All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.