Class ConfigurationInfo
java.lang.Object
jdk.management.jfr.ConfigurationInfo
Management representation of a
Configuration.- Since:
- 9
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionstatic ConfigurationInfofrom(CompositeData cd) Returns aConfigurationInfoobject represented by the specifiedCompositeData.Returns the textual representation of the configuration associated with thisConfigurationInfo, typically the contents of the configuration file that was used to create the configuration.Returns a short sentence that describes the configuration associated with thisConfigurationInfo(for example,"Low overhead configuration safe for continuous use in production environments".getLabel()Returns the human-readable name (for example,"Continuous"or"Profiling") for the configuration associated with thisConfigurationInfogetName()Returns the name of the configuration associated with thisConfigurationInfo(for example,"default").Returns the provider of the configuration associated with thisConfigurationInfo(for example,"OpenJDK").Returns the settings for the configuration associated with thisConfigurationInfo.toString()Returns a description of the configuration that is associated with thisConfigurationInfo.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Method Details
-
getProvider
Returns the provider of the configuration associated with thisConfigurationInfo(for example,"OpenJDK").- Returns:
- the provider, or
nullif doesn't exist - See Also:
-
getContents
Returns the textual representation of the configuration associated with thisConfigurationInfo, typically the contents of the configuration file that was used to create the configuration.- Returns:
- contents, or
nullif doesn't exist - See Also:
-
getSettings
-
getLabel
Returns the human-readable name (for example,"Continuous"or"Profiling") for the configuration associated with thisConfigurationInfo- Returns:
- the label, or
nullif doesn't exist - See Also:
-
getName
Returns the name of the configuration associated with thisConfigurationInfo(for example,"default").- Returns:
- the name, or
nullif doesn't exist - See Also:
-
getDescription
Returns a short sentence that describes the configuration associated with thisConfigurationInfo(for example,"Low overhead configuration safe for continuous use in production environments".- Returns:
- the description, or
nullif doesn't exist
-
from
Returns aConfigurationInfoobject represented by the specifiedCompositeData.The following table shows the required attributes that the specified
CompositeDatamust contain.Required names and types for CompositeData Name Type name Stringlabel Stringdescription Stringprovider Stringcontents Stringsettings javax.management.openmbean.TabularDatawith aTabularTypewith the keys"key"and"value", both of theStringtype- Parameters:
cd-CompositeDatarepresenting aConfigurationInfo- Returns:
- a
ConfigurationInfoobject represented bycdifcdis notnull,nullotherwise - Throws:
IllegalArgumentException- ifcddoes not represent aConfigurationInfowith the required attributes
-
toString
-