Enum TableDescriptions.ImageDataTableFields
- java.lang.Object
-
- java.lang.Enum<TableDescriptions.ImageDataTableFields>
-
- org.hortonmachine.gears.io.geopaparazzi.geopap4.TableDescriptions.ImageDataTableFields
-
- All Implemented Interfaces:
Serializable,Comparable<TableDescriptions.ImageDataTableFields>
- Enclosing class:
- TableDescriptions
public static enum TableDescriptions.ImageDataTableFields extends Enum<TableDescriptions.ImageDataTableFields>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COLUMN_IDid of the note, Generated by the db.COLUMN_IMAGEThe image data.COLUMN_THUMBNAILThe image thumbnail data.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ClassgetFieldClass()StringgetFieldName()static TableDescriptions.ImageDataTableFieldsvalueOf(String name)Returns the enum constant of this type with the specified name.static TableDescriptions.ImageDataTableFields[]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.ImageDataTableFields COLUMN_ID
id of the note, Generated by the db.
-
COLUMN_IMAGE
public static final TableDescriptions.ImageDataTableFields COLUMN_IMAGE
The image data.
-
COLUMN_THUMBNAIL
public static final TableDescriptions.ImageDataTableFields COLUMN_THUMBNAIL
The image thumbnail data.
-
-
Method Detail
-
values
public static TableDescriptions.ImageDataTableFields[] 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.ImageDataTableFields c : TableDescriptions.ImageDataTableFields.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.ImageDataTableFields 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()
-
-