oracle.owb.mapping
Class MapUtilityGen

java.lang.Object
  |
  +--oracle.owb.mapping.MapUtilityGen

public class MapUtilityGen
extends java.lang.Object

MapUtilityGen is a code-generated class that implements strong-typed methods for specific operator types. DO NOT CHANGE THIS INTERFACE MANUALLY


Constructor Summary
MapUtilityGen()
           
 
Method Summary
protected static java.lang.String getInternalClassForOperatorType(java.lang.String operatorType)
          Retrieves the internal mapping API class type for a given public API type.
protected static java.lang.String getOperatorTypeForInternalClass(java.lang.String className)
          Retrieves the public API operator type for a given internal mapping class name.
static boolean isBindableOperatorType(java.lang.String operatorType)
          Determines if a given mapping operator type is bindable.
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MapUtilityGen

public MapUtilityGen()
Method Detail

isBindableOperatorType

public static boolean isBindableOperatorType(java.lang.String operatorType)
Determines if a given mapping operator type is bindable.
Parameters:
operatorType - The operator type. Should be one of the string constants (prefix OPTYPE_), which can be found in the MapHelper interface.
Returns:
true if the type is bindable, else false.

getInternalClassForOperatorType

protected static java.lang.String getInternalClassForOperatorType(java.lang.String operatorType)
Retrieves the internal mapping API class type for a given public API type.
Parameters:
operatorType - The operator type. Should be one of the string constants (prefix OPTYPE_), which can be found in the MapHelper interface.
Returns:
The fully qualified name of the internal mapping component class.

getOperatorTypeForInternalClass

protected static java.lang.String getOperatorTypeForInternalClass(java.lang.String className)
Retrieves the public API operator type for a given internal mapping class name.
Parameters:
className - The fully qualified internal class name.
Returns:
The operator type. Should be one of the string constants (prefix OPTYPE_), which can be found in the MapHelper interface.