API Overview API Index Package Overview Direct link to this page
JDK 1.6
  org.omg.CORBA. DynAny View Source
Author(s)
Since
Version
Serial
Hierarchy
 Object
      DynAny
Subinterfaces
Description
@Deprecated
public interface DynAny
  Enables org.omg.CORBA.Any values to be dynamically interpreted (traversed) and constructed.
See also:   
Methods
Hide/Show inherited methods
public void assign (DynAny dyn_any) throws Invalid
  Copy the contents from one Dynamic Any into another.
public DynAny copy ()
  Clones this DynAny object.
public DynAny current_component ()
  Returns a DynAny object reference that can be used to get/set the value of the component currently accessed.
public void destroy ()
  Destroys this DynAny object and frees any resources used to represent the data value associated with it.
public void from_any (Any value) throws Invalid
  Make a DynAny object from an Any object.
public Any get_any () throws TypeMismatch
  Retrieves the org.omg.CORBA.Any contained in this DynAny object.
public boolean get_boolean () throws TypeMismatch
  Retrieves the boolean contained in this DynAny object.
public char get_char () throws TypeMismatch
  Retrieves the char contained in this DynAny object.
public double get_double () throws TypeMismatch
  Retrieves the double contained in this DynAny object.
public float get_float () throws TypeMismatch
  Retrieves the float contained in this DynAny object.
public int get_long () throws TypeMismatch
  Retrieves the int contained in this DynAny object.
public long get_longlong () throws TypeMismatch
  Retrieves the long contained in this DynAny object.
public byte get_octet () throws TypeMismatch
  Retrieves the byte contained in this DynAny object.
public Object get_reference () throws TypeMismatch
  Retrieves the org.omg.CORBA.Other contained in this DynAny object.
public short get_short () throws TypeMismatch
  Retrieves the short contained in this DynAny object.
public String get_string () throws TypeMismatch
  Retrieves the String contained in this DynAny object.
public TypeCode get_typecode () throws TypeMismatch
  Retrieves the org.omg.CORBA.TypeCode contained in this DynAny object.
public int get_ulong () throws TypeMismatch
  Retrieves the int contained in this DynAny object.
public long get_ulonglong () throws TypeMismatch
  Retrieves the long contained in this DynAny object.
public short get_ushort () throws TypeMismatch
  Retrieves the short contained in this DynAny object.
public Serializable get_val () throws TypeMismatch
  Retrieves the java.io.Serializable object contained in this DynAny object.
public char get_wchar () throws TypeMismatch
  Retrieves the char contained in this DynAny object.
public String get_wstring () throws TypeMismatch
  Retrieves the String contained in this DynAny object.
public void insert_any (Any value) throws InvalidValue
  Inserts the given org.omg.CORBA.Any object as the value for this DynAny object.
public void insert_boolean (boolean value) throws InvalidValue
  Inserts the given boolean as the value for this DynAny object.
public void insert_char (char value) throws InvalidValue
  Inserts the given char as the value for this DynAny object.
public void insert_double (double value) throws InvalidValue
  Inserts the given double as the value for this DynAny object.
public void insert_float (float value) throws InvalidValue
  Inserts the given float as the value for this DynAny object.
public void insert_long (int value) throws InvalidValue
  Inserts the given int as the value for this DynAny object.
public void insert_longlong (long value) throws InvalidValue
  Inserts the given long as the value for this DynAny object.
public void insert_octet (byte value) throws InvalidValue
  Inserts the given byte as the value for this DynAny object.
public void insert_reference (Object value) throws InvalidValue
  Inserts the given org.omg.CORBA.Object as the value for this DynAny object.
public void insert_short (short value) throws InvalidValue
  Inserts the given short as the value for this DynAny object.
public void insert_string (String value) throws InvalidValue
  Inserts the given String object as the value for this DynAny object.
public void insert_typecode (TypeCode value) throws InvalidValue
  Inserts the given org.omg.CORBA.TypeCode as the value for this DynAny object.
public void insert_ulong (int value) throws InvalidValue
  Inserts the given int as the value for this DynAny object.
public void insert_ulonglong (long value) throws InvalidValue
  Inserts the given long as the value for this DynAny object.
public void insert_ushort (short value) throws InvalidValue
  Inserts the given short as the value for this DynAny object.
public void insert_val (Serializable value) throws InvalidValue
  Inserts the given java.io.Serializable object as the value for this DynAny object.
public void insert_wchar (char value) throws InvalidValue
  Inserts the given char as the value for this DynAny object.
public void insert_wstring (String value) throws InvalidValue
  Inserts the given String as the value for this DynAny object.
public boolean next ()
  Moves to the next component of this DynAny object.
public void rewind ()
Moves the internal pointer to the first component.
public boolean seek (int index)
  Moves the internal pointer to the given index.
public Any to_any () throws Invalid
  Convert a DynAny object to an Any object.
public TypeCode type ()
  Returns the TypeCode of the object inserted into this DynAny.
Fields
Hide/Show inherited fields
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar