Package com.wrapper.spotify.enums
Enum ReleaseDatePrecision
- java.lang.Object
-
- java.lang.Enum<ReleaseDatePrecision>
-
- com.wrapper.spotify.enums.ReleaseDatePrecision
-
- All Implemented Interfaces:
Serializable,Comparable<ReleaseDatePrecision>
public enum ReleaseDatePrecision extends Enum<ReleaseDatePrecision>
An enumeration of all possible release date precisions.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetPrecision()Get the release date precision as a string.static ReleaseDatePrecisionkeyOf(String precision)static ReleaseDatePrecisionvalueOf(String name)Returns the enum constant of this type with the specified name.static ReleaseDatePrecision[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DAY
public static final ReleaseDatePrecision DAY
-
MONTH
public static final ReleaseDatePrecision MONTH
-
YEAR
public static final ReleaseDatePrecision YEAR
-
-
Field Detail
-
precision
public final String precision
-
-
Method Detail
-
values
public static ReleaseDatePrecision[] 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 (ReleaseDatePrecision c : ReleaseDatePrecision.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReleaseDatePrecision 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
-
keyOf
public static ReleaseDatePrecision keyOf(String precision)
-
getPrecision
public String getPrecision()
Get the release date precision as a string.- Returns:
- The release date precision as a string.
-
-