Enum TableDescriptions.GpsLogsTableFields
- java.lang.Object
-
- java.lang.Enum<TableDescriptions.GpsLogsTableFields>
-
- org.hortonmachine.gears.io.geopaparazzi.geopap4.TableDescriptions.GpsLogsTableFields
-
- All Implemented Interfaces:
Serializable,Comparable<TableDescriptions.GpsLogsTableFields>
- Enclosing class:
- TableDescriptions
public static enum TableDescriptions.GpsLogsTableFields extends Enum<TableDescriptions.GpsLogsTableFields>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COLUMN_IDid of the log, Generated by the db.COLUMN_LOG_ENDTSthe end UTC timestamp.COLUMN_LOG_ISDIRTYIs dirty field (0=false, 1=true)COLUMN_LOG_LENGTHMThe length of the track in meters, as last updated.COLUMN_LOG_STARTTSthe start UTC timestamp.COLUMN_LOG_TEXTthe name of the log.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ClassgetFieldClass()StringgetFieldName()static TableDescriptions.GpsLogsTableFieldsvalueOf(String name)Returns the enum constant of this type with the specified name.static TableDescriptions.GpsLogsTableFields[]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.GpsLogsTableFields COLUMN_ID
id of the log, Generated by the db.
-
COLUMN_LOG_STARTTS
public static final TableDescriptions.GpsLogsTableFields COLUMN_LOG_STARTTS
the start UTC timestamp.
-
COLUMN_LOG_ENDTS
public static final TableDescriptions.GpsLogsTableFields COLUMN_LOG_ENDTS
the end UTC timestamp.
-
COLUMN_LOG_LENGTHM
public static final TableDescriptions.GpsLogsTableFields COLUMN_LOG_LENGTHM
The length of the track in meters, as last updated.
-
COLUMN_LOG_ISDIRTY
public static final TableDescriptions.GpsLogsTableFields COLUMN_LOG_ISDIRTY
Is dirty field (0=false, 1=true)
-
COLUMN_LOG_TEXT
public static final TableDescriptions.GpsLogsTableFields COLUMN_LOG_TEXT
the name of the log.
-
-
Method Detail
-
values
public static TableDescriptions.GpsLogsTableFields[] 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.GpsLogsTableFields c : TableDescriptions.GpsLogsTableFields.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.GpsLogsTableFields 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()
-
-