Package org.openstreetmap.josm.data.gpx
Enum TimeSource
- java.lang.Object
-
- java.lang.Enum<TimeSource>
-
- org.openstreetmap.josm.data.gpx.TimeSource
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TimeSource>
public enum TimeSource extends java.lang.Enum<TimeSource>
Time sources available in the image Exif metadata.- Since:
- 19426
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXIFCAMTIME
Time from the camera internal clock (RTC)EXIFGPSTIME
Time from the camera GPS clock
-
Constructor Summary
Constructors Modifier Constructor Description private
TimeSource()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TimeSource
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TimeSource[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXIFCAMTIME
public static final TimeSource EXIFCAMTIME
Time from the camera internal clock (RTC)
-
EXIFGPSTIME
public static final TimeSource EXIFGPSTIME
Time from the camera GPS clock
-
-
Constructor Detail
-
TimeSource
private TimeSource()
-
-
Method Detail
-
values
public static TimeSource[] 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 (TimeSource c : TimeSource.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TimeSource valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-