ucot.model
Enum Updation.UpdationDataType

java.lang.Object
  extended by java.lang.Enum<Updation.UpdationDataType>
      extended by ucot.model.Updation.UpdationDataType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Updation.UpdationDataType>
Enclosing class:
Updation

public static enum Updation.UpdationDataType
extends java.lang.Enum<Updation.UpdationDataType>

Contains information about the type beign changed.

Author:
pajumasu

Enum Constant Summary
ATTRIBUTE
          Attribute is beign altered.
ATTRIBUTE_FROM_CARDINALITY
          Attribute to cardinality is beign altered.
ATTRIBUTE_TO_CARDINALITY
          Attribute to cardinality is beign altered.
EMPTY
          No data caried.
ENTITY
          Entity is beign altered.
ENTITY_TYPE
          The type is beign altered Reference contains the name of the entity which type is changed and the type.
METHOD
          Method is beign altered.
METHOD_INFLUENCE
          Method influence is beign altered.
PARENT
          Parent relation is beign altered.
 
Method Summary
static Updation.UpdationDataType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Updation.UpdationDataType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ENTITY

public static final Updation.UpdationDataType ENTITY
Entity is beign altered. Reference contains the name of the entity.


METHOD

public static final Updation.UpdationDataType METHOD
Method is beign altered. Reference contains the name of the entity and the name of the method.


ATTRIBUTE

public static final Updation.UpdationDataType ATTRIBUTE
Attribute is beign altered. Reference contains the name of the entity and the name of the attribute.


ATTRIBUTE_TO_CARDINALITY

public static final Updation.UpdationDataType ATTRIBUTE_TO_CARDINALITY
Attribute to cardinality is beign altered. Reference contains the name of the entity and the name of the attribute and the to cardinality.


ATTRIBUTE_FROM_CARDINALITY

public static final Updation.UpdationDataType ATTRIBUTE_FROM_CARDINALITY
Attribute to cardinality is beign altered. Reference contains the name of the entity and the name of the attribute and the from cardinality.


METHOD_INFLUENCE

public static final Updation.UpdationDataType METHOD_INFLUENCE
Method influence is beign altered. Reference contains the name of the entity and the name of the methdod and the name of the entity that is influenced.


PARENT

public static final Updation.UpdationDataType PARENT
Parent relation is beign altered. Reference contains the name of the entity which parent is changed and the entity that is set to the first ones parent.


ENTITY_TYPE

public static final Updation.UpdationDataType ENTITY_TYPE
The type is beign altered Reference contains the name of the entity which type is changed and the type.


EMPTY

public static final Updation.UpdationDataType EMPTY
No data caried.

Method Detail

values

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

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

valueOf

public static Updation.UpdationDataType 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