Package | Description |
---|---|
org.openjdk.jmc.common |
This package contains interfaces used in Mission Control to identify classes, methods, stack
traces etc.
|
org.openjdk.jmc.common.item |
This package contains the
IItem data model. |
org.openjdk.jmc.common.util |
Modifier and Type | Method and Description |
---|---|
IState |
IState.getChild(java.lang.String type)
Gets a child of the named type.
|
IState[] |
IState.getChildren()
Gets all child nodes.
|
IState[] |
IState.getChildren(java.lang.String type)
Gets all child nodes of a named type.
|
Modifier and Type | Method and Description |
---|---|
private static ICanonicalAccessorFactory<?> |
PersistableItemFilter.readAttribute(IState memento) |
private static <M extends java.lang.Comparable<? super M>> |
PersistableItemFilter.readComparableAttribute(IState memento) |
private static <M extends java.lang.Comparable<? super M>> |
PersistableItemFilter.readComparableKindFrom(ICanonicalAccessorFactory<M> attribute,
PersistableItemFilter.Kind kind,
IState memento) |
private static <M extends java.lang.Comparable<? super M>> |
PersistableItemFilter.readComparableKindFrom(PersistableItemFilter.Kind kind,
IState memento) |
private static <M extends java.lang.Comparable<? super M>> |
PersistableItemFilter.readComparableType(IState memento) |
private static <M> IItemFilter |
PersistableItemFilter.readEquals(ICanonicalAccessorFactory<M> attribute,
IState memento) |
static IItemFilter |
PersistableItemFilter.readFrom(IState memento) |
private static IItemFilter[] |
PersistableItemFilter.readFrom(IState[] mementos) |
private static <M> IItemFilter |
PersistableItemFilter.readNotEquals(ICanonicalAccessorFactory<M> attribute,
IState memento) |
private static <M extends java.lang.Comparable<? super M>> |
PersistableItemFilter.readRangeMatchesFrom(PersistableItemFilter.Kind kind,
IState memento) |
private static ICanonicalAccessorFactory<java.lang.String> |
PersistableItemFilter.readStringAttribute(IState memento) |
(package private) static <M> M |
PersistableItemFilter.readValue(IPersister<M> persister,
IState from) |
(package private) static <M> M |
PersistableItemFilter.readValue(IPersister<M> persister,
IState from,
java.lang.String key) |
Modifier and Type | Class and Description |
---|---|
(package private) class |
StateElement
A wrapper class used to read from an XML document using the
IState interface. |
class |
StatefulState
|
Modifier and Type | Field and Description |
---|---|
private static IState[] |
StateElement.NO_CHILDREN |
Modifier and Type | Method and Description |
---|---|
static IState |
StateToolkit.fromXMLFile(java.io.File document)
Read an XML document from a file and return its structure as a
state . |
static IState |
StateToolkit.fromXMLString(java.lang.String document)
Read an XML document from a string and return its structure as a
state . |
IState |
StateElement.getChild(java.lang.String type) |
IState[] |
StateElement.getChildren() |
IState[] |
StateElement.getChildren(java.lang.String type) |
Modifier and Type | Method and Description |
---|---|
static java.lang.Boolean |
StateToolkit.readBoolean(IState state,
java.lang.String attribute,
java.lang.Boolean defaultValue)
Read a boolean value from a state.
|
static <T extends java.lang.Enum<T>> |
StateToolkit.readEnum(IState state,
java.lang.String attribute,
T defaultValue,
java.lang.Class<T> klass)
Read an enum value from a state.
|
static java.lang.Float |
StateToolkit.readFloat(IState state,
java.lang.String attribute,
java.lang.Float defaultValue)
Read a float value from a state.
|
static java.lang.Integer |
StateToolkit.readInt(IState state,
java.lang.String attribute,
java.lang.Integer defaultValue)
Read an integer value from a state.
|