Package org.eclipse.net4j.db.ddl
Enum IDBSchemaElement.SchemaElementType
- java.lang.Object
- 
- java.lang.Enum<IDBSchemaElement.SchemaElementType>
- 
- org.eclipse.net4j.db.ddl.IDBSchemaElement.SchemaElementType
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<IDBSchemaElement.SchemaElementType>
 - Enclosing interface:
- IDBSchemaElement
 
 public static enum IDBSchemaElement.SchemaElementType extends java.lang.Enum<IDBSchemaElement.SchemaElementType> - Since:
- 4.2
- Author:
- Eike Stepper
 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description FIELDINDEXINDEX_FIELDSCHEMATABLE
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetLevel()static IDBSchemaElement.SchemaElementTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static IDBSchemaElement.SchemaElementType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
SCHEMApublic static final IDBSchemaElement.SchemaElementType SCHEMA 
 - 
TABLEpublic static final IDBSchemaElement.SchemaElementType TABLE 
 - 
FIELDpublic static final IDBSchemaElement.SchemaElementType FIELD 
 - 
INDEXpublic static final IDBSchemaElement.SchemaElementType INDEX 
 - 
INDEX_FIELDpublic static final IDBSchemaElement.SchemaElementType INDEX_FIELD 
 
- 
 - 
Method Detail- 
valuespublic static IDBSchemaElement.SchemaElementType[] 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 (IDBSchemaElement.SchemaElementType c : IDBSchemaElement.SchemaElementType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static IDBSchemaElement.SchemaElementType 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
 
 - 
getLevelpublic int getLevel() 
 
- 
 
-