Spec-Zone .ru
спецификации, руководства, описания, API
|
|
Java™ Platform Standard Ed. 7 DRAFT ea-b118 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Package | Description |
---|---|
java.lang | Provides classes that are fundamental to the design of the Java 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.concurrent | Utility classes commonly useful in concurrent programming. |
javax.management | Provides the core classes for the Java Management Extensions. |
javax.management.modelmbean | Provides the definition of the ModelMBean 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.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. |
Uses of SuppressWarnings in java.lang |
---|
Modifier and Type | Field and Description |
---|---|
static Class<Character> |
Character.TYPE
The Class instance representing the primitive type
char . |
Uses of SuppressWarnings in java.util |
---|
Modifier and Type | Field and Description |
---|---|
static List |
Collections.EMPTY_LIST
The empty list (immutable). |
static Map |
Collections.EMPTY_MAP
The empty map (immutable). |
static Set |
Collections.EMPTY_SET
The empty set (immutable). |
Modifier and Type | Method and Description | |
---|---|---|
static
|
Collections.emptyEnumeration()
Returns an enumeration that has no elements. |
|
static
|
Collections.emptyIterator()
Returns an iterator that has no elements. |
|
static
|
Collections.emptyList()
Returns the empty list (immutable). |
|
static
|
Collections.emptyListIterator()
Returns a list iterator that has no elements. |
|
static
|
Collections.emptyMap()
Returns the empty map (immutable). |
|
static
|
Collections.emptySet()
Returns the empty set (immutable). |
|
|
LinkedList.toArray(T[] a)
Returns an array containing all of the elements in this list in proper sequence (from first to last element); the runtime type of the returned array is that of the specified array. |
|
|
ArrayList.toArray(T[] a)
Returns an array containing all of the elements in this list in proper sequence (from first to last element); the runtime type of the returned array is that of the specified array. |
|
|
Vector.toArray(T[] a)
Returns an array containing all of the elements in this Vector in the correct order; the runtime type of the returned array is that of the specified array. |
Constructor and Description |
---|
PriorityQueue(Collection<? extends E> c)
Creates a PriorityQueue containing the elements in the
specified collection. |
PriorityQueue(PriorityQueue<? extends E> c)
Creates a PriorityQueue containing the elements in the
specified priority queue. |
PriorityQueue(SortedSet<? extends E> c)
Creates a PriorityQueue containing the elements in the
specified sorted set. |
Uses of SuppressWarnings in java.util.concurrent |
---|
Modifier and Type | Method and Description | |
---|---|---|
Object[] |
LinkedBlockingDeque.toArray()
Returns an array containing all of the elements in this deque, in proper sequence (from first to last element). |
|
|
LinkedBlockingQueue.toArray(T[] a)
Returns an array containing all of the elements in this queue, in proper sequence; the runtime type of the returned array is that of the specified array. |
|
|
LinkedBlockingDeque.toArray(T[] a)
Returns an array containing all of the elements in this deque, in proper sequence; the runtime type of the returned array is that of the specified array. |
|
|
CopyOnWriteArrayList.toArray(T[] a)
Returns an array containing all of the elements in this list in proper sequence (from first to last element); the runtime type of the returned array is that of the specified array. |
|
|
ConcurrentLinkedQueue.toArray(T[] a)
Returns an array containing all of the elements in this queue, in proper sequence; the runtime type of the returned array is that of the specified array. |
Uses of SuppressWarnings in javax.management |
---|
Modifier and Type | Class and Description |
---|---|
class |
MBeanAttributeInfo
Describes an MBean attribute exposed for management. |
class |
Notification
The Notification class represents a notification emitted by an MBean. |
class |
ObjectName
Represents the object name of an MBean, or a pattern that can match the names of several MBeans. |
Modifier and Type | Method and Description |
---|---|
List<Attribute> |
AttributeList.asList()
Return a view of this list as a List<Attribute> . |
Uses of SuppressWarnings in javax.management.modelmbean |
---|
Modifier and Type | Class and Description |
---|---|
class |
DescriptorSupport
This class represents the metadata set for a ModelMBean element. |
class |
InvalidTargetObjectTypeException
Exception thrown when an invalid target object type is specified. |
class |
ModelMBeanAttributeInfo
The ModelMBeanAttributeInfo object describes an attribute of the ModelMBean. |
class |
ModelMBeanConstructorInfo
The ModelMBeanConstructorInfo object describes a constructor of the ModelMBean. |
class |
ModelMBeanInfoSupport
This class represents the meta data for ModelMBeans. |
class |
ModelMBeanNotificationInfo
The ModelMBeanNotificationInfo object describes a notification emitted by a ModelMBean. |
class |
ModelMBeanOperationInfo
The ModelMBeanOperationInfo object describes a management operation of the ModelMBean. |
class |
XMLParseException
This exception is thrown when an XML formatted string is being parsed into ModelMBean objects or when XML formatted strings are being created from ModelMBean objects. |
Uses of SuppressWarnings in javax.management.openmbean |
---|
Modifier and Type | Method and Description | |
---|---|---|
Set<Map.Entry<Object,Object>> |
TabularDataSupport.entrySet()
Returns a collection view of the index to row mappings contained in this TabularDataSupport instance. |
|
static
|
ArrayType.getPrimitiveArrayType(Class<T> arrayClass)
Create an ArrayType instance in a type-safe manner. |
|
Collection<Object> |
TabularDataSupport.values()
Returns a collection view of the rows contained in this TabularDataSupport instance. |
Uses of SuppressWarnings in javax.management.relation |
---|
Modifier and Type | Class and Description |
---|---|
class |
MBeanServerNotificationFilter
Filter for MBeanServerNotification . |
class |
RelationNotification
A notification of a change in the Relation Service. |
class |
RelationTypeSupport
A RelationTypeSupport object implements the RelationType interface. |
class |
Role
Represents a role: includes a role name and referenced MBeans (via their ObjectNames). |
class |
RoleInfo
A RoleInfo object summarises a role in a relation type. |
class |
RoleResult
Represents the result of a multiple access to several roles of a relation (either for reading or writing). |
class |
RoleUnresolved
Represents an unresolved role: a role not retrieved from a relation due to a problem. |
Modifier and Type | Method and Description |
---|---|
List<RoleUnresolved> |
RoleUnresolvedList.asList()
Return a view of this list as a List<RoleUnresolved> . |
List<Role> |
RoleList.asList()
Return a view of this list as a List<Role> . |
Uses of SuppressWarnings in javax.management.remote.rmi |
---|
Modifier and Type | Interface and Description |
---|---|
interface |
RMIConnection
RMI object used to forward an MBeanServer request from a client to its MBeanServer implementation on the server side. |
Modifier and Type | Method and Description |
---|---|
void |
RMIConnectionImpl.addNotificationListener(ObjectName name,
ObjectName listener,
MarshalledObject filter,
MarshalledObject handback,
Subject delegationSubject)
|
Integer[] |
RMIConnectionImpl.addNotificationListeners(ObjectName[] names,
MarshalledObject[] filters,
Subject[] delegationSubjects)
|
ObjectInstance |
RMIConnectionImpl.createMBean(String className,
ObjectName name,
MarshalledObject params,
String[] signature,
Subject delegationSubject)
|
ObjectInstance |
RMIConnectionImpl.createMBean(String className,
ObjectName name,
ObjectName loaderName,
MarshalledObject params,
String[] signature,
Subject delegationSubject)
|
Object |
RMIConnectionImpl.invoke(ObjectName name,
String operationName,
MarshalledObject params,
String[] signature,
Subject delegationSubject)
|
Set<ObjectInstance> |
RMIConnectionImpl.queryMBeans(ObjectName name,
MarshalledObject query,
Subject delegationSubject)
|
Set<ObjectName> |
RMIConnectionImpl.queryNames(ObjectName name,
MarshalledObject query,
Subject delegationSubject)
|
void |
RMIConnectionImpl.removeNotificationListener(ObjectName name,
ObjectName listener,
MarshalledObject filter,
MarshalledObject handback,
Subject delegationSubject)
|
void |
RMIConnectionImpl.setAttribute(ObjectName name,
MarshalledObject attribute,
Subject delegationSubject)
|
AttributeList |
RMIConnectionImpl.setAttributes(ObjectName name,
MarshalledObject attributes,
Subject delegationSubject)
|
Uses of SuppressWarnings in javax.swing |
---|
Modifier and Type | Class and Description |
---|---|
class |
TransferHandler
This class is used to handle the transfer of a Transferable
to and from Swing components. |
|
Java™ Platform Standard Ed. 7 DRAFT ea-b118 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Copyright © 1993, 2010, Oracle Corporation. All rights reserved.