|
JBoss Dynamic Model Representation 1.1.1.Final-redhat-2 | ||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of ModelNode in org.jboss.dmr |
---|
Fields in org.jboss.dmr declared as ModelNode | |
---|---|
static ModelNode |
Validation.SCHEMA_DEFINITION
|
Methods in org.jboss.dmr that return ModelNode | |
---|---|
ModelNode |
ModelNode.add()
Add a node to the end of this node's value list and return it. |
ModelNode |
ModelNode.add(BigDecimal newValue)
Add the given value to the end of this node's value list. |
ModelNode |
ModelNode.add(BigInteger newValue)
Add the given value to the end of this node's value list. |
ModelNode |
ModelNode.add(boolean newValue)
Add the given value to the end of this node's value list. |
ModelNode |
ModelNode.add(byte[] newValue)
Add the given value to the end of this node's value list. |
ModelNode |
ModelNode.add(double newValue)
Add the given value to the end of this node's value list. |
ModelNode |
ModelNode.add(int newValue)
Add the given value to the end of this node's value list. |
ModelNode |
ModelNode.add(long newValue)
Add the given value to the end of this node's value list. |
ModelNode |
ModelNode.add(ModelNode newValue)
Add a copy of the given value to the end of this node's value list. |
ModelNode |
ModelNode.add(String newValue)
Add the given value to the end of this node's value list. |
ModelNode |
ModelNode.add(String propertyName,
BigDecimal propertyValue)
Add a property with the given name and value to the end of this node's value list. |
ModelNode |
ModelNode.add(String propertyName,
BigInteger propertyValue)
Add a property with the given name and value to the end of this node's value list. |
ModelNode |
ModelNode.add(String propertyName,
boolean propertyValue)
Add a property with the given name and value to the end of this node's value list. |
ModelNode |
ModelNode.add(String propertyName,
byte[] propertyValue)
Add a property with the given name and value to the end of this node's value list. |
ModelNode |
ModelNode.add(String propertyName,
double propertyValue)
Add a property with the given name and value to the end of this node's value list. |
ModelNode |
ModelNode.add(String propertyName,
int propertyValue)
Add a property with the given name and value to the end of this node's value list. |
ModelNode |
ModelNode.add(String propertyName,
long propertyValue)
Add a property with the given name and value to the end of this node's value list. |
ModelNode |
ModelNode.add(String propertyName,
ModelNode propertyValue)
Add a property with the given name and value to the end of this node's value list. |
ModelNode |
ModelNode.add(String propertyName,
String propertyValue)
Add a property with the given name and value to the end of this node's value list. |
ModelNode |
ModelNode.addEmptyList()
Add a node of type ModelType.LIST to the end of this node's value list and return it. |
ModelNode |
ModelNode.addEmptyObject()
Add a node of type ModelType.OBJECT to the end of this node's value list and return it. |
ModelNode |
ModelNode.addExpression(String newValue)
Add the given expression to the end of this node's value list. |
ModelNode |
ModelNode.asObject()
Get a copy of this value as an object. |
ModelNode |
ModelNode.clear()
Clear this node's value and change its type to ModelType.UNDEFINED . |
ModelNode |
ModelNode.clone()
Clone this model node. |
protected ModelNode |
JSONParserImpl.finishList(ModelNode list)
|
protected ModelNode |
JSONParserImpl.finishObject(ModelNode object)
|
static ModelNode |
ModelNode.fromBase64(InputStream stream)
Reads base64 data from the passed stream, and deserializes the decoded result. |
static ModelNode |
ModelNode.fromJSONStream(InputStream stream)
Get a model node from a JSON text representation of the model node. |
static ModelNode |
ModelNode.fromJSONString(String input)
|
static ModelNode |
ModelNode.fromStream(InputStream stream)
Get a model node from a text representation of the model node. |
static ModelNode |
ModelNode.fromString(String input)
Get a model node from a string representation of the model node. |
ModelNode |
ModelNode.get(int index)
Get the child of this node with the given index. |
ModelNode |
ModelNode.get(String... names)
Recursively get the children of this node with the given names. |
ModelNode |
ModelNode.get(String name)
Get the child of this node with the given name. |
ModelNode |
JSONParserImpl.getResult()
|
ModelNode |
Property.getValue()
|
protected ModelNode |
JSONParserImpl.parseBigDecimal(String arg)
|
protected ModelNode |
JSONParserImpl.parseBigInteger(String arg)
|
protected ModelNode |
JSONParserImpl.parseEmptyList()
|
protected ModelNode |
JSONParserImpl.parseEmptyObject()
|
protected ModelNode |
JSONParserImpl.parseFalse()
|
protected ModelNode |
JSONParserImpl.parseIntHex(String arg)
|
protected ModelNode |
JSONParserImpl.parseListItem(ModelNode list,
ModelNode child)
|
protected ModelNode |
JSONParserImpl.parseLongHex(String arg)
|
protected ModelNode |
JSONParserImpl.parseObjectItem(ModelNode object,
String key,
ModelNode child)
|
protected ModelNode |
JSONParserImpl.parseStartList(ModelNode child)
|
protected ModelNode |
JSONParserImpl.parseStartObject(String key,
ModelNode child)
|
protected ModelNode |
JSONParserImpl.parseString(String arg)
|
protected ModelNode |
JSONParserImpl.parseTrue()
|
protected ModelNode |
JSONParserImpl.parseUndefined()
|
ModelNode |
ModelNode.remove(String name)
Remove a child of this node, returning the child. |
ModelNode |
ModelNode.require(int index)
Require the existence of a child of this node with the given index, returning the child. |
ModelNode |
ModelNode.require(String name)
Require the existence of a child of this node with the given name, returning the child. |
ModelNode |
ModelNode.resolve()
Return a copy of this model node, with all values of type ModelType.EXPRESSION locally resolved. |
ModelNode |
ModelNode.set(BigDecimal newValue)
Change this node's value to the given value. |
ModelNode |
ModelNode.set(BigInteger newValue)
Change this node's value to the given value. |
ModelNode |
ModelNode.set(boolean newValue)
Change this node's value to the given value. |
ModelNode |
ModelNode.set(byte[] newValue)
Change this node's value to the given value. |
ModelNode |
ModelNode.set(Collection<ModelNode> newValue)
Change this node's value to a list whose values are copied from the given collection. |
ModelNode |
ModelNode.set(double newValue)
Change this node's value to the given value. |
ModelNode |
ModelNode.set(int newValue)
Change this node's value to the given value. |
ModelNode |
ModelNode.set(long newValue)
Change this node's value to the given value. |
ModelNode |
ModelNode.set(ModelNode newValue)
Change this node's value to the given value. |
ModelNode |
ModelNode.set(ModelType newValue)
Change this node's value to the given value. |
ModelNode |
ModelNode.set(Property newValue)
Change this node's value to the given value. |
ModelNode |
ModelNode.set(String newValue)
Change this node's value to the given value. |
ModelNode |
ModelNode.set(String propertyName,
BigDecimal propertyValue)
Change this node's value to a property with the given name and value. |
ModelNode |
ModelNode.set(String propertyName,
BigInteger propertyValue)
Change this node's value to a property with the given name and value. |
ModelNode |
ModelNode.set(String propertyName,
boolean propertyValue)
Change this node's value to a property with the given name and value. |
ModelNode |
ModelNode.set(String propertyName,
byte[] propertyValue)
Change this node's value to a property with the given name and value. |
ModelNode |
ModelNode.set(String propertyName,
double propertyValue)
Change this node's value to a property with the given name and value. |
ModelNode |
ModelNode.set(String propertyName,
int propertyValue)
Change this node's value to a property with the given name and value. |
ModelNode |
ModelNode.set(String propertyName,
long propertyValue)
Change this node's value to a property with the given name and value. |
ModelNode |
ModelNode.set(String propertyName,
ModelNode propertyValue)
Change this node's value to a property with the given name and value. |
ModelNode |
ModelNode.set(String propertyName,
ModelType propertyValue)
Change this node's value to a property with the given name and value. |
ModelNode |
ModelNode.set(String propertyName,
String propertyValue)
Change this node's value to a property with the given name and value. |
ModelNode |
ModelNode.setEmptyList()
Change this node's value to an empty list. |
ModelNode |
ModelNode.setEmptyObject()
Change this node's value to an empty object. |
ModelNode |
ModelNode.setExpression(String newValue)
Change this node's value to the given expression value. |
ModelNode |
ModelNode.setExpression(String propertyName,
String propertyValue)
Change this node's value to a property with the given name and expression value. |
Methods in org.jboss.dmr that return types with arguments of type ModelNode | |
---|---|
List<ModelNode> |
ModelNode.asList()
Get the list of entries contained in this object. |
Methods in org.jboss.dmr with parameters of type ModelNode | |
---|---|
ModelNode |
ModelNode.add(ModelNode newValue)
Add a copy of the given value to the end of this node's value list. |
ModelNode |
ModelNode.add(String propertyName,
ModelNode propertyValue)
Add a property with the given name and value to the end of this node's value list. |
boolean |
ModelNode.equals(ModelNode other)
Determine whether this object is equal to another. |
protected ModelNode |
JSONParserImpl.finishList(ModelNode list)
|
protected ModelNode |
JSONParserImpl.finishObject(ModelNode object)
|
protected int |
JSONParserImpl.parse(ModelNode node)
|
protected ModelNode |
JSONParserImpl.parseListItem(ModelNode list,
ModelNode child)
|
protected ModelNode |
JSONParserImpl.parseObjectItem(ModelNode object,
String key,
ModelNode child)
|
protected ModelNode |
JSONParserImpl.parseStartList(ModelNode child)
|
protected ModelNode |
JSONParserImpl.parseStartObject(String key,
ModelNode child)
|
ModelNode |
ModelNode.set(ModelNode newValue)
Change this node's value to the given value. |
ModelNode |
ModelNode.set(String propertyName,
ModelNode propertyValue)
Change this node's value to a property with the given name and value. |
static void |
Validation.validate(ModelNode schema,
String rootType)
|
Method parameters in org.jboss.dmr with type arguments of type ModelNode | |
---|---|
ModelNode |
ModelNode.set(Collection<ModelNode> newValue)
Change this node's value to a list whose values are copied from the given collection. |
Constructors in org.jboss.dmr with parameters of type ModelNode | |
---|---|
Property(String name,
ModelNode value)
|
|
JBoss Dynamic Model Representation 1.1.1.Final-redhat-2 | ||||||||
PREV NEXT | FRAMES NO FRAMES |