Name

NamedValue

Synopsis

This class represents a remote method argument or return value. It consists of an argument name (as a String), its value (as an Any object), and an argument mode, which can one of ARG_IN.value, ARG_OUT.value, ARG_INOUT.value, or zero. If the argument mode is zero, then the NamedValue represents a Context property value. NamedValues are used in DII and DSI operations, e.g., to build the argument list for a client-side method Request object.

public abstract class NamedValue {
// Public Constructors
   public NamedValue();  
// Public Instance Methods
   public abstract int flags();  
   public abstract String name();  
   public abstract Any value();  
}

Passed To

LocalObject._create_request(), org.omg.CORBA.Object._create_request(), org.omg.CORBA.portable.Delegate.create_request(), org.omg.CORBA.portable.ObjectImpl._create_request()

Returned By

NVList.{add(), add_item(), add_value(), item()}, org.omg.CORBA.ORB.create_named_value(), Request.result()

Get Java Enterprise in a Nutshell, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.