Package com.ericsson.otp.ic
Class PortHelper
- java.lang.Object
-
- com.ericsson.otp.ic.PortHelper
-
public class PortHelper extends java.lang.Object
Helper class for Port.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Port
extract(Any _any)
Standard method for extracting a Port from an Any.static java.lang.String
id()
Standard method that returns the interface repository identity.static void
insert(Any _any, Port _this)
Standard method for inserting a Port to an Any.static void
marshal(com.ericsson.otp.erlang.OtpOutputStream _out, Port _value)
Marshal method for the Port class, encodes the Port object to the output stream.static java.lang.String
name()
Standard method that returns the Port class name.static TypeCode
type()
Standard TypeCode accessor method.static Port
unmarshal(com.ericsson.otp.erlang.OtpInputStream _in)
Unmarshal method for the Port class, decodes a Port object from the stream.
-
-
-
Method Detail
-
marshal
public static void marshal(com.ericsson.otp.erlang.OtpOutputStream _out, Port _value) throws java.lang.Exception
Marshal method for the Port class, encodes the Port object to the output stream.- Throws:
java.lang.Exception
-
unmarshal
public static Port unmarshal(com.ericsson.otp.erlang.OtpInputStream _in) throws java.lang.Exception
Unmarshal method for the Port class, decodes a Port object from the stream.- Returns:
- Port, read from the input stream
- Throws:
java.lang.Exception
-
id
public static java.lang.String id()
Standard method that returns the interface repository identity.- Returns:
- String containing the interface repository identity of Port
-
name
public static java.lang.String name()
Standard method that returns the Port class name.- Returns:
- String containing the class name of Port
-
type
public static TypeCode type()
Standard TypeCode accessor method.- Returns:
- the TypeCode for Port
-
insert
public static void insert(Any _any, Port _this) throws java.lang.Exception
Standard method for inserting a Port to an Any.- Throws:
java.lang.Exception
-
-