Uses of Interface
org.openjdk.jmc.common.IWritableState
-
Packages that use IWritableState 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 IWritableState in org.openjdk.jmc.common
Methods in org.openjdk.jmc.common that return IWritableState Modifier and Type Method Description IWritableState
IWritableState. createChild(java.lang.String type)
Creates a new child node.Methods in org.openjdk.jmc.common with parameters of type IWritableState Modifier and Type Method Description void
IStateful. saveTo(IWritableState state)
Saves the state for this object into a state object. -
Uses of IWritableState in org.openjdk.jmc.common.item
Methods in org.openjdk.jmc.common.item with parameters of type IWritableState Modifier and Type Method Description protected static void
PersistableItemFilter. putValueType(IWritableState memento, ContentType<?> contentType)
protected void
ItemFilters.AttributeFilter. saveArgs(IWritableState memento)
protected void
ItemFilters.AttributeValue. saveArgs(IWritableState memento)
protected void
ItemFilters.Composite. saveArgs(IWritableState memento)
protected void
ItemFilters.Not. saveArgs(IWritableState memento)
protected void
ItemFilters.RangeMatches. saveArgs(IWritableState memento)
protected void
ItemFilters.Type. saveArgs(IWritableState memento)
protected void
ItemFilters.TypeMatches. saveArgs(IWritableState memento)
protected abstract void
PersistableItemFilter. saveArgs(IWritableState memento)
void
PersistableItemFilter. saveTo(IWritableState memento)
(package private) static <M> void
PersistableItemFilter. writeValue(M value, IPersister<M> persister, IWritableState to)
(package private) static <M> void
PersistableItemFilter. writeValue(M value, IPersister<M> persister, IWritableState to, java.lang.String key)
-
Uses of IWritableState in org.openjdk.jmc.common.util
Classes in org.openjdk.jmc.common.util that implement IWritableState Modifier and Type Class Description (package private) class
StateElementWriter
A wrapper class used to write to an XML document using theIWritableState
interface.private static class
StatefulState.StatefulStateWriter
StatefulState instances should be kept immutable, so the writer must not be exposed.Fields in org.openjdk.jmc.common.util declared as IWritableState Modifier and Type Field Description private IWritableState
StateToolkit.StateHandler. documentElement
Fields in org.openjdk.jmc.common.util with type parameters of type IWritableState Modifier and Type Field Description private java.util.Deque<IWritableState>
StateToolkit.StateHandler. stateStack
Methods in org.openjdk.jmc.common.util that return IWritableState Modifier and Type Method Description IWritableState
StateElementWriter. createChild(java.lang.String type)
IWritableState
StatefulState.StatefulStateWriter. createChild(java.lang.String type)
static IWritableState
StateToolkit. createWriter(java.lang.String rootName)
Create a new writable state.Methods in org.openjdk.jmc.common.util with parameters of type IWritableState Modifier and Type Method Description void
StatefulState. saveTo(IWritableState state)
static void
StateToolkit. saveXMLDocumentTo(java.io.Reader reader, IWritableState state)
Read an XML document from a reader and write its structure to awritable state
.static void
StateToolkit. writeBoolean(IWritableState state, java.lang.String attribute, java.lang.Boolean value)
Write a boolean value to a state.static <T extends java.lang.Enum<T>>
voidStateToolkit. writeEnum(IWritableState state, java.lang.String attribute, T value)
Write an enum value to a state.static void
StateToolkit. writeFloat(IWritableState state, java.lang.String attribute, java.lang.Float value)
Write a float value to a state.static void
StateToolkit. writeInt(IWritableState state, java.lang.String attribute, java.lang.Integer value)
Write an integer value to a state.Constructors in org.openjdk.jmc.common.util with parameters of type IWritableState Constructor Description StateHandler(IWritableState state)
-