public abstract class IstringHelper extends java.lang.Object
| Constructor and Description |
|---|
IstringHelper() |
| Modifier and Type | Method and Description |
|---|---|
static java.lang.String |
extract(org.omg.CORBA.Any a)
Extract the IString from Any ((uses
Any.extract_string()). |
static java.lang.String |
id()
Return the IString repository id.
|
static void |
insert(org.omg.CORBA.Any a,
java.lang.String that)
Insert the IString into Any (uses
Any.insert_string(java.lang.String)). |
static java.lang.String |
read(org.omg.CORBA.portable.InputStream istream)
Calls
InputStream.read_string(). |
static org.omg.CORBA.TypeCode |
type()
Return an alias typecode.
|
static void |
write(org.omg.CORBA.portable.OutputStream ostream,
java.lang.String value)
Calls
OutputStream.write_string(String). |
public IstringHelper()
public static void insert(org.omg.CORBA.Any a, java.lang.String that)
Any.insert_string(java.lang.String)).a - the Any to insert into.that - the string to insert.public static java.lang.String extract(org.omg.CORBA.Any a)
Any.extract_string()).a - the Any to extract from.public static org.omg.CORBA.TypeCode type()
public static java.lang.String id()
public static java.lang.String read(org.omg.CORBA.portable.InputStream istream)
InputStream.read_string().istream - the stream to read from.public static void write(org.omg.CORBA.portable.OutputStream ostream, java.lang.String value)
OutputStream.write_string(String).ostream - the stream to write into.value - the string (IString) value to write.