org.plasma.provisioning.rdb.mysql.v5_5
Enum TableType

java.lang.Object
  extended by java.lang.Enum<TableType>
      extended by org.plasma.provisioning.rdb.mysql.v5_5.TableType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TableType>, PlasmaEnum

public enum TableType
extends java.lang.Enum<TableType>
implements PlasmaEnum

This generated Enumeration represents the domain model enumeration TableType which is part of namespace http://org.plasma/sdo/mysql/5_5 as defined within the Configuration.

* Generated SDO enumerations embody not only logical-name literals but also physical or instance names, which are often shorter (possibly abbreviated) and applicable as a data-store space-saving device. Application programs should typically use the physical or instance name for an enumeration literal when setting a data object property which is constrained by an enumeration.


Enum Constant Summary
BASE_TABLE
          Holds the logical and physical names for literal BASE_TABLE.
SYSTEM_VIEW
          Holds the logical and physical names for literal SYSTEM_VIEW.
VIEW
          Holds the logical and physical names for literal VIEW.
 
Method Summary
static PlasmaEnum[] enumValues()
          Returns the enum values for this class as an array of implemented interfaces
static TableType fromInstanceName(java.lang.String instanceName)
          Returns the enumeration value matching the given physical or instance name.
static TableType fromName(java.lang.String name)
          Returns the enumeration value matching the given name.
 java.lang.String getDescription()
          Returns the descriptive text associated with this enumeration literal.
 java.lang.String getInstanceName()
          Returns the physical or instance name associated with this enumeration literal.
 java.lang.String getName()
          Returns the logical name associated with this enumeration literal.
static TableType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TableType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SYSTEM_VIEW

public static final TableType SYSTEM_VIEW
Holds the logical and physical names for literal SYSTEM_VIEW.


BASE_TABLE

public static final TableType BASE_TABLE
Holds the logical and physical names for literal BASE_TABLE.


VIEW

public static final TableType VIEW
Holds the logical and physical names for literal VIEW.

Method Detail

values

public static TableType[] 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 (TableType c : TableType.values())
    System.out.println(c);

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

valueOf

public static TableType 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

getName

public java.lang.String getName()
Returns the logical name associated with this enumeration literal.

Specified by:
getName in interface PlasmaEnum

getInstanceName

public java.lang.String getInstanceName()
Returns the physical or instance name associated with this enumeration literal.

Specified by:
getInstanceName in interface PlasmaEnum

getDescription

public java.lang.String getDescription()
Returns the descriptive text associated with this enumeration literal.

Specified by:
getDescription in interface PlasmaEnum

enumValues

public static PlasmaEnum[] enumValues()
Returns the enum values for this class as an array of implemented interfaces

See Also:
PlasmaEnum

fromName

public static TableType fromName(java.lang.String name)
Returns the enumeration value matching the given name.


fromInstanceName

public static TableType fromInstanceName(java.lang.String instanceName)
Returns the enumeration value matching the given physical or instance name.



Copyright © 2013. All Rights Reserved.