com.ibm.pdp.maf.rpp.pac.blockbase
Enum OrderOrActionTypeValues

java.lang.Object
  extended by java.lang.Enum<OrderOrActionTypeValues>
      extended by com.ibm.pdp.maf.rpp.pac.blockbase.OrderOrActionTypeValues
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<OrderOrActionTypeValues>

public enum OrderOrActionTypeValues
extends java.lang.Enum<OrderOrActionTypeValues>

List of order or action for key.


Enum Constant Summary
_A
          Ascending order or deletion of a column (DROP) The column is sorted in ascending order.
_D
          Descending order or deletion of a column (DROP) The column is sorted in descending order.
_M
          For an alter table, Modification of a column (MODIFY) The column is to be modified.
NONE
          No order or add a column (ADD).
 
Method Summary
static OrderOrActionTypeValues valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OrderOrActionTypeValues[] 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

_A

public static final OrderOrActionTypeValues _A

Ascending order or deletion of a column (DROP) The column is sorted in ascending order.


_D

public static final OrderOrActionTypeValues _D

Descending order or deletion of a column (DROP) The column is sorted in descending order.


_M

public static final OrderOrActionTypeValues _M

For an alter table, Modification of a column (MODIFY) The column is to be modified.


NONE

public static final OrderOrActionTypeValues NONE

No order or add a column (ADD).

No DDL sort command is generated (default value)

Method Detail

valueOf

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

values

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

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