com.softwareag.centrasite.appl.framework.generator
Enum RegistryBeanGenerator.ResultType

java.lang.Object
  extended by java.lang.Enum<RegistryBeanGenerator.ResultType>
      extended by com.softwareag.centrasite.appl.framework.generator.RegistryBeanGenerator.ResultType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<RegistryBeanGenerator.ResultType>
Enclosing interface:
RegistryBeanGenerator

public static enum RegistryBeanGenerator.ResultType
extends java.lang.Enum<RegistryBeanGenerator.ResultType>

Used as Key of the Map returned by RegistryBeanGenerator.generate(String, String, String) method.


Enum Constant Summary
BASE_TYPE_IMPLEMENTATION
          The key to access the base implementation source code.
BASE_TYPE_IMPLEMENTATION_NAME
          The key to access the base implementation class name.
BASE_TYPE_INTERFACE
          The key to access the base interface source code.
BASE_TYPE_INTERFACE_NAME
          The key to access the base interface name.
IMPLEMENTATION_PACKAGE
          The key to access the implementation package.
INTERFACE_PACKAGE
          The key to access the interface package.
VIRTUAL_TYPE_IMPLEMENTATION
          The key to access the virtual implementation source code.
VIRTUAL_TYPE_IMPLEMENTATION_NAME
          The key to access the virtual implementation class name.
VIRTUAL_TYPE_INTERFACE
          The key to access the virtual interface source code.
VIRTUAL_TYPE_INTERFACE_NAME
          The key to access the virtual interface name.
 
Method Summary
static RegistryBeanGenerator.ResultType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RegistryBeanGenerator.ResultType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

BASE_TYPE_INTERFACE

public static final RegistryBeanGenerator.ResultType BASE_TYPE_INTERFACE
The key to access the base interface source code.


BASE_TYPE_IMPLEMENTATION

public static final RegistryBeanGenerator.ResultType BASE_TYPE_IMPLEMENTATION
The key to access the base implementation source code.


VIRTUAL_TYPE_INTERFACE

public static final RegistryBeanGenerator.ResultType VIRTUAL_TYPE_INTERFACE
The key to access the virtual interface source code.


VIRTUAL_TYPE_IMPLEMENTATION

public static final RegistryBeanGenerator.ResultType VIRTUAL_TYPE_IMPLEMENTATION
The key to access the virtual implementation source code.


BASE_TYPE_INTERFACE_NAME

public static final RegistryBeanGenerator.ResultType BASE_TYPE_INTERFACE_NAME
The key to access the base interface name.


BASE_TYPE_IMPLEMENTATION_NAME

public static final RegistryBeanGenerator.ResultType BASE_TYPE_IMPLEMENTATION_NAME
The key to access the base implementation class name.


VIRTUAL_TYPE_INTERFACE_NAME

public static final RegistryBeanGenerator.ResultType VIRTUAL_TYPE_INTERFACE_NAME
The key to access the virtual interface name.


VIRTUAL_TYPE_IMPLEMENTATION_NAME

public static final RegistryBeanGenerator.ResultType VIRTUAL_TYPE_IMPLEMENTATION_NAME
The key to access the virtual implementation class name.


INTERFACE_PACKAGE

public static final RegistryBeanGenerator.ResultType INTERFACE_PACKAGE
The key to access the interface package.


IMPLEMENTATION_PACKAGE

public static final RegistryBeanGenerator.ResultType IMPLEMENTATION_PACKAGE
The key to access the implementation package.

Method Detail

values

public static RegistryBeanGenerator.ResultType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (RegistryBeanGenerator.ResultType c : RegistryBeanGenerator.ResultType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static RegistryBeanGenerator.ResultType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null