Package org.n52.shetland.rdf.dct
Enum CLDFrequency
- java.lang.Object
-
- java.lang.Enum<CLDFrequency>
-
- org.n52.shetland.rdf.dct.CLDFrequency
-
- All Implemented Interfaces:
Serializable,Comparable<CLDFrequency>
public enum CLDFrequency extends Enum<CLDFrequency>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANNUALBIENNIALBIMONTHLYBIWEEKLYCONTINUOUSDAILYIRREGULARMONTHLYQUARTERLYSEMIANNUALSEMIMONTHLYSEMIWEEKLYTHREE_TIMES_A_MONTHTHREE_TIMES_A_WEEKTHREE_TIMES_A_YEARTRIENNIALWEEKLY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetURI()static CLDFrequencyvalueOf(String name)Returns the enum constant of this type with the specified name.static CLDFrequency[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TRIENNIAL
public static final CLDFrequency TRIENNIAL
-
BIENNIAL
public static final CLDFrequency BIENNIAL
-
ANNUAL
public static final CLDFrequency ANNUAL
-
SEMIANNUAL
public static final CLDFrequency SEMIANNUAL
-
THREE_TIMES_A_YEAR
public static final CLDFrequency THREE_TIMES_A_YEAR
-
QUARTERLY
public static final CLDFrequency QUARTERLY
-
BIMONTHLY
public static final CLDFrequency BIMONTHLY
-
MONTHLY
public static final CLDFrequency MONTHLY
-
SEMIMONTHLY
public static final CLDFrequency SEMIMONTHLY
-
BIWEEKLY
public static final CLDFrequency BIWEEKLY
-
THREE_TIMES_A_MONTH
public static final CLDFrequency THREE_TIMES_A_MONTH
-
WEEKLY
public static final CLDFrequency WEEKLY
-
SEMIWEEKLY
public static final CLDFrequency SEMIWEEKLY
-
THREE_TIMES_A_WEEK
public static final CLDFrequency THREE_TIMES_A_WEEK
-
DAILY
public static final CLDFrequency DAILY
-
CONTINUOUS
public static final CLDFrequency CONTINUOUS
-
IRREGULAR
public static final CLDFrequency IRREGULAR
-
-
Method Detail
-
values
public static CLDFrequency[] 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 (CLDFrequency c : CLDFrequency.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CLDFrequency 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
-
getURI
public String getURI()
-
-