Package net.fortuna.ical4j.model
Enum Recur.RScale
- java.lang.Object
-
- java.lang.Enum<Recur.RScale>
-
- net.fortuna.ical4j.model.Recur.RScale
-
- All Implemented Interfaces:
Serializable
,Comparable<Recur.RScale>
public static enum Recur.RScale extends Enum<Recur.RScale>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getChronology()
static Recur.RScale
valueOf(String name)
Returns the enum constant of this type with the specified name.static Recur.RScale[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JAPANESE
public static final Recur.RScale JAPANESE
-
BUDDHIST
public static final Recur.RScale BUDDHIST
-
ROC
public static final Recur.RScale ROC
-
ISLAMIC
public static final Recur.RScale ISLAMIC
-
ISO8601
public static final Recur.RScale ISO8601
-
CHINESE
public static final Recur.RScale CHINESE
-
ETHIOPIC
public static final Recur.RScale ETHIOPIC
-
HEBREW
public static final Recur.RScale HEBREW
-
GREGORIAN
public static final Recur.RScale GREGORIAN
-
-
Method Detail
-
values
public static Recur.RScale[] 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 (Recur.RScale c : Recur.RScale.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Recur.RScale 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
-
getChronology
public String getChronology()
-
-