Enum DateTimeFormat
- java.lang.Object
-
- java.lang.Enum<DateTimeFormat>
-
- org.aksw.limes.core.util.datetime.DateTimeFormat
-
- All Implemented Interfaces:
Serializable,Comparable<DateTimeFormat>
public enum DateTimeFormat extends Enum<DateTimeFormat>
Enum class of the allowed date and time formats. Allowed formats are devised from https://www.w3.org/TR/NOTE-datetime- Version:
- 1.0
- Author:
- Kleanthi Georgala (georgala@informatik.uni-leipzig.de)
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DategetDate(String timeStamp)Returns the Date value of a time stampStringgetPattern()static DateTimeFormatvalueOf(String name)Returns the enum constant of this type with the specified name.static DateTimeFormat[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FORMAT1
public static final DateTimeFormat FORMAT1
-
FORMAT2
public static final DateTimeFormat FORMAT2
-
FORMAT3
public static final DateTimeFormat FORMAT3
-
FORMAT4
public static final DateTimeFormat FORMAT4
-
FORMAT5
public static final DateTimeFormat FORMAT5
-
FORMAT6
public static final DateTimeFormat FORMAT6
-
FORMAT7
public static final DateTimeFormat FORMAT7
-
FORMAT8
public static final DateTimeFormat FORMAT8
-
FORMAT9
public static final DateTimeFormat FORMAT9
-
-
Method Detail
-
values
public static DateTimeFormat[] 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 (DateTimeFormat c : DateTimeFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DateTimeFormat 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
-
getPattern
public String getPattern()
-
-