org.deegree.metadata.iso.persistence
Enum ISOPropertyNameMapper.CommonColumnNames

java.lang.Object
  extended by java.lang.Enum<ISOPropertyNameMapper.CommonColumnNames>
      extended by org.deegree.metadata.iso.persistence.ISOPropertyNameMapper.CommonColumnNames
All Implemented Interfaces:
Serializable, Comparable<ISOPropertyNameMapper.CommonColumnNames>
Enclosing class:
ISOPropertyNameMapper

public static enum ISOPropertyNameMapper.CommonColumnNames
extends Enum<ISOPropertyNameMapper.CommonColumnNames>

The common column names that are used in the backend for each databasetable.

Version:
$Revision: 31272 $, $Date: 2011-07-13 23:10:35 +0200 (Mi, 13. Jul 2011) $
Author:
Steffen Thomas, last edited by: $Author: mschneider $

Enum Constant Summary
fileidentifier
          the identifier of the record
fk_main
          the foreign key from sub idx to idx_main
id
          the primarykey of a databasetable
recordfull
          the BLOB data for the reecord
resourceid
          the resourceIdentifier of the record
 
Method Summary
static ISOPropertyNameMapper.CommonColumnNames valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ISOPropertyNameMapper.CommonColumnNames[] 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

id

public static final ISOPropertyNameMapper.CommonColumnNames id
the primarykey of a databasetable


fileidentifier

public static final ISOPropertyNameMapper.CommonColumnNames fileidentifier
the identifier of the record


resourceid

public static final ISOPropertyNameMapper.CommonColumnNames resourceid
the resourceIdentifier of the record


recordfull

public static final ISOPropertyNameMapper.CommonColumnNames recordfull
the BLOB data for the reecord


fk_main

public static final ISOPropertyNameMapper.CommonColumnNames fk_main
the foreign key from sub idx to idx_main

Method Detail

values

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

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

valueOf

public static ISOPropertyNameMapper.CommonColumnNames 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 © 2011. All Rights Reserved.