public abstract class ObjectIdHelper extends Object
Constructor and Description |
---|
ObjectIdHelper() |
Modifier and Type | Method and Description |
---|---|
static String |
extract(Any a)
Extract the Object Id from Any (uses
Any.extract_string() ). |
static String |
id()
Return the Object Id repository id.
|
static void |
insert(Any a,
String that)
Insert the Object Id into Any (uses
Any.insert_string(String) ). |
static String |
read(InputStream input)
Calls
InputStream.read_string() . |
static TypeCode |
type()
Return an alias typecode.
|
static void |
write(OutputStream output,
String value)
|
public ObjectIdHelper()
public static void insert(Any a, String that)
Any.insert_string(String)
).a
- the Any to insert into.that
- the string to insert.public static String extract(Any a)
Any.extract_string()
).a
- the Any to extract from.public static String id()
public static String read(InputStream input)
InputStream.read_string()
.input
- the stream to read from.public static void write(OutputStream output, String value)
output
- the stream to write into.value
- the string (Object Id) value to write.