org.plasma.provisioning.rdb.mysql.v5_5
Enum Table.PROPERTY

java.lang.Object
  extended by java.lang.Enum<Table.PROPERTY>
      extended by org.plasma.provisioning.rdb.mysql.v5_5.Table.PROPERTY
All Implemented Interfaces:
Serializable, Comparable<Table.PROPERTY>
Enclosing interface:
Table

public static enum Table.PROPERTY
extends Enum<Table.PROPERTY>

The declared logical property names for this Type.


Enum Constant Summary
autoIncrement
          Represents the logical Property autoIncrement which is part of the Type Table.
owner
          Represents the logical Property owner which is part of the Type Table.
tableColumn
          Represents the logical Property tableColumn which is part of the Type Table.
tableColumnConstraint
          Represents the logical Property tableColumnConstraint which is part of the Type Table.
tableColumnKeyUsage
          Represents the logical Property tableColumnKeyUsage which is part of the Type Table.
tableComment
          Represents the logical Property tableComment which is part of the Type Table.
tableConstraint
          Represents the logical Property tableConstraint which is part of the Type Table.
tableName
          Represents the logical Property tableName which is part of the Type Table.
tableType
          Represents the logical Property tableType which is part of the Type Table.
view
          Represents the logical Property view which is part of the Type Table.
 
Method Summary
static Table.PROPERTY valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Table.PROPERTY[] 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

owner

public static final Table.PROPERTY owner
Represents the logical Property owner which is part of the Type Table.

Data Store Mapping: Corresponds to the physical data store element TABLES.TABLE_SCHEMA.


tableName

public static final Table.PROPERTY tableName
Represents the logical Property tableName which is part of the Type Table.

Data Store Mapping: Corresponds to the physical data store element TABLES.TABLE_NAME.


autoIncrement

public static final Table.PROPERTY autoIncrement
Represents the logical Property autoIncrement which is part of the Type Table.

Data Store Mapping: Corresponds to the physical data store element TABLES.AUTO_INCREMENT.


tableColumnConstraint

public static final Table.PROPERTY tableColumnConstraint
Represents the logical Property tableColumnConstraint which is part of the Type Table.


tableConstraint

public static final Table.PROPERTY tableConstraint
Represents the logical Property tableConstraint which is part of the Type Table.


tableColumnKeyUsage

public static final Table.PROPERTY tableColumnKeyUsage
Represents the logical Property tableColumnKeyUsage which is part of the Type Table.


tableColumn

public static final Table.PROPERTY tableColumn
Represents the logical Property tableColumn which is part of the Type Table.


tableComment

public static final Table.PROPERTY tableComment
Represents the logical Property tableComment which is part of the Type Table.

Data Store Mapping: Corresponds to the physical data store element TABLES.TABLE_COMMENT.


tableType

public static final Table.PROPERTY tableType
Represents the logical Property tableType which is part of the Type Table.

Data Store Mapping: Corresponds to the physical data store element TABLES.TABLE_TYPE.


view

public static final Table.PROPERTY view
Represents the logical Property view which is part of the Type Table.

Method Detail

values

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

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

valueOf

public static Table.PROPERTY valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2014. All rights reserved.