Enum TableDescriptions.MetadataTableFields
- java.lang.Object
-
- java.lang.Enum<TableDescriptions.MetadataTableFields>
-
- org.hortonmachine.gears.io.geopaparazzi.geopap4.TableDescriptions.MetadataTableFields
-
- All Implemented Interfaces:
Serializable,Comparable<TableDescriptions.MetadataTableFields>
- Enclosing class:
- TableDescriptions
public static enum TableDescriptions.MetadataTableFields extends Enum<TableDescriptions.MetadataTableFields>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COLUMN_KEYThe field name for the keys.COLUMN_VALUEThe field name for the values.KEY_CREATIONTSCreation timestamp key to use.KEY_CREATIONUSERThe user that created the project key to use.KEY_DESCRIPTIONDescription key to use.KEY_LASTTSLast available timestamp key to use.KEY_LASTUSERThe last user working on the project key to use.KEY_NAMEProject name/title key to use.KEY_NOTESNotes key to use.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ClassgetFieldClass()StringgetFieldName()static TableDescriptions.MetadataTableFieldsvalueOf(String name)Returns the enum constant of this type with the specified name.static TableDescriptions.MetadataTableFields[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COLUMN_KEY
public static final TableDescriptions.MetadataTableFields COLUMN_KEY
The field name for the keys.
-
COLUMN_VALUE
public static final TableDescriptions.MetadataTableFields COLUMN_VALUE
The field name for the values.
-
KEY_NAME
public static final TableDescriptions.MetadataTableFields KEY_NAME
Project name/title key to use.
-
KEY_DESCRIPTION
public static final TableDescriptions.MetadataTableFields KEY_DESCRIPTION
Description key to use.
-
KEY_NOTES
public static final TableDescriptions.MetadataTableFields KEY_NOTES
Notes key to use.
-
KEY_CREATIONTS
public static final TableDescriptions.MetadataTableFields KEY_CREATIONTS
Creation timestamp key to use.
-
KEY_LASTTS
public static final TableDescriptions.MetadataTableFields KEY_LASTTS
Last available timestamp key to use.
-
KEY_CREATIONUSER
public static final TableDescriptions.MetadataTableFields KEY_CREATIONUSER
The user that created the project key to use.
-
KEY_LASTUSER
public static final TableDescriptions.MetadataTableFields KEY_LASTUSER
The last user working on the project key to use.
-
-
Method Detail
-
values
public static TableDescriptions.MetadataTableFields[] 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 (TableDescriptions.MetadataTableFields c : TableDescriptions.MetadataTableFields.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TableDescriptions.MetadataTableFields 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
-
getFieldName
public String getFieldName()
-
getFieldClass
public Class getFieldClass()
-
-