Interface ExifValue
public interface ExifValue
Value holder for an exif data element.
- Since:
- 5.0.100
- See Also:
-
Method Summary
Modifier and TypeMethodDescription<T> T
format
(@Nullable ExifData exifData, @Nullable FormField<?> formField, @Nullable GomFormElement form) Format the givenExifData
.get()
The raw value of the extracted exif meta data.getTag()
Get the associated exif tag.toString()
Returns a string representation of the object.
-
Method Details
-
format
@Nullable <T> T format(@Nullable @Nullable ExifData exifData, @Nullable @Nullable FormField<?> formField, @Nullable @Nullable GomFormElement form) Format the givenExifData
.- Type Parameters:
T
- the formatted value- Parameters:
exifData
- the data to formatformField
- passed to anExifValueFormatter
which may map the formatted exif value to the form-fieldform
- passed to anExifValueFormatter
to obtain special gom definitions- Returns:
- the formatted value of type <T>
- Since:
- 5.0.100
- See Also:
-
get
Object get()The raw value of the extracted exif meta data.- Returns:
- the not formatted raw value of the extracted exif meta data.
- Since:
- 5.0.100
-
getTag
ExifTag getTag()Get the associated exif tag. -
toString
String toString()Returns a string representation of the object. In general, thetoString
method returns a string that "textually represents" this object. The result should be a concise but informative representation that is easy for a person to read. It is recommended that all subclasses override this method.
-