FileDocCategorySizeDatePackage
BindingTypeHelper.javaAPI DocJava SE 5 API1704Fri Aug 26 17:25:12 BST 2005org.omg.CosNaming

BindingTypeHelper

public abstract class BindingTypeHelper extends Object
Specifies whether the given binding is for a object (that is not a naming context) or for a naming context.

Fields Summary
private static String
_id
private static org.omg.CORBA.TypeCode
__typeCode
Constructors Summary
Methods Summary
public static org.omg.CosNaming.BindingTypeextract(org.omg.CORBA.Any a)

    return read (a.create_input_stream ());
  
public static java.lang.Stringid()

    return _id;
  
public static voidinsert(org.omg.CORBA.Any a, org.omg.CosNaming.BindingType that)


         
  
    org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
    a.type (type ());
    write (out, that);
    a.read_value (out.create_input_stream (), type ());
  
public static org.omg.CosNaming.BindingTyperead(org.omg.CORBA.portable.InputStream istream)

    return org.omg.CosNaming.BindingType.from_int (istream.read_long ());
  
public static synchronized org.omg.CORBA.TypeCodetype()

       
  
    if (__typeCode == null)
    {
      __typeCode = org.omg.CORBA.ORB.init ().create_enum_tc (org.omg.CosNaming.BindingTypeHelper.id (), "BindingType", new String[] { "nobject", "ncontext"} );
    }
    return __typeCode;
  
public static voidwrite(org.omg.CORBA.portable.OutputStream ostream, org.omg.CosNaming.BindingType value)

    ostream.write_long (value.value ());