Enum TableDescriptions.GpsLogsDataTableFields
- java.lang.Object
-
- java.lang.Enum<TableDescriptions.GpsLogsDataTableFields>
-
- org.hortonmachine.gears.io.geopaparazzi.geopap4.TableDescriptions.GpsLogsDataTableFields
-
- All Implemented Interfaces:
Serializable,Comparable<TableDescriptions.GpsLogsDataTableFields>
- Enclosing class:
- TableDescriptions
public static enum TableDescriptions.GpsLogsDataTableFields extends Enum<TableDescriptions.GpsLogsDataTableFields>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COLUMN_DATA_ALTIMthe elevation of the point.COLUMN_DATA_LATthe latitude of the point.COLUMN_DATA_LONthe longitude of the point.COLUMN_DATA_TSthe UTC timestampCOLUMN_IDid of the log, Generated by the db.COLUMN_LOGIDthe id of the parent gps log.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ClassgetFieldClass()StringgetFieldName()static TableDescriptions.GpsLogsDataTableFieldsvalueOf(String name)Returns the enum constant of this type with the specified name.static TableDescriptions.GpsLogsDataTableFields[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COLUMN_ID
public static final TableDescriptions.GpsLogsDataTableFields COLUMN_ID
id of the log, Generated by the db.
-
COLUMN_DATA_LON
public static final TableDescriptions.GpsLogsDataTableFields COLUMN_DATA_LON
the longitude of the point.
-
COLUMN_DATA_LAT
public static final TableDescriptions.GpsLogsDataTableFields COLUMN_DATA_LAT
the latitude of the point.
-
COLUMN_DATA_ALTIM
public static final TableDescriptions.GpsLogsDataTableFields COLUMN_DATA_ALTIM
the elevation of the point.
-
COLUMN_DATA_TS
public static final TableDescriptions.GpsLogsDataTableFields COLUMN_DATA_TS
the UTC timestamp
-
COLUMN_LOGID
public static final TableDescriptions.GpsLogsDataTableFields COLUMN_LOGID
the id of the parent gps log.
-
-
Method Detail
-
values
public static TableDescriptions.GpsLogsDataTableFields[] 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.GpsLogsDataTableFields c : TableDescriptions.GpsLogsDataTableFields.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.GpsLogsDataTableFields 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()
-
-