Module de.focus_shift.jollyday.core
Package de.focus_shift.jollyday.core.spi
Enum Movable.MovingCondition.With
- java.lang.Object
-
- java.lang.Enum<Movable.MovingCondition.With>
-
- de.focus_shift.jollyday.core.spi.Movable.MovingCondition.With
-
- All Implemented Interfaces:
Serializable,Comparable<Movable.MovingCondition.With>
- Enclosing interface:
- Movable.MovingCondition
public static enum Movable.MovingCondition.With extends Enum<Movable.MovingCondition.With>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Movable.MovingCondition.WithvalueOf(String name)Returns the enum constant of this type with the specified name.static Movable.MovingCondition.With[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NEXT
public static final Movable.MovingCondition.With NEXT
-
PREVIOUS
public static final Movable.MovingCondition.With PREVIOUS
-
-
Method Detail
-
values
public static Movable.MovingCondition.With[] 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 (Movable.MovingCondition.With c : Movable.MovingCondition.With.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Movable.MovingCondition.With 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
-
-