Enum TableDescriptions.ImageTableFields
- java.lang.Object
-
- java.lang.Enum<TableDescriptions.ImageTableFields>
-
- org.hortonmachine.gears.io.geopaparazzi.geopap4.TableDescriptions.ImageTableFields
-
- All Implemented Interfaces:
Serializable,Comparable<TableDescriptions.ImageTableFields>
- Enclosing class:
- TableDescriptions
public static enum TableDescriptions.ImageTableFields extends Enum<TableDescriptions.ImageTableFields>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COLUMN_ALTIMElevation of the note.COLUMN_AZIMThe azimuth of the picture.COLUMN_IDid of the note, Generated by the db.COLUMN_IMAGEDATA_IDThe id of the connected image data.COLUMN_ISDIRTYIs dirty field (0=false, 1=true)COLUMN_LATLatitude of the note in WGS84.COLUMN_LONLongitude of the note in WGS84.COLUMN_NOTE_IDAn optional note id, to which it is bound to.COLUMN_TEXTA name or text for the image.COLUMN_TSTimestamp of the note.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ClassgetFieldClass()StringgetFieldName()static TableDescriptions.ImageTableFieldsvalueOf(String name)Returns the enum constant of this type with the specified name.static TableDescriptions.ImageTableFields[]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.ImageTableFields COLUMN_ID
id of the note, Generated by the db.
-
COLUMN_LON
public static final TableDescriptions.ImageTableFields COLUMN_LON
Longitude of the note in WGS84.
-
COLUMN_LAT
public static final TableDescriptions.ImageTableFields COLUMN_LAT
Latitude of the note in WGS84.
-
COLUMN_ALTIM
public static final TableDescriptions.ImageTableFields COLUMN_ALTIM
Elevation of the note.
-
COLUMN_TS
public static final TableDescriptions.ImageTableFields COLUMN_TS
Timestamp of the note.
-
COLUMN_AZIM
public static final TableDescriptions.ImageTableFields COLUMN_AZIM
The azimuth of the picture.
-
COLUMN_TEXT
public static final TableDescriptions.ImageTableFields COLUMN_TEXT
A name or text for the image.
-
COLUMN_ISDIRTY
public static final TableDescriptions.ImageTableFields COLUMN_ISDIRTY
Is dirty field (0=false, 1=true)
-
COLUMN_NOTE_ID
public static final TableDescriptions.ImageTableFields COLUMN_NOTE_ID
An optional note id, to which it is bound to.
-
COLUMN_IMAGEDATA_ID
public static final TableDescriptions.ImageTableFields COLUMN_IMAGEDATA_ID
The id of the connected image data.
-
-
Method Detail
-
values
public static TableDescriptions.ImageTableFields[] 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.ImageTableFields c : TableDescriptions.ImageTableFields.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.ImageTableFields 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()
-
-