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 Value
RpcHandler. 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 Value
RpcHandler. 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 Value
Rpc.MethodResponse. getResponse()
Gets the response value.static Value
Value. of(boolean b)
Creates a boolean value.static Value
Value. of(byte[] bytes)
Creates a binary (base64) value.static Value
Value. of(Double d)
Creates a double value.static Value
Value. of(Integer integer)
Creates an integer value.static Value
Value. of(String string)
Creates a string value.static Value
Value. of(OffsetDateTime dateTime)
Creates a date value.static Value
Value. of(Collection<Value> list)
Creates an array type value.static Value
Value. 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 Rpc
Rpc. ofMethodCall(String methodName, Value... parameters)
Creates a method call with a list of parameters.static Rpc
Rpc. 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 Value
Value. of(Collection<Value> list)
Creates an array type value.static Value
Value. of(Map<String,Value> map)
Creates a struct type value.
-