JavaTM 2 Platform
Standard Edition

Uses of Class
org.omg.CORBA.Any

Packages that use Any
org.omg.CORBA Provides the mapping of the OMG CORBA APIs to the JavaTM programming language, including the class ORB, which is implemented so that a programmer can use it as a fully-functional Object Request Broker (ORB). 
org.omg.CORBA.portable Provides a portability layer, that is, a set of ORB APIs that makes it possible for code generated by one vendor to run on another vendor's ORB. 
org.omg.CosNaming Provides the naming service for Java IDL. 
org.omg.CosNaming.NamingContextPackage Provides the exceptions used in the package org.omg.CosNaming (AlreadyBound, CannotProceed, InvalidName, NotEmpty, and NotFound) and also the Helper and Holder classes for those exceptions. 
 

Uses of Any in org.omg.CORBA
 

Fields in org.omg.CORBA declared as Any
 Any NameValuePair.value
          The value to be associated with a name by this NameValuePair object.
 Any UnknownUserException.except
          The Any instance that contains the actual user exception thrown by the server.
 Any AnyHolder.value
          The Any value held by this AnyHolder object.
 Any UnionMember.label
          The label of the union member described by this UnionMember object.
 

Methods in org.omg.CORBA that return Any
 Any[] DynSequence.get_elements()
          Return all the value of all elements in this sequence.
abstract  Any Request.add_in_arg()
          Creates an input argument and adds it to this Request object.
abstract  Any Request.add_named_in_arg(String name)
          Creates an input argument with the given name and adds it to this Request object.
abstract  Any Request.add_inout_arg()
          Adds an input/output argument to this Request object.
abstract  Any Request.add_named_inout_arg(String name)
          Adds an input/output argument with the given name to this Request object.
abstract  Any Request.add_out_arg()
          Adds an output argument to this Request object.
abstract  Any Request.add_named_out_arg(String name)
          Adds an output argument with the given name to this Request object.
abstract  Any Request.return_value()
          Returns the Any object that contains the value for the result of the method.
abstract  Any ORB.create_any()
          Creates an IDL Any object initialized to contain a Typecode object whose kind field is set to TCKind.tc_null.
abstract  Any TypeCode.member_label(int index)
          Retrieves the label of the union member identified by the given index.
 Any DynAny.to_any()
          Creates an Any object from this DynAny object.
 Any DynAny.get_any()
          Retrieves the org.omg.CORBA.Any contained in this DynAny object.
abstract  Any Any.extract_any()
          Extracts the Any object in this Any object's value field.
abstract  Any NamedValue.value()
          Retrieves the value for this NamedValue object.
 Any[] DynArray.get_elements()
          Return the value of all the elements of the array.
 

Methods in org.omg.CORBA with parameters of type Any
static ServiceDetail ServiceDetailHelper.extract(Any a)
           
static void ServiceDetailHelper.insert(Any a, ServiceDetail that)
           
 void DynSequence.set_elements(Any[] value)
          Set the values of all elements in this sequence.
abstract  NamedValue ORB.create_named_value(String s, Any any, int flags)
          Creates a NamedValue object using the given name, value, and argument mode flags.
 DynAny ORB.create_dyn_any(Any value)
           
 Policy ORB.create_policy(int type, Any val)
           
 void DynAny.from_any(Any value)
          Initializes the value associated with this DynAny object with the value associated with the given Any object.
 void DynAny.insert_any(Any value)
          Inserts the given org.omg.CORBA.Any object as the value for this DynAny object.
abstract  boolean Any.equal(Any a)
          Checks for equality between this Any object and the given Any object.
abstract  void Any.insert_any(Any a)
          Inserts the given Any object into this Any object's value field.
 void DynArray.set_elements(Any[] value)
          Set the values of all elements of an array represented by this DynArray.
 void ServerRequest.result(Any any)
          Deprecated. use the method set_result
 void ServerRequest.set_result(Any any)
          Specifies any return value for the call.
 void ServerRequest.except(Any any)
          Deprecated. use set_exception()
 void ServerRequest.set_exception(Any any)
          Returns the given exception to the client.
static ServiceInformation ServiceInformationHelper.extract(Any a)
           
static void ServiceInformationHelper.insert(Any a, ServiceInformation that)
           
abstract  void Context.set_one_value(String propname, Any propvalue)
          Creates a NamedValue object and adds it to this Context object.
abstract  NamedValue NVList.add_value(String item_name, Any val, int flags)
          Creates a new NamedValue object initialized with the given name, value, and flag, and adds it to the end of this NVList object.
 

Constructors in org.omg.CORBA with parameters of type Any
NameValuePair.NameValuePair(String __id, Any __value)
          Constructs a NameValuePair object that associates the given name with the given org.omg.CORBA.Any object.
UnknownUserException.UnknownUserException(Any a)
          Constructs an UnknownUserException object that contains the given Any object.
AnyHolder.AnyHolder(Any initial)
          Constructs a new AnyHolder object for the given Any object.
UnionMember.UnionMember(String __name, Any __label, TypeCode __type, IDLType __type_def)
          Constructs a new UnionMember object with its fields initialized to the given values.
 

Uses of Any in org.omg.CORBA.portable
 

Methods in org.omg.CORBA.portable that return Any
abstract  Any InputStream.read_any()
           
 

Methods in org.omg.CORBA.portable with parameters of type Any
abstract  void OutputStream.write_any(Any value)
           
 

Uses of Any in org.omg.CosNaming
 

Methods in org.omg.CosNaming with parameters of type Any
static Binding[] BindingListHelper.extract(Any a)
           
static void BindingListHelper.insert(Any a, Binding[] that)
           
static NameComponent[] NameHelper.extract(Any a)
           
static void NameHelper.insert(Any a, NameComponent[] that)
           
static String IstringHelper.extract(Any a)
           
static void IstringHelper.insert(Any a, String that)
           
static BindingIterator BindingIteratorHelper.extract(Any a)
           
static void BindingIteratorHelper.insert(Any a, BindingIterator that)
           
static NameComponent NameComponentHelper.extract(Any a)
           
static void NameComponentHelper.insert(Any a, NameComponent that)
           
static BindingType BindingTypeHelper.extract(Any a)
           
static void BindingTypeHelper.insert(Any a, BindingType that)
           
static NamingContext NamingContextHelper.extract(Any a)
           
static void NamingContextHelper.insert(Any a, NamingContext that)
           
static Binding BindingHelper.extract(Any a)
           
static void BindingHelper.insert(Any a, Binding that)
           
 

Uses of Any in org.omg.CosNaming.NamingContextPackage
 

Methods in org.omg.CosNaming.NamingContextPackage with parameters of type Any
static NotEmpty NotEmptyHelper.extract(Any a)
           
static void NotEmptyHelper.insert(Any a, NotEmpty that)
           
static NotFound NotFoundHelper.extract(Any a)
           
static void NotFoundHelper.insert(Any a, NotFound that)
           
static NotFoundReason NotFoundReasonHelper.extract(Any a)
           
static void NotFoundReasonHelper.insert(Any a, NotFoundReason that)
           
static CannotProceed CannotProceedHelper.extract(Any a)
           
static void CannotProceedHelper.insert(Any a, CannotProceed that)
           
static InvalidName InvalidNameHelper.extract(Any a)
           
static void InvalidNameHelper.insert(Any a, InvalidName that)
           
static AlreadyBound AlreadyBoundHelper.extract(Any a)
           
static void AlreadyBoundHelper.insert(Any a, AlreadyBound that)
           
 


JavaTM 2 Platform
Standard Edition

Submit a bug or feature
Java, Java 2D, and JDBC are a trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1999 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.