Uses of Class
rocks.xmpp.extensions.rpc.model.Value
- 
Packages that use Value Package Description rocks.xmpp.extensions.rpc Provides classes for XEP-0009: Jabber-RPC.rocks.xmpp.extensions.rpc.client Provides client specific classes for XEP-0009: Jabber-RPC.rocks.xmpp.extensions.rpc.model Provides XML schema implementations of XEP-0009: Jabber-RPC. - 
- 
Uses of Value in rocks.xmpp.extensions.rpc
Methods in rocks.xmpp.extensions.rpc that return Value Modifier and Type Method Description ValueRpcHandler. process(Jid requester, String methodName, List<Value> parameters)Processes the remote procedure call.Methods in rocks.xmpp.extensions.rpc that return types with arguments of type Value Modifier and Type Method Description AsyncResult<Value>RpcManager. call(Jid jid, String methodName, Value... parameters)Calls a remote procedure.Methods in rocks.xmpp.extensions.rpc with parameters of type Value Modifier and Type Method Description AsyncResult<Value>RpcManager. call(Jid jid, String methodName, Value... parameters)Calls a remote procedure.Method parameters in rocks.xmpp.extensions.rpc with type arguments of type Value Modifier and Type Method Description ValueRpcHandler. process(Jid requester, String methodName, List<Value> parameters)Processes the remote procedure call. - 
Uses of Value in rocks.xmpp.extensions.rpc.client
Methods in rocks.xmpp.extensions.rpc.client that return types with arguments of type Value Modifier and Type Method Description AsyncResult<Value>ClientRpcManager. call(Jid jid, String methodName, Value... parameters)Methods in rocks.xmpp.extensions.rpc.client with parameters of type Value Modifier and Type Method Description AsyncResult<Value>ClientRpcManager. call(Jid jid, String methodName, Value... parameters) - 
Uses of Value in rocks.xmpp.extensions.rpc.model
Methods in rocks.xmpp.extensions.rpc.model that return Value Modifier and Type Method Description ValueRpc.MethodResponse. getResponse()Gets the response value.static ValueValue. of(boolean b)Creates a boolean value.static ValueValue. of(byte[] bytes)Creates a binary (base64) value.static ValueValue. of(Double d)Creates a double value.static ValueValue. of(Integer integer)Creates an integer value.static ValueValue. of(String string)Creates a string value.static ValueValue. of(OffsetDateTime dateTime)Creates a date value.static ValueValue. of(Collection<Value> list)Creates an array type value.static ValueValue. of(Map<String,Value> map)Creates a struct type value.Methods in rocks.xmpp.extensions.rpc.model that return types with arguments of type Value Modifier and Type Method Description List<Value>Value. getAsArray()Gets the value as array or null.Map<String,Value>Value. getAsMap()Gets the value as map or null.List<Value>Rpc.MethodCall. getParameters()Gets the parameters.Methods in rocks.xmpp.extensions.rpc.model with parameters of type Value Modifier and Type Method Description static RpcRpc. ofMethodCall(String methodName, Value... parameters)Creates a method call with a list of parameters.static RpcRpc. ofMethodResponse(Value value)Creates a method response.Method parameters in rocks.xmpp.extensions.rpc.model with type arguments of type Value Modifier and Type Method Description static ValueValue. of(Collection<Value> list)Creates an array type value.static ValueValue. of(Map<String,Value> map)Creates a struct type value. 
 -