Enum TableDescriptions.NotesTableFields
- java.lang.Object
-
- java.lang.Enum<TableDescriptions.NotesTableFields>
-
- org.hortonmachine.gears.io.geopaparazzi.geopap4.TableDescriptions.NotesTableFields
-
- All Implemented Interfaces:
Serializable,Comparable<TableDescriptions.NotesTableFields>
- Enclosing class:
- TableDescriptions
public static enum TableDescriptions.NotesTableFields extends Enum<TableDescriptions.NotesTableFields>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COLUMN_ALTIMElevation of the note.COLUMN_DESCRIPTIONDescription of the note.COLUMN_FORMForm data of the note.COLUMN_IDid of the note, Generated by the db.COLUMN_ISDIRTYIs dirty field (0 = false, 1 = true)COLUMN_LATLatitude of the note in WGS84.COLUMN_LONLongitude of the note in WGS84.COLUMN_STYLEStyle of the note.COLUMN_TEXTSimple text of the note.COLUMN_TSTimestamp of the note.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ClassgetFieldClass()StringgetFieldName()static TableDescriptions.NotesTableFieldsvalueOf(String name)Returns the enum constant of this type with the specified name.static TableDescriptions.NotesTableFields[]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.NotesTableFields COLUMN_ID
id of the note, Generated by the db.
-
COLUMN_LON
public static final TableDescriptions.NotesTableFields COLUMN_LON
Longitude of the note in WGS84.
-
COLUMN_LAT
public static final TableDescriptions.NotesTableFields COLUMN_LAT
Latitude of the note in WGS84.
-
COLUMN_ALTIM
public static final TableDescriptions.NotesTableFields COLUMN_ALTIM
Elevation of the note.
-
COLUMN_TS
public static final TableDescriptions.NotesTableFields COLUMN_TS
Timestamp of the note.
-
COLUMN_DESCRIPTION
public static final TableDescriptions.NotesTableFields COLUMN_DESCRIPTION
Description of the note.
-
COLUMN_TEXT
public static final TableDescriptions.NotesTableFields COLUMN_TEXT
Simple text of the note.
-
COLUMN_FORM
public static final TableDescriptions.NotesTableFields COLUMN_FORM
Form data of the note.
-
COLUMN_ISDIRTY
public static final TableDescriptions.NotesTableFields COLUMN_ISDIRTY
Is dirty field (0 = false, 1 = true)
-
COLUMN_STYLE
public static final TableDescriptions.NotesTableFields COLUMN_STYLE
Style of the note.
-
-
Method Detail
-
values
public static TableDescriptions.NotesTableFields[] 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.NotesTableFields c : TableDescriptions.NotesTableFields.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.NotesTableFields 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()
-
-