Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JDK 11 java.management.jmod - Management Module
JDK 11 java.management.jmod is the JMOD file for JDK 11 Management module.
JDK 11 Management module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\java.management.jmod.
JDK 11 Management module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Management module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\java.management.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ javax/management/MBeanNotificationInfo.java
/* * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javax.management; import java.io.IOException; import java.io.InvalidObjectException; import java.io.ObjectInputStream; import java.util.Arrays; import java.util.Objects; /** * <p>The {@code MBeanNotificationInfo} class is used to describe the * characteristics of the different notification instances * emitted by an MBean, for a given Java class of notification. * If an MBean emits notifications that can be instances of different Java classes, * then the metadata for that MBean should provide an {@code MBeanNotificationInfo} * object for each of these notification Java classes.</p> * * <p>Instances of this class are immutable. Subclasses may be * mutable but this is not recommended.</p> * * <p>This class extends {@code javax.management.MBeanFeatureInfo} * and thus provides {@code name} and {@code description} fields. * The {@code name} field should be the fully qualified Java class name of * the notification objects described by this class.</p> * * <p>The {@code getNotifTypes} method returns an array of * strings containing the notification types that the MBean may * emit. The notification type is a dot-notation string which * describes what the emitted notification is about, not the Java * class of the notification. A single generic notification class can * be used to send notifications of several types. All of these types * are returned in the string array result of the * {@code getNotifTypes} method. * * @since 1.5 */ public class MBeanNotificationInfo extends MBeanFeatureInfo implements Cloneable { /* Serial version */ static final long serialVersionUID = -3888371564530107064L; private static final String[] NO_TYPES = new String[0]; static final MBeanNotificationInfo[] NO_NOTIFICATIONS = new MBeanNotificationInfo[0]; /** * @serial The different types of the notification. */ private String[] types; /** @see MBeanInfo#arrayGettersSafe */ private final transient boolean arrayGettersSafe; /** * Constructs an {@code MBeanNotificationInfo} object. * * @param notifTypes The array of strings (in dot notation) * containing the notification types that the MBean may emit. * This may be null with the same effect as a zero-length array. * @param name The fully qualified Java class name of the * described notifications. * @param description A human readable description of the data. */ public MBeanNotificationInfo(String[] notifTypes, String name, String description) { this(notifTypes, name, description, null); } /** * Constructs an {@code MBeanNotificationInfo} object. * * @param notifTypes The array of strings (in dot notation) * containing the notification types that the MBean may emit. * This may be null with the same effect as a zero-length array. * @param name The fully qualified Java class name of the * described notifications. * @param description A human readable description of the data. * @param descriptor The descriptor for the notifications. This may be null * which is equivalent to an empty descriptor. * * @since 1.6 */ public MBeanNotificationInfo(String[] notifTypes, String name, String description, Descriptor descriptor) { super(name, description, descriptor); /* We do not validate the notifTypes, since the spec just says they are dot-separated, not that they must look like Java classes. E.g. the spec doesn't forbid "sun.prob.25" as a notifType, though it doesn't explicitly allow it either. */ this.types = (notifTypes != null && notifTypes.length > 0) ? notifTypes.clone() : NO_TYPES; this.arrayGettersSafe = MBeanInfo.arrayGettersSafe(this.getClass(), MBeanNotificationInfo.class); } /** * Returns a shallow clone of this instance. * The clone is obtained by simply calling {@code super.clone()}, * thus calling the default native shallow cloning mechanism * implemented by {@code Object.clone()}. * No deeper cloning of any internal field is made. */ public Object clone () { try { return super.clone() ; } catch (CloneNotSupportedException e) { // should not happen as this class is cloneable return null; } } /** * Returns the array of strings (in dot notation) containing the * notification types that the MBean may emit. * * @return the array of strings. Changing the returned array has no * effect on this MBeanNotificationInfo. */ public String[] getNotifTypes() { if (types.length == 0) return NO_TYPES; else return types.clone(); } private String[] fastGetNotifTypes() { if (arrayGettersSafe) return types; else return getNotifTypes(); } public String toString() { return getClass().getName() + "[" + "description=" + getDescription() + ", " + "name=" + getName() + ", " + "notifTypes=" + Arrays.asList(fastGetNotifTypes()) + ", " + "descriptor=" + getDescriptor() + "]"; } /** * Compare this MBeanNotificationInfo to another. * * @param o the object to compare to. * * @return true if and only if {@code o} is an MBeanNotificationInfo * such that its {@link #getName()}, {@link #getDescription()}, * {@link #getDescriptor()}, * and {@link #getNotifTypes()} values are equal (not necessarily * identical) to those of this MBeanNotificationInfo. Two * notification type arrays are equal if their corresponding * elements are equal. They are not equal if they have the same * elements but in a different order. */ public boolean equals(Object o) { if (o == this) return true; if (!(o instanceof MBeanNotificationInfo)) return false; MBeanNotificationInfo p = (MBeanNotificationInfo) o; return (Objects.equals(p.getName(), getName()) && Objects.equals(p.getDescription(), getDescription()) && Objects.equals(p.getDescriptor(), getDescriptor()) && Arrays.equals(p.fastGetNotifTypes(), fastGetNotifTypes())); } public int hashCode() { int hash = getName().hashCode(); for (int i = 0; i < types.length; i++) hash ^= types[i].hashCode(); return hash; } private void readObject(ObjectInputStream ois) throws IOException, ClassNotFoundException { ObjectInputStream.GetField gf = ois.readFields(); String[] t = (String[])gf.get("types", null); types = (t != null && t.length != 0) ? t.clone() : NO_TYPES; } }
⏎ javax/management/MBeanNotificationInfo.java
Or download all of them as a single archive file:
File name: java.management-11.0.1-src.zip File size: 828174 bytes Release date: 2018-11-04 Download
⇒ JDK 11 java.management.rmi.jmod - Management RMI Module
2020-04-30, 98992👍, 0💬
Popular Posts:
JDK 11 java.xml.jmod is the JMOD file for JDK 11 XML (eXtensible Markup Language) module. JDK 11 XML...
JRE 8 rt.jar is the JAR file for JRE 8 RT (Runtime) libraries. JRE (Java Runtime) 8 is the runtime e...
ANTLR is a powerful parser generator for multiple programming languages including Java. ANTLR contai...
What is the jaxp\SourceValidator.jav aprovided in the Apache Xerces package? I have Apache Xerces 2....
JRE 8 rt.jar is the JAR file for JRE 8 RT (Runtime) libraries. JRE (Java Runtime) 8 is the runtime e...