Package adams.flow.transformer
Enum AccessDatabaseInfo.InfoType
- java.lang.Object
-
- java.lang.Enum<AccessDatabaseInfo.InfoType>
-
- adams.flow.transformer.AccessDatabaseInfo.InfoType
-
- All Implemented Interfaces:
Serializable
,Comparable<AccessDatabaseInfo.InfoType>
- Enclosing class:
- AccessDatabaseInfo
public static enum AccessDatabaseInfo.InfoType extends Enum<AccessDatabaseInfo.InfoType>
The type of information to generate.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COLUMN_NAMES
the column names.COLUMN_ORDER
the column order.FILE
the file.FILE_FORMAT
the file format.TABLES
the tables.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AccessDatabaseInfo.InfoType
valueOf(String name)
Returns the enum constant of this type with the specified name.static AccessDatabaseInfo.InfoType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FILE
public static final AccessDatabaseInfo.InfoType FILE
the file.
-
FILE_FORMAT
public static final AccessDatabaseInfo.InfoType FILE_FORMAT
the file format.
-
TABLES
public static final AccessDatabaseInfo.InfoType TABLES
the tables.
-
COLUMN_ORDER
public static final AccessDatabaseInfo.InfoType COLUMN_ORDER
the column order.
-
COLUMN_NAMES
public static final AccessDatabaseInfo.InfoType COLUMN_NAMES
the column names.
-
-
Method Detail
-
values
public static AccessDatabaseInfo.InfoType[] 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 (AccessDatabaseInfo.InfoType c : AccessDatabaseInfo.InfoType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AccessDatabaseInfo.InfoType 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 nameNullPointerException
- if the argument is null
-
-