Package org.ical4j.template.property
Enum Notify.Relative
- java.lang.Object
-
- java.lang.Enum<Notify.Relative>
-
- org.ical4j.template.property.Notify.Relative
-
- All Implemented Interfaces:
Serializable
,Comparable<Notify.Relative>
- Enclosing class:
- Notify
public static enum Notify.Relative extends Enum<Notify.Relative>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AfterEnd
AfterStart
BeforeEnd
BeforeStart
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Notify.Relative
valueOf(String name)
Returns the enum constant of this type with the specified name.static Notify.Relative[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BeforeStart
public static final Notify.Relative BeforeStart
-
AfterStart
public static final Notify.Relative AfterStart
-
BeforeEnd
public static final Notify.Relative BeforeEnd
-
AfterEnd
public static final Notify.Relative AfterEnd
-
-
Method Detail
-
values
public static Notify.Relative[] 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 (Notify.Relative c : Notify.Relative.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Notify.Relative 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
-
-