Uses of Interface
org.openjdk.jmc.common.IState
-
Packages that use IState 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 theIItem
data model.org.openjdk.jmc.common.util -
-
Uses of IState in org.openjdk.jmc.common
Methods in org.openjdk.jmc.common that return IState Modifier and Type Method 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. -
Uses of IState in org.openjdk.jmc.common.item
Methods in org.openjdk.jmc.common.item with parameters of type IState Modifier and Type Method Description private static ICanonicalAccessorFactory<?>
PersistableItemFilter. readAttribute(IState memento)
private static <M extends java.lang.Comparable<? super M>>
ICanonicalAccessorFactory<M>PersistableItemFilter. readComparableAttribute(IState memento)
private static <M extends java.lang.Comparable<? super M>>
IItemFilterPersistableItemFilter. readComparableKindFrom(ICanonicalAccessorFactory<M> attribute, PersistableItemFilter.Kind kind, IState memento)
private static <M extends java.lang.Comparable<? super M>>
IItemFilterPersistableItemFilter. readComparableKindFrom(PersistableItemFilter.Kind kind, IState memento)
private static <M extends java.lang.Comparable<? super M>>
ContentType<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>>
IItemFilterPersistableItemFilter. 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)
-
Uses of IState in org.openjdk.jmc.common.util
Classes in org.openjdk.jmc.common.util that implement IState Modifier and Type Class Description (package private) class
StateElement
A wrapper class used to read from an XML document using theIState
interface.class
StatefulState
Fields in org.openjdk.jmc.common.util declared as IState Modifier and Type Field Description private static IState[]
StateElement. NO_CHILDREN
Methods in org.openjdk.jmc.common.util that return IState Modifier and Type Method Description static IState
StateToolkit. fromXMLFile(java.io.File document)
Read an XML document from a file and return its structure as astate
.static IState
StateToolkit. fromXMLString(java.lang.String document)
Read an XML document from a string and return its structure as astate
.IState
StateElement. getChild(java.lang.String type)
IState[]
StateElement. getChildren()
IState[]
StateElement. getChildren(java.lang.String type)
Methods in org.openjdk.jmc.common.util with parameters of type IState Modifier and Type Method 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>>
TStateToolkit. 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.
-