com.essbase.api.session
Class IEssbase.EEssOrbPluginType

java.lang.Object
  extended bycom.essbase.api.session.IEssbase.EEssOrbPluginType
All Implemented Interfaces:
IEssBaseObject, IEssEnum
Enclosing class:
IEssbase

public static final class IEssbase.EEssOrbPluginType
extends java.lang.Object
implements IEssEnum

The EEssOrbPluginType is an enumeration of supported ORB plug-in types.


Field Summary
static IEssbase.EEssOrbPluginType CORBA
          Orb Plugin Type: CORBA (Common Object Request Broker Architecture).
static int CORBA_INT_VALUE
          Orb Plugin Type (int value): CORBA (Common Object Request Broker Architecture).
static IEssbase.EEssOrbPluginType EJB
          Orb Plugin Type: EJB (Enterprise Java Beans).
static int EJB_INT_VALUE
          Orb Plugin Type (int value): EJB (Enterprise Java Beans).
static IEssbase.EEssOrbPluginType HTTP
          Orb Plugin Type: HTTP (HyperText Transfer Protocol).
static int HTTP_INT_VALUE
          Orb Plugin Type (int value): HTTP (HyperText Transfer Protocol).
static IEssbase.EEssOrbPluginType TCPIP
          Orb Plugin Type: TCP_IP.
static int TCPIP_INT_VALUE
          Orb Plugin Type (int value): TCP_IP.
 
Constructor Summary
IEssbase.EEssOrbPluginType()
           
 
Method Summary
 IEssEnum fromInt(int intValue)
          Gets the IEssEnum from the int value.
 IEssEnum fromString(java.lang.String strValue)
          Gets the IEssEnum from the String display value.
 int getCountPossibleValues()
          Gets the count of possible values of the enumeration.
 java.lang.String[] getPossibleValues()
          Gets the list of possible values of the enumeration.
 int intValue()
          Gets the int value of the IEssEnum.
static IEssbase.EEssOrbPluginType sm_fromInt(int intValue)
          Gets an enumeration object from its int value.
static IEssbase.EEssOrbPluginType sm_fromString(java.lang.String strValue)
          Gets an enumeration object from its string display value.
static IEssbase.EEssOrbPluginType[] sm_values()
          Gets all the enumeration objects.
 java.lang.String stringValue()
          Gets the String display value of the IEssEnum.
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

TCPIP

public static final IEssbase.EEssOrbPluginType TCPIP
Orb Plugin Type: TCP_IP.


HTTP

public static final IEssbase.EEssOrbPluginType HTTP
Orb Plugin Type: HTTP (HyperText Transfer Protocol).


EJB

public static final IEssbase.EEssOrbPluginType EJB
Orb Plugin Type: EJB (Enterprise Java Beans).


CORBA

public static final IEssbase.EEssOrbPluginType CORBA
Orb Plugin Type: CORBA (Common Object Request Broker Architecture).


TCPIP_INT_VALUE

public static final int TCPIP_INT_VALUE
Orb Plugin Type (int value): TCP_IP.

See Also:
Constant Field Values

HTTP_INT_VALUE

public static final int HTTP_INT_VALUE
Orb Plugin Type (int value): HTTP (HyperText Transfer Protocol).

See Also:
Constant Field Values

EJB_INT_VALUE

public static final int EJB_INT_VALUE
Orb Plugin Type (int value): EJB (Enterprise Java Beans).

See Also:
Constant Field Values

CORBA_INT_VALUE

public static final int CORBA_INT_VALUE
Orb Plugin Type (int value): CORBA (Common Object Request Broker Architecture).

See Also:
Constant Field Values
Constructor Detail

IEssbase.EEssOrbPluginType

public IEssbase.EEssOrbPluginType()
Method Detail

sm_fromString

public static IEssbase.EEssOrbPluginType sm_fromString(java.lang.String strValue)
                                                throws EssException
Gets an enumeration object from its string display value.

Parameters:
strValue - The string display value.
Returns:
The enumeration object.
Throws:
EssException - if an error occurs.

sm_fromInt

public static IEssbase.EEssOrbPluginType sm_fromInt(int intValue)
                                             throws EssException
Gets an enumeration object from its int value.

Parameters:
intValue - The int value.
Returns:
The enumeration object.
Throws:
EssException - if an error occurs.

sm_values

public static IEssbase.EEssOrbPluginType[] sm_values()
                                              throws EssException
Gets all the enumeration objects.

Returns:
The enumeration objects.
Throws:
EssException - if an error occurs.

stringValue

public java.lang.String stringValue()
                             throws EssException
Description copied from interface: IEssEnum
Gets the String display value of the IEssEnum.

Specified by:
stringValue in interface IEssEnum
Returns:
The String display value of the IEssEnum.
Throws:
EssException - if an error occurs.

intValue

public int intValue()
             throws EssException
Description copied from interface: IEssEnum
Gets the int value of the IEssEnum.

Specified by:
intValue in interface IEssEnum
Returns:
The int value of the IEssEnum.
Throws:
EssException - if an error occurs.

fromInt

public IEssEnum fromInt(int intValue)
                 throws EssException
Description copied from interface: IEssEnum
Gets the IEssEnum from the int value.

Specified by:
fromInt in interface IEssEnum
Returns:
The IEssEnum interface.
Throws:
EssException - if an error occurs.

fromString

public IEssEnum fromString(java.lang.String strValue)
                    throws EssException
Description copied from interface: IEssEnum
Gets the IEssEnum from the String display value.

Specified by:
fromString in interface IEssEnum
Returns:
The IEssEnum interface.
Throws:
EssException - if an error occurs.

getCountPossibleValues

public int getCountPossibleValues()
                           throws EssException
Description copied from interface: IEssEnum
Gets the count of possible values of the enumeration.

Specified by:
getCountPossibleValues in interface IEssEnum
Returns:
The count of possible values in the enumeration.
Throws:
EssException - if an error occurs.

getPossibleValues

public java.lang.String[] getPossibleValues()
                                     throws EssException
Description copied from interface: IEssEnum
Gets the list of possible values of the enumeration.

Specified by:
getPossibleValues in interface IEssEnum
Returns:
The list of possible values in the enumeration.
Throws:
EssException - if an error occurs.

toString

public java.lang.String toString()