Class SettingDescriptorInfo
java.lang.Object
jdk.management.jfr.SettingDescriptorInfo
Management class that describes a setting, for example name, description and
default value.
- Since:
- 9
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionstatic SettingDescriptorInfofrom(CompositeData cd) Returns anSettingDescriptorInforepresented by the specifiedCompositeDataReturns the content type of the setting associated thisSettingDescriptorInfo(for example,"jdk.jfr.Timespan").Returns the default value of the setting associated thisSettingDescriptorInfo(for example,"20 ms").Returns the description of the setting associated thisSettingDescriptorInfo(for example,"The duration an event must exceed to be recorded").getLabel()Returns the human-readable name of the setting associated with thisSettingDescriptorInfo(for example,"Threshold").getName()Returns the name of the setting associated with thisSettingDescriptorInfo(for example,"threshold").Returns the type name of the setting associated thisSettingDescriptorInfo(for example,"jdk.settings.Threshold").toString()Returns aStringdescription of thisSettingDescriptorInfo.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
-
getLabel
Returns the human-readable name of the setting associated with thisSettingDescriptorInfo(for example,"Threshold").- Returns:
- the label for this setting, not
null
-
getName
Returns the name of the setting associated with thisSettingDescriptorInfo(for example,"threshold").- Returns:
- the name of this setting, not
null
-
getDescription
Returns the description of the setting associated thisSettingDescriptorInfo(for example,"The duration an event must exceed to be recorded").- Returns:
- the description of this setting, not null
-
getTypeName
Returns the type name of the setting associated thisSettingDescriptorInfo(for example,"jdk.settings.Threshold").The type can be used to identify what type of setting this is.
- Returns:
- the name of this settings type, not
null
-
getContentType
Returns the content type of the setting associated thisSettingDescriptorInfo(for example,"jdk.jfr.Timespan").The content type can be used to determine how the setting should be rendered in a graphical user interface.
- Returns:
- the name of this settings type, not
null
-
getDefaultValue
Returns the default value of the setting associated thisSettingDescriptorInfo(for example,"20 ms").- Returns:
- default value for this setting, not
null - See Also:
-
from
Returns anSettingDescriptorInforepresented by the specifiedCompositeDataThe supplied
CompositeDatamust have the following item names and item types to be valid.The name and type the specified CompositeData must contain Name Type name Stringlabel Stringdescription StringtypeName StringcontentType StringdefaultValue String- Parameters:
cd-CompositeDatarepresenting theSettingDescriptorInfoto return- Returns:
- a
SettingDescriptorInfo, ornullifcdisnull - Throws:
IllegalArgumentException- ifcddoes not represent a validEventTypeInfo
-
toString
-