Enum TableDescriptions.GpsLogsPropertiesTableFields
- java.lang.Object
-
- java.lang.Enum<TableDescriptions.GpsLogsPropertiesTableFields>
-
- org.hortonmachine.gears.io.geopaparazzi.geopap4.TableDescriptions.GpsLogsPropertiesTableFields
-
- All Implemented Interfaces:
Serializable,Comparable<TableDescriptions.GpsLogsPropertiesTableFields>
- Enclosing class:
- TableDescriptions
public static enum TableDescriptions.GpsLogsPropertiesTableFields extends Enum<TableDescriptions.GpsLogsPropertiesTableFields>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COLUMN_IDid of the log, Generated by the db.COLUMN_LOGIDthe id of the parent gps log.COLUMN_PROPERTIES_COLORthe log stroke color.COLUMN_PROPERTIES_VISIBLEfield for log visibility.COLUMN_PROPERTIES_WIDTHthe lgo stroke width.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ClassgetFieldClass()StringgetFieldName()static TableDescriptions.GpsLogsPropertiesTableFieldsvalueOf(String name)Returns the enum constant of this type with the specified name.static TableDescriptions.GpsLogsPropertiesTableFields[]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.GpsLogsPropertiesTableFields COLUMN_ID
id of the log, Generated by the db.
-
COLUMN_PROPERTIES_VISIBLE
public static final TableDescriptions.GpsLogsPropertiesTableFields COLUMN_PROPERTIES_VISIBLE
field for log visibility.
-
COLUMN_PROPERTIES_WIDTH
public static final TableDescriptions.GpsLogsPropertiesTableFields COLUMN_PROPERTIES_WIDTH
the lgo stroke width.
-
COLUMN_PROPERTIES_COLOR
public static final TableDescriptions.GpsLogsPropertiesTableFields COLUMN_PROPERTIES_COLOR
the log stroke color.
-
COLUMN_LOGID
public static final TableDescriptions.GpsLogsPropertiesTableFields COLUMN_LOGID
the id of the parent gps log.
-
-
Method Detail
-
values
public static TableDescriptions.GpsLogsPropertiesTableFields[] 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.GpsLogsPropertiesTableFields c : TableDescriptions.GpsLogsPropertiesTableFields.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.GpsLogsPropertiesTableFields 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()
-
-