Enum Aufbau.DraggingStatus
- java.lang.Object
-
- java.lang.Enum<Aufbau.DraggingStatus>
-
- Aufbau.DraggingStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<Aufbau.DraggingStatus>
- Enclosing class:
- Aufbau
private static enum Aufbau.DraggingStatus extends Enum<Aufbau.DraggingStatus>
Der Status für Dragging
-
-
Enum Constant Summary
Enum Constants Enum Constant Description draggingAktiv
draggingMöglich
keinDragging
-
Constructor Summary
Constructors Modifier Constructor Description private
DraggingStatus()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Aufbau.DraggingStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static Aufbau.DraggingStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
keinDragging
public static final Aufbau.DraggingStatus keinDragging
-
draggingMöglich
public static final Aufbau.DraggingStatus draggingMöglich
-
draggingAktiv
public static final Aufbau.DraggingStatus draggingAktiv
-
-
Method Detail
-
values
public static Aufbau.DraggingStatus[] 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 (Aufbau.DraggingStatus c : Aufbau.DraggingStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Aufbau.DraggingStatus 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
-
-